If you're using a Mac, please don't install all of this individually. Instead, install the Scipy Superpack: http://fonnesbeck.github.com/ScipySuperpack/
Tools to get started in machine learning
31–37 of 37 posts
Re: Tools to get started in machine learning
#32Plus it's the only one on that list that will scale beyond the "My Data Set" size.
Re: Tools to get started in machine learning
#33>I found the syntax baffling, the documentation copious, but written for mathematicians instead of hackers I'm always surprised how much people hate the syntax of R. I primarily work in Python, but I use R once or twice a week... and the syntax seems very clean to me. Can someone give mee an example of what you dislike with R's syntax? I'm even more surprised to hear complaints about the documentation in R. The help…
(Author here) - I don't have any specific examples, but I was learning R and Python at the same time. I found Python to be very practical and easy to learn. When learning R, I kept getting tripped up. Maybe it isn't that R was harder, but that I had a head start on Python. And as for documentation, R was certainly very complete, but once again, I found it harder. I think because R is written by, and probably for, pro…
I'm not a mathematician, and I've been programming Python for 15 years, but I'd always pick R for its stated problem domain given a choice.
I highly recommend "The Art Of R Programming" for learning R as a programming language. The statistical side of things are then easier to layer on top of that.
Re: Tools to get started in machine learning
#34Does anyone have any experience with Octave and how it compares to the Python setup that OP suggests? What are the benefits/pitfalls?
It's great for matrix/vector maths, though. If that's all you do -- go for it. Everything over and above that is a royal pain in MATLAB and, conversely, in Octave.
Re: Tools to get started in machine learning
#35Re: Tools to get started in machine learning
#36Solid summary of some powerful tools, no wonder python is the new default for academic data analysis.
Andrew Ng, in his machine learning class [1] urges people do use Matlab instead of Python, because in his experience people develop faster with Matlab than wit any other tool/language. Personally, I am experienced with Matlab but not so much with Python, so I am not able to judge. I definitely hate the fact that Matlab is proprietary and partly closed source. Also, I think Python syntax is much more pretty while Matl…
Never trust academics when it comes to programming. :)
Seriously, Matlab might be a tiny bit better for scientific programming than Python. But: if you start building an eco system around your machine learning code (distributed evaluation of models, email reporting of results, web reporting of results, online tracking of training progress, data base related things, web services for other people, proper documentation, ...) you are happy if you chose python.
Also, there is theano for python which has auto diff, transparent GPU/CPU use and symbolic optimization. It makes your life easy if you are using complicated models.