ca39aa00d5
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.
11 lines
295 B
Python
11 lines
295 B
Python
from importlib.metadata import PackageNotFoundError, version
|
|
|
|
from .cbc import CBC
|
|
from .glvq import (GLVQ, GMLVQ, GRLVQ, LVQ1, LVQ21, LVQMLN, ImageGLVQ,
|
|
ImageGMLVQ, SiameseGLVQ)
|
|
from .knn import KNN
|
|
from .neural_gas import NeuralGas
|
|
from .vis import *
|
|
|
|
__version__ = "0.1.7"
|