-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 743 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 743 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
[project]
name = "classification-of-reviews"
version = "0.1.0"
description = "classification of reviews from online store"
authors = [
{name = "Vladislav Ulandaev", email = "ulandaev.vn@phystech.edu"}
]
readme = "README.md"
requires-python = "~3.12"
[tool.poetry.dependencies]
pandas = ">=2.3.2,<3.0.0"
torch = ">=2.8.0,<3.0.0"
numpy = "^2.3.3"
matplotlib = "^3.10.6"
scikit-learn = "^1.7.2"
transformers = "^4.56.2"
datasets = "^4.1.1"
mlflow = "^3.4.0"
peft = "^0.17.1"
[tool.poetry.group.dev.dependencies]
fire = ">=0.7.1,<0.8.0"
ipykernel = "^5.5.0"
dvc = "^3.59.1"
pre-commit = "^2.10.1"
omegaconf = "^2.3.0"
hydra-core = "^1.3.2"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"