Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +26 -1
requirements.txt
CHANGED
@@ -1 +1,26 @@
|
|
1 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# PyTorch and related libraries
|
2 |
+
torch>=1.10.0
|
3 |
+
transformers>=4.21.0
|
4 |
+
diffusers>=0.10.0
|
5 |
+
|
6 |
+
# Gradio for the web UI
|
7 |
+
gradio>=3.16.2
|
8 |
+
|
9 |
+
# Object detection
|
10 |
+
ultralytics>=8.0.0
|
11 |
+
|
12 |
+
# Image processing
|
13 |
+
opencv-python>=4.5.3.56
|
14 |
+
Pillow>=9.0.0
|
15 |
+
numpy>=1.21.0
|
16 |
+
|
17 |
+
# Wikipedia lookup
|
18 |
+
wikipedia>=1.4.0
|
19 |
+
|
20 |
+
# Upscaling model dependencies
|
21 |
+
realesrgan>=0.3.0
|
22 |
+
basicsr>=1.3.2
|
23 |
+
|
24 |
+
# Additional utilities
|
25 |
+
requests>=2.26.0
|
26 |
+
huggingface_hub>=0.10.1
|