PyML: machine learning in Python
pyml.sourceforge.net
PyML: machine learning in Python
1–10 of 18 posts
Re: PyML: machine learning in Python
#2Re: PyML: machine learning in Python
#3Re: PyML: machine learning in Python
#4Re: PyML: machine learning in Python
#5If you're doing large scale linear classification, liblinear is especially awesome and fast. http://www.csie.ntu.edu.tw/~cjlin/liblinear/
EDIT: From the PyML documentation:
"By default the libsvm solver is used in training. To use the PyML SMO optimizer either set the optimizer attribute to ’mysmo’ or instantiate an svm instance as svm.SVM(optimizer = ’mysmo’). Note that for a non-vector dataset, the default libsvm optimizer cannot be used and the PyML native SMO implementation is automatically used instead (it is slower than libsvm so is not the default)"
Re: PyML: machine learning in Python
#6PySVM might have been a better name, since it looks like it only does SVM and kernel methods. I haven't used this package, but I'll recommend libsvm and liblinear because they're fast and have wrappers for just about every language you want, including Java, Ruby, Matlab, and Python http://www.csie.ntu.edu.tw/~cjlin/libsvm/#python If you're doing large scale linear classification, liblinear is especially awesome and f…
Re: PyML: machine learning in Python
#7This is the most thorough Python machine learning package I know of. Includes SVM.
Lots of tutorials, too, and a visual development environment (if that's your style).
Re: PyML: machine learning in Python
#8I am currently playing around with it. Decent support vector machine implementation. However, I have some problems with it. It is by far not as hugh as weka http://www.cs.waikato.ac.nz/ml/weka/ It is in python (big plus) and seems to be easily hacked for online classification. I like https://mlpy.fbk.eu/ a bit better, as it has also a decent integrated Nearest Neighbor (ok, ok this one is not hard to implement on you…
Re: PyML: machine learning in Python
#9http://www.ailab.si/orange/ This is the most thorough Python machine learning package I know of. Includes SVM. Lots of tutorials, too, and a visual development environment (if that's your style).
Re: PyML: machine learning in Python
#10http://www.ailab.si/orange/ This is the most thorough Python machine learning package I know of. Includes SVM. Lots of tutorials, too, and a visual development environment (if that's your style).
Wow, sounds impressive, but that link isn't working for me unfortunately! Do you know of a mirror?
http://74.125.47.132/search?q=cache:iqMjX8uGgroJ:www.ailab.s...
Google cache, to whet your appetite...