-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
21 lines (16 loc) · 1004 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='deep_differential_network',
version='0.1',
url='https://github.com/milutter/deep_differential_network.git',
description='This package provides an implementation of a Deep Differential Network. This '
'network architecture is a variant of a fully connected network that in addition '
'to computing the function value f(x;θ) outputs the network Jacobian w.r.t. the network input x. The '
'Jacobian is computed in closed form with machine precision, with minimal computational overhead using '
'the chain rule.',
author='Michael Lutter',
author_email='[email protected]',
packages=['deep_differential_network', ],
classifiers=['Development Status :: 3 - Alpha'], install_requires=['matplotlib',
'numpy',
'torch'])