ericsonwillians commited on
Commit
4f45a92
·
verified ·
1 Parent(s): 66fc249

Upload pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pyproject.toml +23 -0
pyproject.toml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "steam-reviews-sentiment-analysis"
3
+ version = "0.1.0"
4
+ description = ""
5
+ authors = ["Ericson Willians Rocha Pires <[email protected]>"]
6
+ readme = "README.md"
7
+
8
+ [tool.poetry.dependencies]
9
+ python = "^3.10"
10
+ matplotlib = "^3.9.3"
11
+ kagglehub = "^0.3.5"
12
+ pandas = "^2.2.3"
13
+ torch = "^2.5.1"
14
+ datasets = "^3.2.0"
15
+ evaluate = "^0.4.3"
16
+ transformers = {extras = ["torch"], version = "^4.47.0"}
17
+ rich = "^13.9.4"
18
+ scikit-learn = "^1.6.0"
19
+
20
+
21
+ [build-system]
22
+ requires = ["poetry-core"]
23
+ build-backend = "poetry.core.masonry.api"