OmidSakaki commited on
Commit
2471bb5
·
verified ·
1 Parent(s): 702eb67

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +63 -10
requirements.txt CHANGED
@@ -1,16 +1,69 @@
1
- gradio==4.36.0
2
- torch==2.3.0
 
 
 
 
 
 
 
 
 
 
 
3
  numpy==1.26.4
4
  pandas==2.2.2
5
- matplotlib==3.8.0
 
 
 
6
  pillow==10.4.0
7
- plotly==5.22.0
 
 
8
  gymnasium==1.0.0
9
- scikit-learn==1.5.0
10
- transformers==4.40.0
11
- torchvision==0.18.0
12
- requests==2.31.0
13
- beautifulsoup4==4.12.3
14
  textblob==0.18.0
15
  vaderSentiment==3.3.2
16
- tweepy==4.14.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core ML/AI Framework
2
+ torch==2.3.1
3
+ torchvision==0.18.1
4
+ torchaudio==2.3.1
5
+ --extra-index-url https://download.pytorch.org/whl/cpu
6
+ # or for CUDA: --extra-index-url https://download.pytorch.org/whl/cu121
7
+
8
+ # Web/ML Interfaces
9
+ gradio==4.44.0
10
+ plotly==5.24.0
11
+ streamlit==1.38.0
12
+
13
+ # Data Processing
14
  numpy==1.26.4
15
  pandas==2.2.2
16
+ scikit-learn==1.5.0
17
+
18
+ # Visualization
19
+ matplotlib==3.9.2
20
  pillow==10.4.0
21
+ seaborn==0.13.2
22
+
23
+ # RL Environment
24
  gymnasium==1.0.0
25
+ gymnasium[classic_control]==1.0.0
26
+
27
+ # NLP/Sentiment Analysis
28
+ transformers==4.44.2
29
+ tokenizers==0.20.1
30
  textblob==0.18.0
31
  vaderSentiment==3.3.2
32
+ nltk==3.8.1
33
+
34
+ # Web Scraping & APIs
35
+ requests==2.32.3
36
+ beautifulsoup4==4.12.3
37
+ tweepy==4.14.0
38
+ httpx==0.27.0
39
+
40
+ # Utilities
41
+ tqdm==4.66.5
42
+ psutil==6.0.0
43
+ pyyaml==6.0.2
44
+ python-dateutil==2.9.0
45
+ joblib==1.4.2
46
+
47
+ # Audio/Video (optional for advanced features)
48
+ librosa==0.10.2.post1
49
+ pydub==0.25.1
50
+
51
+ # Testing & Development
52
+ pytest==8.3.3
53
+ black==24.8.0
54
+ flake8==7.1.1
55
+ mypy==1.11.1
56
+
57
+ # Optional: Advanced features
58
+ accelerate==1.0.1
59
+ bitsandbytes==0.43.3
60
+ optimum==1.21.0
61
+ sentence-transformers==3.1.1
62
+
63
+ # Security & Monitoring
64
+ python-dotenv==1.0.1
65
+ prometheus-client==0.20.0
66
+
67
+ # Platform-specific
68
+ # Windows: pywin32==306
69
+ # macOS: tkinter (usually pre-installed)