-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
49 lines (43 loc) · 1.05 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
[tool.poetry]
name = "digits-detection"
version = "0.1.0"
description = ""
authors = ["thawro <tomaszhawro.kontakt@gmail.com>"]
readme = "README.md"
packages = [{ include = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
torch = { version = "2.0.1+cu117", source = "torchcu117" }
plotly = "^5.14.0"
wandb = "^0.14.0"
pre-commit = "^3.2.2"
black = "^23.3.0"
isort = "^5.12.0"
ipykernel = "^6.22.0"
torchinfo = "^1.7.2"
pytorch-lightning = "^2.0.0"
torchvision = "^0.15.2"
rich = "^13.3.5"
matplotlib = "^3.7.1"
scipy = "1.9.2"
ipywidgets = "^8.0.6"
colorlog = "^6.7.0"
natsort = "^8.3.1"
mat73 = "^0.60"
ultralytics = "^8.0.112"
supervision = "^0.8.0"
albumentations = "^1.3.1"
gradio = "^3.30.0"
onnx = "1.13.1"
colored = "^1.4.4"
optimum = {extras = ["onnxruntime-gpu"], version = "^1.8.7"}
torchmetrics = "^1.0.0"
[tool.poetry.group.dev.dependencies]
pylint = "^2.17.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "torchcu117"
url = "https://download.pytorch.org/whl/cu117"
priority = "explicit"