PyML is an interactive object oriented framework for machine learning written in Python. PyML focuses on SVMs and other kernel methods. It is supported on Linux and Mac OS X.
Questions tagged [pyml]
18 questions
0
votes
1 answer
GAE Python PyML ImportError: No module named _ckernel
I'm trying to import PyML on Google App Engine as a requirement for another library, however I am getting the following import error:
File "/base/data/home/apps/s~myapp/uno.385079313378714244/PyML/__init__.py", line 4, in
from…

Vincent
- 1,137
- 18
- 40
0
votes
2 answers
Save PyML.classifiers.multi.OneAgainstRest(SVM()) object?
I'm using PYML to construct a multiclass linear support vector machine (SVM). After training the SVM, I would like to be able to save the classifier, so that on subsequent runs I can use the classifier right away without retraining. Unfortunately,…

Michael Aaron Safyan
- 93,612
- 16
- 138
- 200
0
votes
1 answer
Setting the SVM discriminant value in PyML
I'm using PyML's SVM to classify reads, but would like to set the discriminant to a higher value than the default (which I assume is 0). How do I do it?
Ps. I'm using a linear kernel with the liblinear-optimizer if that matters.

The Unfun Cat
- 29,987
- 31
- 114
- 156