-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.46 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (45 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import torchlight
from setuptools import setup, find_packages
version = torchlight.__version__
setup(
name="torchlight",
version=version,
packages=find_packages(),
install_requires=[
"torch>=2.0.0",
"torchvision==0.19.1",
"numpy",
"tqdm",
"pillow",
"matplotlib",
],
author="Harikesh Kushwaha",
author_email="harikeshkumar0926@gmail.com",
url="https://github.com/Hari31416/torchlight",
keywords=[
"pytorch",
"mechanistic interpretability",
"machine learning",
"neural networks",
"convolutional neural networks",
"feature visualization",
"optimization",
],
license="MIT",
description="A library to visualize features learned by CNNs",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)