alzami commited on
Commit
5f889c1
·
verified ·
1 Parent(s): b197271

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +35 -21
requirements.txt CHANGED
@@ -1,27 +1,41 @@
1
- streamlit==1.38.0
2
- streamlit-option-menu==0.3.6
 
3
 
4
- torch==2.3.1
5
- transformers==4.42.0
6
- tokenizers==0.15.2
7
- safetensors==0.4.3
 
8
 
9
- pandas==2.2.2
10
- numpy==1.26.4
11
- scikit-learn==1.4.2
 
12
 
13
- emoji==2.12.1
14
- beautifulsoup4==4.12.3
15
- html5lib==1.1
 
16
 
17
- plotly==5.22.0
18
- matplotlib==3.8.4
19
- seaborn==0.13.2
 
20
 
21
- openpyxl==3.1.5
22
- xlsxwriter==3.2.0
 
23
 
24
- python-dateutil==2.9.0.post0
25
- pytz==2024.1
26
- requests==2.32.3
27
- accelerate==0.32.0
 
 
 
 
 
 
 
 
 
1
+ # Core Streamlit and Web Framework
2
+ streamlit>=1.28.0
3
+ streamlit-option-menu>=0.3.6
4
 
5
+ # Machine Learning and NLP
6
+ torch>=2.0.0
7
+ transformers>=4.35.0
8
+ tokenizers>=0.14.0
9
+ safetensors>=0.4.0
10
 
11
+ # Data Processing
12
+ pandas>=2.0.0
13
+ numpy>=1.24.0
14
+ scikit-learn>=1.3.0
15
 
16
+ # Text Processing
17
+ emoji>=2.8.0
18
+ beautifulsoup4>=4.12.0
19
+ html5lib>=1.1
20
 
21
+ # Visualization
22
+ plotly>=5.15.0
23
+ matplotlib>=3.7.0
24
+ seaborn>=0.12.0
25
 
26
+ # File Handling
27
+ openpyxl>=3.1.0
28
+ xlsxwriter>=3.1.0
29
 
30
+ # Utilities
31
+ python-dateutil>=2.8.0
32
+ pytz>=2023.3
33
+ requests>=2.31.0
34
+
35
+ # Optional: For better performance
36
+ accelerate>=0.24.0
37
+
38
+ # Development and Testing (optional)
39
+ pytest>=7.4.0
40
+ black>=23.0.0
41
+ flake8>=6.0.0