Malaji71 commited on
Commit
b5c60a9
·
verified ·
1 Parent(s): 24c3479

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +11 -21
requirements.txt CHANGED
@@ -1,24 +1,6 @@
1
- # BAGEL 7B dependencies - Exact from working implementation
2
- decord==0.6.0
3
- einops==0.8.1
4
- huggingface_hub==0.29.1
5
- matplotlib==3.7.0
6
- numpy==1.24.4
7
- opencv_python==4.7.0.72
8
- pyarrow==11.0.0
9
- PyYAML==6.0.2
10
- requests==2.32.3
11
- safetensors==0.4.5
12
- scipy==1.10.1
13
- sentencepiece==0.1.99
14
- torch==2.5.1
15
- torchvision==0.20.1
16
- transformers==4.49.0
17
- accelerate>=0.34.0
18
- wandb
19
-
20
- # Gradio UI framework
21
  gradio==5.33.2
 
22
 
23
  # Hugging Face Spaces support
24
  spaces==0.37.0
@@ -26,4 +8,12 @@ spaces==0.37.0
26
  # Image processing
27
  pillow==10.0.1
28
 
29
- # Flash attention will be installed dynamically in app.py
 
 
 
 
 
 
 
 
 
1
+ # Core dependencies for API-based approach
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  gradio==5.33.2
3
+ gradio_client
4
 
5
  # Hugging Face Spaces support
6
  spaces==0.37.0
 
8
  # Image processing
9
  pillow==10.0.1
10
 
11
+ # Essential utilities
12
+ numpy==1.24.3
13
+ requests==2.31.0
14
+
15
+ # Basic ML support (lightweight)
16
+ torch==2.1.0
17
+ torchvision==0.16.0
18
+
19
+ # No heavy BAGEL dependencies needed - using API calls!