-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
19 lines (17 loc) · 806 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
long_desc = """
A PyTorch implementation of Scalable Training of Artificial Neural Networks with Adaptive Sparse Connectivity inspired by Network Science by Mocanu et al. (https://arxiv.org/abs/1707.04780)
Uses sparse data structures. Not super fast yet, but less memory-intensive than the masked dense weight matrices used
in the proof-of-concept code released with the paper.
"""
setup(
name='synapses',
version='0.0.14',
description='Adaptive Sparse Connectivity for Neural Networks in PyTorch',
long_description=long_desc,
author='Michael Klear',
author_email='[email protected]',
url='https://github.com/AlliedToasters/synapses/archive/v0.0.14.tar.gz',
install_requires=['torch', 'torch-scatter'],
packages=['synapses']
)