forked from yell/boltzmann-machines
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a10b61
commit 4932b80
Showing
3 changed files
with
49 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,36 @@ | ||
# Python build | ||
*.pyc | ||
|
||
# Tensorflow files | ||
*.json | ||
|
||
# Pycharm Project | ||
.idea/* | ||
.idea | ||
|
||
# Virtualenv | ||
.venv/* | ||
boltzmann_machines/test_rbm_1/* | ||
boltzmann_machines/test_rbm_2/* | ||
|
||
models/* | ||
!models/fetch_models.sh | ||
data/*.npy | ||
data/mnist/ | ||
data/cifar-10-batches-py/ | ||
|
||
# Notebooks | ||
notebooks/.ipynb_checkpoints/* | ||
models/* | ||
!models/fetch_models.sh | ||
|
||
# LaTex files | ||
tex/*.swp | ||
.idea | ||
|
||
# python setup.py develop | ||
# python setup_cpu.py develop | ||
boltzmann_machines.egg-info/ | ||
|
||
# Coverage | ||
.coverage | ||
|
||
# Research projects | ||
.tests/ | ||
boltzmann_machines/test_rbm_1/* | ||
boltzmann_machines/test_rbm_2/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from setuptools import setup | ||
from setuptools import find_packages | ||
|
||
setup(name='boltzmann_machines', | ||
version='0.1', | ||
url='https://github.com/monsta-hd/boltzmann-machines', | ||
install_requires=[ 'tensorflow>=1.13.0', | ||
'scipy>=0.17', | ||
'keras>=2.0.8', | ||
'matplotlib>=1.5.3', | ||
'nose-exclude>=0.5.0', | ||
'nose>=1.3.4', | ||
'numpy>=1.13.0', | ||
'scikit-learn>=0.19.0', | ||
'seaborn>=0.8.1', | ||
'tqdm>=4.14.0', | ||
'coverage>=4.5.0' | ||
], | ||
packages=find_packages()) |