-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 908 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 908 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
37
38
39
[tool.poetry]
name = "mnist"
version = "1.0.0"
description = "MNIST recognition"
authors = ["BiscuitsLayer <vinogradov.so@phystech.edu>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pre-commit = "^3.5.0"
fire = "^0.5.0"
dvc = "^3.36.1"
dvc-gdrive = "^3.0.0"
hydra-core = "^1.3.2"
lightning = "^2.1.3"
scikit-learn = "^1.3.2"
torch = {version = "^2.1.2+cu118", source = "pytorch"}
torchvision = {version = "^0.16.2+cu118", source = "pytorch"}
mlflow = "^2.9.2"
onnx = "^1.15.0"
onnxruntime = "^1.16.3"
[tool.poetry.group.dev.dependencies]
torch = "^2.1.0"
torchvision = "^0.16.0"
matplotlib = "^3.8.0"
[tool.poetry.scripts]
mnist_train = 'mnist.train:main'
mnist_infer = 'mnist.infer:main'
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"