-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 963 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
from setuptools import setup, find_namespace_packages
setup(
version="0.1.0",
name="probabilistic_embeddings",
long_description="Experiments with MDN for metric learning.",
url="https://github.com/tinkoff-ai/probabilistic-embeddings",
author="Ivan Karpukhin and Stanislav Dereka",
author_email="[email protected]",
packages=find_namespace_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"catalyst==21.9",
"faiss-cpu==1.7.0", # Need for MAP@R metric computation.
"jpeg4py==0.1.4",
"mxnet==1.8.0.post0", # Used for RecordIO reading.
"numpy==1.19.5",
"optuna==2.10.0",
"pretrainedmodels==0.7.4",
"scikit-image==0.17.2",
"scikit-learn==0.24.2",
"scipy==1.5.4",
"torch==1.10.1", # CUDA 10.1.
"torchvision==0.11.2",
"Pillow==8.3.1",
"PyYAML==5.4.1",
"gitpython",
"wandb"
]
)