lyangas
commited on
Commit
•
9ac5368
1
Parent(s):
b2e7a27
fixing versions of packages and python versions
Browse files- Dockerfile +1 -1
- pyproject.toml +14 -2
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM python:3.
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
|
|
1 |
+
FROM python:3.10
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
pyproject.toml
CHANGED
@@ -5,14 +5,26 @@ description = ""
|
|
5 |
authors = ["lyangasovid <[email protected]>"]
|
6 |
|
7 |
[tool.poetry.dependencies]
|
8 |
-
python = "^3.
|
9 |
-
numpy = "1.22.4"
|
10 |
scikit-learn = "1.3.0"
|
11 |
transformers = "4.29.2"
|
12 |
flask = "2.0.3"
|
13 |
xgboost = "1.7.6"
|
14 |
werkzeug = "2.2.2"
|
15 |
torch = {url = "https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.0.1%2Bcpu.cxx11.abi-cp38-cp38-linux_x86_64.whl#sha256=fbe35a5c60aef0c4b5463caab10ba905bdfa07d6d16b7be5d510225c966a0b46"}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
[tool.poetry.dev-dependencies]
|
18 |
|
|
|
5 |
authors = ["lyangasovid <[email protected]>"]
|
6 |
|
7 |
[tool.poetry.dependencies]
|
8 |
+
python = "^3.10"
|
|
|
9 |
scikit-learn = "1.3.0"
|
10 |
transformers = "4.29.2"
|
11 |
flask = "2.0.3"
|
12 |
xgboost = "1.7.6"
|
13 |
werkzeug = "2.2.2"
|
14 |
torch = {url = "https://download.pytorch.org/whl/cpu-cxx11-abi/torch-2.0.1%2Bcpu.cxx11.abi-cp38-cp38-linux_x86_64.whl#sha256=fbe35a5c60aef0c4b5463caab10ba905bdfa07d6d16b7be5d510225c966a0b46"}
|
15 |
+
numpy = "1.26.3"
|
16 |
+
pandas = "2.2.0"
|
17 |
+
accelerate = "^0.25.0"
|
18 |
+
experiments = "0.1.0"
|
19 |
+
matplotlib = "3.8.2"
|
20 |
+
plotly = "5.18.0"
|
21 |
+
protobuf = "4.25.2"
|
22 |
+
tqdm = "4.66.1"
|
23 |
+
google-cloud-storage = "^2.14.0"
|
24 |
+
tinydb = "^4.8.0"
|
25 |
+
uvicorn = "^0.27.0.post1"
|
26 |
+
fastapi = "^0.109.2"
|
27 |
+
firebase-admin = "^6.5.0"
|
28 |
|
29 |
[tool.poetry.dev-dependencies]
|
30 |
|