Compare commits
11 Commits
v0.1.0-dev
...
v0.1.0-rc0
Author | SHA1 | Date | |
---|---|---|---|
|
3757c937b3 | ||
|
38f637aaeb | ||
|
6ddfe48a95 | ||
|
bf0e694321 | ||
|
e2c9848120 | ||
|
dc60b7e5b5 | ||
|
c21913fdd4 | ||
|
59e31f94ab | ||
|
cddefa9b0d | ||
|
26d71fdd60 | ||
|
ced8f532dd |
@@ -1,5 +1,5 @@
|
||||
[bumpversion]
|
||||
current_version = 0.1.0-dev0
|
||||
current_version = 0.1.0-rc0
|
||||
commit = True
|
||||
tag = True
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
|
||||
|
20
.travis.yml
Normal file
20
.travis.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
dist: bionic
|
||||
sudo: false
|
||||
language: python
|
||||
python: 3.8
|
||||
# cache:
|
||||
# directories:
|
||||
# - $HOME/.prototorch
|
||||
|
||||
install:
|
||||
- pip install . --progress-bar off
|
||||
- pip install codecov
|
||||
- pip install pytest
|
||||
|
||||
script:
|
||||
- coverage run -m pytest
|
||||
|
||||
# Push the results to codecov
|
||||
after_success:
|
||||
- codecov
|
||||
# - bash <(curl -s https://codecov.io/bash)
|
@@ -1,9 +1,11 @@
|
||||
include .bumpversion.cfg
|
||||
include LICENSE
|
||||
include tox.ini
|
||||
include *.yml
|
||||
recursive-include docs *.bat
|
||||
recursive-include docs *.png
|
||||
recursive-include docs *.py
|
||||
recursive-include docs *.rst
|
||||
recursive-include docs Makefile
|
||||
recursive-include examples *.py
|
||||
recursive-include tests *.py
|
||||
|
18
README.md
18
README.md
@@ -3,8 +3,13 @@
|
||||
ProtoTorch is a PyTorch-based Python toolbox for bleeding-edge research in
|
||||
prototype-based machine learning algorithms.
|
||||
|
||||
[](https://travis-ci.org/si-cim/prototorch)
|
||||
[](https://badge.fury.io/gh/si-cim%2Fprototorch)
|
||||
[](https://badge.fury.io/py/prototorch)
|
||||

|
||||
[](https://codecov.io/gh/si-cim/prototorch)
|
||||
[](https://pepy.tech/project/prototorch)
|
||||
[](https://github.com/si-cim/prototorch/blob/master/LICENSE)
|
||||
|
||||
## Description
|
||||
|
||||
@@ -47,3 +52,16 @@ API, with more algorithms and techniques coming soon. If you would simply like
|
||||
to be able to use those algorithms to train large ML models on a GPU, ProtoTorch
|
||||
lets you do this without requiring a black-belt in high-performance Tensor
|
||||
computation.
|
||||
|
||||
## Bibtex
|
||||
|
||||
If you would like to cite the package, please use this:
|
||||
```bibtex
|
||||
@misc{Ravichandran2020,
|
||||
author = {Ravichandran, J},
|
||||
title = {ProtoTorch},
|
||||
year = {2020},
|
||||
publisher = {GitHub},
|
||||
journal = {GitHub repository},
|
||||
howpublished = {\url{https://github.com/si-cim/prototorch}}
|
||||
}
|
||||
|
3
RELEASE.md
Normal file
3
RELEASE.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# Release 0.1.0-dev0
|
||||
|
||||
Initial public release of ProtoTorch.
|
@@ -1 +1 @@
|
||||
__version__ = '0.1.0-dev0'
|
||||
__version__ = '0.1.0-rc0'
|
||||
|
2
setup.py
2
setup.py
@@ -10,7 +10,7 @@ with open('README.md', 'r') as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setup(name='prototorch',
|
||||
version='0.1.0-dev0',
|
||||
version='0.1.0-rc0',
|
||||
description='Highly extensible, GPU-supported '
|
||||
'Learning Vector Quantization (LVQ) toolbox '
|
||||
'built using PyTorch and its nn API.',
|
||||
|
0
tests/__init__.py
Normal file
0
tests/__init__.py
Normal file
Reference in New Issue
Block a user