user921103
user921103

Reputation: 51

Python based SVM library

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

Answers (2)

Oszkar
Oszkar

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

Roshan Mathews
Roshan Mathews

Reputation: 5898

libsvm has Python bindings.

Edit

Googling found PyML, but I haven't used it.

Upvotes: 2

Related Questions