-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 825 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 825 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
34
35
36
[tool.poetry]
name = "ImageModelZoo"
version = "0.1.0"
description = ""
authors = ["minseong <qtddpms@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
torch = { version = "2.2.2", source = "torch" }
numpy = "^1.26.4"
tensorboard = "^2.16.2"
torchmetrics = "^1.3.2"
torchvision = { version = "^0.17.2", source = "torch" }
wandb = "^0.16.6"
opencv-python = "^4.9.0.80"
albumentations = "^1.4.3"
matplotlib = "^3.8.4"
scipy = "^1.13.0"
black = "^24.3.0"
glfw = "^2.7.0"
pytorch-lightning = "^1.7.7"
datasets = "^2.19.1"
einops = "^0.8.0"
torchsummary = "^1.5.1"
timm = "^1.0.9"
scikit-learn = "^1.5.2"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu121"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"