Trouter-Library commited on
Commit
9a52a70
·
verified ·
1 Parent(s): 4b84490

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +60 -0
requirements.txt ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core ML Framework
2
+ torch==2.2.0
3
+ torchvision==0.17.0
4
+ torchaudio==2.2.0
5
+
6
+ # Transformers and Model Serving
7
+ transformers==4.40.0
8
+ tokenizers==0.15.2
9
+ sentencepiece==0.2.0
10
+ accelerate==0.28.0
11
+ safetensors==0.4.2
12
+ huggingface-hub==0.21.4
13
+
14
+ # High-Performance Inference
15
+ vllm==0.3.3
16
+ ray[default]==2.10.0
17
+
18
+ # Quantization Support
19
+ bitsandbytes==0.43.0
20
+
21
+ # Web Server
22
+ fastapi==0.110.0
23
+ uvicorn[standard]==0.29.0
24
+ aiohttp==3.9.3
25
+ websockets==12.0
26
+
27
+ # Data Processing
28
+ numpy==1.26.4
29
+ scipy==1.12.0
30
+ pandas==2.2.1
31
+ pyarrow==15.0.2
32
+
33
+ # Model Utilities
34
+ pydantic==2.6.4
35
+ pyyaml==6.0.1
36
+ omegaconf==2.3.0
37
+
38
+ # Monitoring and Logging
39
+ prometheus-client==0.20.0
40
+ gputil==1.4.0
41
+ psutil==5.9.8
42
+ py-cpuinfo==9.0.0
43
+ pynvml==11.5.0
44
+
45
+ # HTTP Clients
46
+ requests==2.31.0
47
+ httpx==0.27.0
48
+
49
+ # Development Tools
50
+ pytest==8.1.1
51
+ pytest-asyncio==0.23.6
52
+ black==24.3.0
53
+ flake8==7.0.0
54
+ mypy==1.9.0
55
+
56
+ # Optional: Advanced Features
57
+ scikit-learn==1.4.1
58
+ matplotlib==3.8.3
59
+ seaborn==0.13.2
60
+ pillow==10.2.0