my fork of prototorch_models
Go to file
Jensun Ravichandran ca39aa00d5 Stop passing component initializers as hparams
Pass the component initializer as an hparam slows down the script very much. The
API has now been changed to pass it as a kwarg to the models instead.

The example scripts have also been updated to reflect the new changes.

Also, ImageGMLVQ and an example script `gmlvq_mnist.py` that uses it have also
been added.
2021-05-12 16:36:22 +02:00
examples Stop passing component initializers as hparams 2021-05-12 16:36:22 +02:00
prototorch/models Stop passing component initializers as hparams 2021-05-12 16:36:22 +02:00
tests Dummy change 2021-05-10 16:47:37 +02:00
.bumpversion.cfg Bump version: 0.1.6 → 0.1.7 2021-05-11 17:18:29 +02:00
.codacy.yml Add CI definitions 2021-05-10 15:34:43 +02:00
.codecov.yml Add CI definitions 2021-05-10 15:34:43 +02:00
.gitignore Update gitignore 2021-04-21 14:54:22 +02:00
.travis.yml Fix Travis configuration 2021-05-10 17:06:23 +02:00
LICENSE Initial commit 2021-04-21 13:13:28 +02:00
README.md Stop passing component initializers as hparams 2021-05-12 16:36:22 +02:00
setup.py Bump version: 0.1.6 → 0.1.7 2021-05-11 17:18:29 +02:00

ProtoTorch Models

Build Status PyPI

Pre-packaged prototype-based machine learning models using ProtoTorch and PyTorch-Lightning.

Installation

To install this plugin, simply run the following command:

pip install prototorch_models

The plugin should then be available for use in your Python environment as prototorch.models.

*Note: Installing the models plugin should automatically install a suitable version of * ProtoTorch.

Development setup

It is recommended that you use a virtual environment for development. If you do not use conda, the easiest way to work with virtual environments is by using virtualenvwrapper. Once you've installed it with pip install virtualenvwrapper, you can do the following:

export WORKON_HOME=~/pyenvs
mkdir -p $WORKON_HOME
source /usr/local/bin/virtualenvwrapper.sh  # location may vary
mkvirtualenv pt

Once you have a virtual environment setup, you can start install the models plugin with:

workon pt
git clone git@github.com:si-cim/prototorch_models.git
cd prototorch_models
git checkout dev
pip install -e .[all]  # \[all\] if you are using zsh or MacOS

To assist in the development process, you may also find it useful to install yapf, isort and autoflake. You can install them easily with pip.

Available models

  • k-Nearest Neighbors (KNN)
  • Learning Vector Quantization 1 (LVQ1)
  • Generalized Learning Vector Quantization (GLVQ)
  • Generalized Relevance Learning Vector Quantization (GRLVQ)
  • Generalized Matrix Learning Vector Quantization (GMLVQ)
  • Limited-Rank Matrix Learning Vector Quantization (LiRaMLVQ)
  • Learning Vector Quantization Multi-Layer Network (LVQMLN)
  • Siamese GLVQ
  • Neural Gas (NG)

Work in Progress

  • Classification-By-Components Network (CBC)
  • Learning Vector Quantization 2.1 (LVQ2.1)

Planned models

  • Median-LVQ
  • Local-Matrix GMLVQ
  • Generalized Tangent Learning Vector Quantization (GTLVQ)
  • Robust Soft Learning Vector Quantization (RSLVQ)
  • Probabilistic Learning Vector Quantization (PLVQ)
  • Self-Incremental Learning Vector Quantization (SILVQ)

FAQ

How do I update the plugin?

If you have already cloned and installed prototorch and the prototorch_models plugin with the -e flag via pip, all you have to do is navigate to those folders from your terminal and do git pull to update.