There was an error while loading. Please reload this page.
1 parent bb1ea79 commit 850b815Copy full SHA for 850b815
setup.py
@@ -1,10 +1,14 @@
1
"""setup.py for hessian_eigenthings"""
2
3
-from setuptools import setup
+from setuptools import setup, find_packages
4
5
install_requires = [
6
'numpy>=0.14',
7
'torch>=0.4'
8
]
9
10
-setup(name="hessian_eigenthings", author="Noah Golmant", install_requires=install_requires)
+setup(name="hessian_eigenthings",
11
+ author="Noah Golmant",
12
+ install_requires=install_requires,
13
+ packages=find_packages(),
14
+ description='Eigendecomposition of model Hessians in PyTorch!')
0 commit comments