Repository and Package Name changed to sklearn-lvq!
Scikit-learn compatible implementation of GLVQ, GRLVQ, GMLVQ, LGMLVQ RSLVQ, MRSLVQ and LMRSLVQ.
Compatible with Python2.7, Python3.6 and above.
This implementation is based on the Matlab implementation provided by Biehl, Schneider and Bunte (http://matlabserver.cs.rug.nl/gmlvqweb/web/).
- scikit-learn (http://scikit-learn.org/)
- documentation (https://sklearn-lvq.readthedocs.io/)
To install this module run:
pip install .
or
pip install sklearn-lvq
To also install the extras, use
pip install .[docs,examples,tests]
or
pip install -U sklearn-lvq[docs,examples,tests]
To run the examples:
pip install -U sklearn-lvq[examples]
The examples can be found in the examples directory.
To run testss:
pip install -U sklearn-lvq[tests]
Tests are located in the sklearn_lvq/tests
folder
and can be run with the nosetests
command in the main directory.
To build the documentation locally, ensure that you have sphinx, sphinx-gallery, pillow, sphinx_rt_theme, metric_learn and matplotlib by executing:
pip install -U sklearn-lvq[docs]