Akilashamnaka12 commited on
Commit
95f7641
Β·
verified Β·
1 Parent(s): b1f309a

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +24 -3
requirements.txt CHANGED
@@ -1,3 +1,24 @@
1
- altair
2
- pandas
3
- streamlit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ── Core ──────────────────────────────────────────────────────────────────────
2
+ streamlit>=1.33.0
3
+ pandas>=2.0.0
4
+
5
+ # ── NLP / ML ──────────────────────────────────────────────────────────────────
6
+ # Use CPU-only torch to keep the Space build fast and free-tier friendly.
7
+ # HF Spaces installs the correct CUDA build automatically if a GPU is attached.
8
+ torch>=2.1.0
9
+ transformers>=4.40.0
10
+ accelerate>=0.27.0
11
+ sentencepiece>=0.1.99
12
+
13
+ # ── Text analytics helpers ────────────────────────────────────────────────────
14
+ nltk>=3.8.1
15
+ wordcloud>=1.9.3
16
+
17
+ # ── Plotting ──────────────────────────────────────────────────────────────────
18
+ matplotlib>=3.8.0
19
+
20
+ # ── File handling ─────────────────────────────────────────────────────────────
21
+ openpyxl>=3.1.2
22
+
23
+ # ── Scikit (optional – needed if your fine-tuned model uses sklearn tokeniser)
24
+ scikit-learn>=1.4.0