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+)
|
||||
|
@@ -17,5 +17,5 @@ deploy:
|
||||
password:
|
||||
secure: PDoASdYdVlt1aIROYilAsCW6XpBs/TDel0CSptDzX0CI7i4+ksEW6Jk0JyL58bQt7V4F8PeGty4A8SODzAUIk2d8sty5RI4VJjvXZFCXlUsW+JGUN3EvWNqJLnwN8TDxgu2ENao37GUh0dC6pL8b6bVDGeOLaY1E/YR1jimmTJuxxjKjBIU8ByqTNBnC3rzybMTPU3nRoOM/WMQUyReHrPoUJj685sLqrLruhAqhiYsPbotP8xY6i8+KBbhp5vgiARV2+LkbeGcYZwozCzrEqPKY7YIfVPh895cw0v4NRyFwK1P2jyyIt22Z9Ni0Uy1J5/Qp9Sv6mBPeGjm3pnpDCQyS+2bNIDaj08KUYTIo1mC/Jcu4jQgppZEF+oey9q1tgGo+/JhsTeERKV9BoPF5HDiRArU1s5aWJjFnCsHfu+W1XqX8bwN3aTYsEIaApT3/irc6XyFJIfMN82+z+lUcZ4Y1yAHT3nH1Vif+pZYZB0UOSGrHwuI/UayjKzbCzHMuHWylWB/9ehd4o4YVp6iubVHc7Sj0KQkwBgwgl6TvwNcUuFsplFabCxmX0mVcavXsWiOBc+ivPmU6574zGj0JcEk5ghVgnKH+QS96aVrKOzegwbl4O13jY8dJp+/zgXl0gJOvRKr4BhuBJKcBaMQHdSKUChVsJJtqDyt59GvWcbg=
|
||||
on:
|
||||
tags: true
|
||||
skip_existing: true
|
||||
tags: true
|
||||
skip_existing: true
|
||||
|
@@ -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