Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
f49db0bf2c | ||
|
db38667306 | ||
|
54a8494d86 | ||
|
bf310be97c | ||
|
32ae1b7862 | ||
|
dfddb92aba | ||
|
4a38bb2bfe | ||
|
6680d4b9df | ||
|
1ae2b41edd | ||
|
9300a6d14d | ||
|
3d42876df1 | ||
|
fbadacdbca |
@@ -1,5 +1,5 @@
|
||||
[bumpversion]
|
||||
current_version = 0.1.0
|
||||
current_version = 0.1.4
|
||||
commit = True
|
||||
tag = True
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
|
||||
|
@@ -1,5 +1,8 @@
|
||||
# ProtoTorch Models
|
||||
|
||||
[](https://travis-ci.org/si-cim/prototorch_models)
|
||||
[](https://pypi.org/project/prototorch_models/)
|
||||
|
||||
Pre-packaged prototype-based machine learning models using ProtoTorch and
|
||||
PyTorch-Lightning.
|
||||
|
||||
|
@@ -5,4 +5,4 @@ from .glvq import GLVQ, GMLVQ, GRLVQ, LVQMLN, ImageGLVQ, SiameseGLVQ
|
||||
from .neural_gas import NeuralGas
|
||||
from .vis import *
|
||||
|
||||
__version__ = "0.1.0"
|
||||
__version__ = "0.1.4"
|
2
setup.py
2
setup.py
@@ -27,7 +27,7 @@ ALL = DEV + EXAMPLES + TESTS
|
||||
|
||||
setup(
|
||||
name=safe_name("prototorch_" + PLUGIN_NAME),
|
||||
version="0.1.0",
|
||||
version="0.1.4",
|
||||
description="Pre-packaged prototype-based "
|
||||
"machine learning models using ProtoTorch and PyTorch-Lightning.",
|
||||
long_description=long_description,
|
||||
|
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
6
tests/test_dummy.py
Normal file
6
tests/test_dummy.py
Normal file
@@ -0,0 +1,6 @@
|
||||
import unittest
|
||||
|
||||
|
||||
class TestDummy(unittest.TestCase):
|
||||
def test_one(self):
|
||||
self.assertEqual(True, True)
|
Reference in New Issue
Block a user