-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.09 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
[tool.poetry]
name = "PCBM"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
packages = [{ include = "models" }, { include = "data" }, { include = "concepts" }, { include = "training_tools" }]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
torch = "^2.1.2"
torchvision = "^0.16.2"
scikit-learn = "^1.3.2"
tqdm = "^4.66.1"
pandas = "^2.1.4"
pytorchcv = "^0.0.67"
clip = {git = "https://github.com/openai/CLIP.git"}
ftfy = "^6.1.3"
regex = "^2023.12.25"
wandb = "^0.16.2"
datasets = "^2.16.1"
lightning = {extras = ["pytorch-extra"], version = "^2.1.3"}
tensorboardx = "^2.6.2.2"
torch-tb-profiler = "^0.4.3"
numpy = ">=1.21,<1.25"
pytorch-ignite = "^0.4.13"
visdom = "^0.2.4"
skops = "^0.9.0"
opencv-python = "^4.9.0.80"
yt-dlp = "^2024.3.10"
librosa = "^0.10.1"
termcolor = "^2.4.0"
aiohttp = "^3.9.3"
aiodns = "^3.1.1"
[tool.poetry.group.dev.dependencies]
gdown = "^4.7.1"
jupyter = "^1.0.0"
renumics-spotlight = "^1.6.0"
nbdime = "^4.0.1"
debugpy = "^1.8.0"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"