-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
53 lines (51 loc) · 1.38 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
[tool.poetry]
name = "torchok"
version = "0.4.12"
description = "The toolkit for fast Deep Learning experiments in Computer Vision"
readme = "README.md"
authors = [
"Vlad Vinogradov <[email protected]>",
"Rashit Bayazitov <[email protected]>",
"Vlad Patrushev <[email protected]>",
"Vyacheslav Shults <[email protected]>"
]
homepage = "https://github.com/eora-ai/torchok"
documentation = "https://torchok.readthedocs.io/"
keywords = ["Computer Vision", "Deep Learning", "Neural Networks"]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License"
]
license = "Apache-2.0"
[tool.poetry.dependencies]
albumentations = "1.3.0"
faiss-cpu = "1.7.2"
hydra-core = "~1.2"
imagesize = "1.4.1"
lightly = "~1.4"
mmdet = "3.0.0"
numpy = [
{version = "~1.22", python = ">=3.8,<3.11"}
]
onnx = "~1.13"
onnxruntime = "~1.14"
opencv-python = "~4.7"
pandas = [
{version = "~1.4", python = ">=3.8,<3.11"}
]
parameterized = "~0.9"
python = ">=3.8,<3.11"
pytorch-lightning = "~2.0"
ranx = "~0.3"
seaborn = "^0.12.2"
timm = "~0.6"
torch = "2.0.0"
torchvision = "~0.15"
torchmetrics = "~0.11"
urllib3 = "1.26.15"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"