-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 983 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 983 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
40
41
[tool.poetry]
name = "Ml"
version = "0.1.0"
description = "Machine Learning Course: Intuitive Understanding with Numerical & Python Examples"
authors = ["deep knowledge <deepp.knowledge@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
pendulum = "^3.0.0"
numpy = "^1.22.0"
requests = "^2.32.3"
matplotlib = "^3.9.3"
pandas = "^2.0.0"
scikit-learn = "^1.2.0"
lightgbm = "^4.0.0"
pyyaml = "^6.0.0"
mlflow = "^2.20.1"
xgboost = "2.0.3"
graphviz = "^0.20.3"
torch = { version = "1.13.1+cu117", source="torch"}
torchaudio = { version = "^0.13.1+cu117", source="torch"}
torchvision = { version = "0.14.1+cu117", source="torch"}
manim = "<0.19.0"
seaborn = "^0.13.2"
shap = "^0.47.2"
streamlit = "1.2.0"
protobuf = "3.20.3"
altair = "4.2.2"
openpyxl = "^3.1.5"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu117"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"