File size: 594 Bytes
cd123bf |
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 |
[tool.poetry]
name = "monkey-coding-dl-project"
version = "0.1.0"
description = "HSE DL spring 2025 project"
authors = [
"Michael Litvinov",
"Kamil Gabidullin",
]
readme = "README.md"
packages = [
{ include = "src" },
]
[tool.poetry.dependencies]
python = "^3.12"
datasets = "3.6.0"
matplotlib = "3.10.3"
nltk = "3.9.1"
numpy = "2.3.0"
pandas = "2.3.0"
scikit-learn = "1.7.0"
seaborn = "0.13.2"
torch = "2.7.1"
transformers = "4.52.4"
jupyter = "^1.1.1"
ipykernel = "^6.29.5"
gradio = "^5.33.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|