-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
69 lines (66 loc) · 1.68 KB
/
pyproject.toml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "open_clip_torch"
version = "2.24.0"
description = "CLoVe"
authors = ["Santiago Castro <sacastro@umich.edu>"]
readme = "README.md"
homepage = "https://github.com/Netflix/clove"
repository = "https://github.com/Netflix/clove"
license = "MIT"
packages = [{ include = "*", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
albumentations = "<2"
bitsandbytes = "*"
boto3 = "*"
botocore = "*"
braceexpand = "*"
cached-path = "*"
clip_benchmark = "*"
datasets = "<3"
decord = "*"
# The following one is added here to make Ray install the spaCy model from the runtime env options.
en-core-web-sm = { url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.1/en_core_web_sm-3.7.1-py3-none-any.whl" }
filelock = "*"
fsspec = "*"
ftfy = "*"
gdown = "*" # For ARO datasets.
gitignorefile = "*"
grpcio = "*"
hydra-core = "<1.4"
hydra-optuna-sweeper = "*"
hydra-ray-launcher = "*"
huggingface_hub = "*"
imagenetv2_pytorch = { git = "https://github.com/modestyachts/ImageNetV2_pytorch" }
ipython = "*"
jupyter = "*"
matplotlib = "*"
mteb = "*"
neptune = "*"
nltk = "<4" # For ARO datasets.
omegaconf = "*"
pandas = "*"
psutil = "*"
pyinflect = "*"
pytz = "*"
pyyaml = "*"
rarfile = "*" # For HMDB51 and UCF101.
ray = { version = "2.7.1", extras = ["default"] }
regex = "*"
scenegraphparser = "*"
scikit-learn = "*"
scipy = "*"
seaborn = "*"
spacy = "<4" # For ARO datasets.
tensorboard = "*"
timm = "*"
torch = "2.2.1" # This version from PyPI supports CUDA 12.1.
torchvision = "*"
tqdm = "*"
triton = "*" # To use with bitsandbytes.
transformers = "*"
wandb = "*"
webdataset = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"