up vote -2 down vote favorite
share [g+] share [fb]

For something like a personal recommendation system, machine learning type of stuff on a website, what language would be best?

link|improve this question

0% accept rate
2  
There are just to many variables to be able to reccomend a language for you, please update your question with more info. – Ólafur Waage Jan 4 '09 at 0:57
feedback

5 Answers

The language you know best would be best.

I mean that half-seriously. Given the brief description of your project, there's no reason to believe any of the languages you list would be any better or worse than the others. Those three languages are adequate for approximately similar tasks, so you should pick the one you are most comfortable with and proceed.

Any other recommendations would be advocacy for one language or the other, with no real basis on which to evaluate them. Your description is just too vague.

link|improve this answer
feedback

All of the points that Bill Karwin have brought up are entirely valid: You should really operate in what you are most comfortable with.

If that isn't a factor, I would personally suggest Ruby. It's an incredibly powerful language that draws a lot of commonalities with Lisp and is probably just as good, if not better, for AI programming for all the same reasons Lisp was: it's an extremely dynamic, self-modifiable language. As an added benefit Ruby has a really nice standard library including some great libs like the distributed computed library "dRuby".

link|improve this answer
feedback
  1. Programming Collective Intelligence - Building Smart Web 2.0 Applications

  2. Collective Intelligence in Action

link|improve this answer
feedback

I happen to know a world-class expert in machine learning. He likes Prolog, especially for the higher level logic of the system. Hadn't even heard anyone mention that in a long time. Personally, I like Java. But if you're going to do intensive machine learning, you should be concerned about the speed of math processing. C++ for the math, in my view.

link|improve this answer
feedback

I recently did some research into this for a project at my day job. It was for a recommendation system and the options were php,perl or python.

PHP was out almost immediately, there were no good 3rd party open source libraries and the language itself is not as well suited to any kind of complex real programming.

Python had a few libraries that i wanted to try out and Perl didn't, so I went with Python. In the end, none of those libraries were useful to me but besides library support I prefer python personally anyway so that was the right decision.

Because your question is very vague I can only suggest that you don't use PHP and select the language based on library support for your specific problem area and your comfort in that language. I would say that library support is the biggest factor in your decision and language familiarity/preference is a close second.

link|improve this answer
3  
There are libraries for virtually anything in PHP. And it's absolutely suitable to write complex applications with it. I suggest some more research before posting such nonsense. – Techpriester May 22 '10 at 22:38
Developing a large app in PHP ended up frustrating me (though PHP5 makes some huge improvements). However, to say that it has no good 3rd-party libraries is just plain wrong. It doesn't implement library management very well, but everything you need is likely there. – Matchu May 23 '10 at 3:15
Matchu, could you tell me a reason of why you were using PHP4 when PHP5 was almost everywhere? Or was it 7 or more years ago? – Armen Markossyan Apr 5 '11 at 15:20
For posterities sake here's my response to the two morons who are unaware that there is programming happening outside of programming web pages. It's taken from my response to the same idiocy on reddit: PHP is still primarily focused on web stuff. Outside of that realm it's pretty sparse. Here's some examples off the top of my head: a webserver, threading, gui programming, bindings to low level os stuff, parsing libraries in general, serious numerical computation, natural language libraries, graph libraries (the data structures not charting), AI/semantic stuff ... – Freshhawk May 3 '11 at 0:04
This is especially relevant to someone asking about collective intelligence programming and machine learning who might want access to libraries dealing with COLLECTIVE INTELLIGENCE AND MACHINE LEARNING, an area where PHP is unquestionably lacking. Techpriester and Matchu outed themselves as closer to the script kiddy side of the spectrum than the engineer side. – Freshhawk May 3 '11 at 0:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.