Princeaka commited on
Commit
95ae49f
·
verified ·
1 Parent(s): c7b063e

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +39 -40
requirements.txt CHANGED
@@ -1,46 +1,45 @@
1
- # CORE (Your Original Versions)
2
- --index-url https://download.pytorch.org/whl/cu118
3
- torch==2.0.1+cu118
4
- torchvision==0.15.2+cu118
5
- torchaudio==2.0.2+cu118
 
6
 
7
- # HF ECOSYSTEM (Pinned as Provided)
8
- transformers==4.30.2
9
- diffusers==0.19.0
10
- accelerate==0.21.0
11
- huggingface-hub==0.19.0
12
- safetensors==0.3.1
13
- tokenizers==0.13.3
14
- sentencepiece==0.1.99
15
 
16
- # AUDIO (Original Stack)
17
- librosa==0.10.0
18
- soundfile==0.12.1
19
- SpeechRecognition==3.10.0
20
- gTTS==2.3.2
21
- webrtcvad==2.0.10
22
- pydub==0.25.1
23
 
24
- # IMAGE (Original Versions)
25
- Pillow==10.0.0
26
- opencv-python-headless==4.7.0.72
27
- imageio==2.31.1
28
- imageio-ffmpeg==0.4.8
29
- moviepy==1.0.3
 
30
 
31
- # DOCS (Original)
32
- pymupdf==1.22.5
33
- python-docx==1.1.0
34
- pdf2image==1.17.0
 
 
35
 
36
- # UTILITIES (Original)
37
- numpy==1.24.3
38
- tqdm==4.65.0
39
- langdetect==1.0.9
40
- protobuf==3.20.3
41
 
42
- # GRADIO (Original)
43
- gradio==3.35.2
44
- fastapi==0.95.2
45
- uvicorn==0.22.0
46
- python-multipart==0.0.6
 
 
 
 
 
 
1
+ # Core ML & HF
2
+ transformers>=4.30.0
3
+ diffusers>=0.19.0
4
+ accelerate>=0.20.0
5
+ huggingface-hub>=0.13.0
6
+ safetensors
7
 
8
+ # Torch (leave pip to pick correct wheel for the environment)
9
+ torch>=2.0.0
10
+ torchvision>=0.15.0
11
+ torchaudio>=2.0.0
 
 
 
 
12
 
13
+ # Gradio for UI
14
+ gradio>=3.35.0
 
 
 
 
 
15
 
16
+ # Audio
17
+ librosa>=0.9.2
18
+ soundfile>=0.12.1
19
+ SpeechRecognition>=3.8.1
20
+ gTTS>=2.3.1
21
+ webrtcvad>=2.0.10
22
+ pydub>=0.25.1
23
 
24
+ # Image & video
25
+ Pillow>=9.5.0
26
+ opencv-python-headless>=4.7.0
27
+ imageio>=2.31.1
28
+ imageio-ffmpeg>=0.4.8
29
+ moviepy>=1.0.3
30
 
31
+ # Documents
32
+ pymupdf>=1.22.0
33
+ python-docx>=0.8.11
34
+ pdf2image>=1.16.0
 
35
 
36
+ # Utilities
37
+ numpy>=1.24.0
38
+ tqdm
39
+ langdetect
40
+ protobuf>=3.20.0
41
+ huggingface-hub
42
+
43
+ # Optional but often useful
44
+ sentencepiece
45
+ tokenizers