Add models to the prototorch.models namespace

This commit is contained in:
Jensun Ravichandran 2021-05-07 15:23:52 +02:00
parent 5f937066bf
commit 17315ff242

View File

@ -1,5 +1,10 @@
from importlib.metadata import PackageNotFoundError, version
from .cbc import CBC
from .glvq import GLVQ, GMLVQ, GRLVQ, LVQMLN, ImageGLVQ, SiameseGLVQ
from .neural_gas import NeuralGas
from .vis import *
VERSION_FALLBACK = "uninstalled_version"
try:
__version__ = version(__name__.replace(".", "-"))