-
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
NullConvergence
committed
Jun 26, 2018
1 parent
3e86c08
commit 64fca48
Showing
4 changed files
with
22 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# file GENERATED by distutils, do NOT edit | ||
setup.py | ||
dnnmodels/__init__.py | ||
dnnmodels/conv2d.py | ||
dnnmodels/flatten.py | ||
dnnmodels/fully_connected.py | ||
dnnmodels/get_model.py | ||
dnnmodels/layer.py | ||
dnnmodels/lrn.py | ||
dnnmodels/max_pool.py | ||
dnnmodels/mlp.py | ||
dnnmodels/relu.py | ||
dnnmodels/softmax.py | ||
dnnmodels/train_graph.py | ||
dnnmodels/utils.py |
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
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,17 +1,18 @@ | ||
from setuptools import setup | ||
from setuptools import find_packages | ||
from distutils.core import setup | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setup(name='dnnmodels', | ||
version='1.0.0', | ||
url='https://github.com/NullConvergence/dnnmodels', | ||
download_url='https://github.com/NullConvergence/dnnmodels/archive/1.0.0.tar.gz', | ||
license='MIT', | ||
author='NullConvergence', | ||
author_email='nullconvergence@anonymous.ne', | ||
description="Simple models inspired by Cleverhans that help create DNN Architectures", | ||
install_requires=[ | ||
'cleverhans', | ||
'tensorflow' | ||
], | ||
packages=find_packages()) | ||
packages=['dnnmodels']) |