Reputation: 51
Is there a Python based library providing an SVM implementation with a GPL or any other opensource license? I have come across a few that provide an SVM wrapper for the SVM logic encoded in C, but none that are coded entirely in Python.
Regards,
Mandar
Upvotes: 1
Views: 1687
Reputation: 697
You might want to check out this link, it has a big collection of machine learning software, it lists 50+ libraries that have been written in Python:
http://mloss.org/software/language/python/
Upvotes: 1
Reputation: 5898
libsvm
has Python bindings.
Edit
Googling found PyML
, but I haven't used it.
Upvotes: 2