forked from mit-han-lab/efficientvit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 806 Bytes
/
setup.py
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
from setuptools import find_packages, setup
setup(
name="efficientvit",
packages=find_packages(),
install_requires=[
"torch",
"torchvision",
"torchmetrics",
"numpy",
"timm",
"einops",
"opencv-python",
"tqdm",
"torchprofile",
"scipy",
"torch-fidelity",
"diffusers",
"omegaconf",
"ipdb",
"wandb",
"matplotlib",
"huggingface-hub",
"transformers",
"onnx",
"onnxsim",
"onnxruntime",
"pycocotools",
"lvis",
"scikit-image",
"tinyneuralnetwork @ git+https://github.com/alibaba/TinyNeuralNetwork.git",
"segment_anything @ git+https://github.com/facebookresearch/segment-anything.git",
],
)