-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 803 Bytes
/
setup.py
File metadata and controls
33 lines (31 loc) · 803 Bytes
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="sparc",
version="0.1.0",
author="Ali Nasiri-Sarvi",
description="SPARC: Cross-Mode Interpretabilty",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"torch>=2.0.0",
"torchvision>=0.15.0",
"torchaudio>=2.0.0",
"numpy>=1.21.0",
"pandas>=1.5.0",
"scikit-learn>=1.0.0",
"tqdm>=4.60.0",
"h5py>=3.1.0",
"Pillow>=8.3.0",
"matplotlib>=3.5.0",
"seaborn>=0.11.0",
"pycocotools>=2.0.4",
"wandb>=0.12.0",
"opencv-python>=4.5.0",
"open_clip_torch>=2.0.0",
"timm>=0.9.0",
"captum>=0.6.0",
"grad-cam>=1.4.0",
"ttach>=0.0.3",
],
)