amkyawdev commited on
Commit
5a6fa34
·
verified ·
1 Parent(s): cd57e14

Add requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +56 -0
requirements.txt ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core ML/AI
2
+ torch>=2.0.0
3
+ transformers>=4.35.0
4
+ peft>=0.7.0
5
+ accelerate>=0.25.0
6
+ datasets>=2.14.0
7
+ scikit-learn>=1.3.0
8
+
9
+ # Audio Processing
10
+ librosa>=0.10.0
11
+ soundfile>=0.12.1
12
+ torchaudio>=2.0.0
13
+ scipy>=1.11.0
14
+
15
+ # Data Versioning
16
+ dvc>=3.0.0
17
+ dvc-gdrive>=2.0.0
18
+
19
+ # Text Processing
20
+ numpy>=1.24.0
21
+ pandas>=2.0.0
22
+ pyyaml>=6.0
23
+ regex>=2023.0.0
24
+ sentencepiece>=0.1.99
25
+
26
+ # XAI (Explainable AI)
27
+ shap>=0.42.0
28
+ lime>=0.3.0
29
+
30
+ # Multi-Modal
31
+ openai-whisper>=20231117
32
+
33
+ # Federated Learning
34
+ flwr>=1.5.0
35
+
36
+ # Graph
37
+ networkx>=3.1
38
+ rdflib>=7.0.0
39
+
40
+ # Utilities
41
+ tqdm>=4.66.0
42
+ loguru>=0.7.0
43
+ hydra-core>=1.3.0
44
+ omegaconf>=2.3.0
45
+ python-dotenv>=1.0.0
46
+
47
+ # API & Deployment
48
+ fastapi>=0.104.0
49
+ uvicorn>=0.24.0
50
+ pydantic>=2.0.0
51
+ gradio>=4.0.0
52
+
53
+ # Testing
54
+ pytest>=7.4.0
55
+ pytest-cov>=4.1.0
56
+ pytest-asyncio>=0.21.0