Spaces:
Runtime error
Runtime error
Upload 3 files
Browse files- README.md +7 -14
- app.py +0 -0
- requirements.txt +21 -22
README.md
CHANGED
|
@@ -1,21 +1,14 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: gradio
|
| 7 |
-
sdk_version: 5.
|
| 8 |
app_file: app.py
|
|
|
|
| 9 |
license: apache-2.0
|
| 10 |
-
short_description:
|
| 11 |
-
tags:
|
| 12 |
-
- Image-to-Video
|
| 13 |
-
- Image-2-Video
|
| 14 |
-
- Img-to-Vid
|
| 15 |
-
- Img-2-Vid
|
| 16 |
-
- language models
|
| 17 |
-
- LLMs
|
| 18 |
-
suggested_hardware: zero-a10g
|
| 19 |
---
|
| 20 |
|
| 21 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: RealESRGAN Pytorch
|
| 3 |
+
emoji: 🔥📹
|
| 4 |
+
colorFrom: indigo
|
| 5 |
+
colorTo: red
|
| 6 |
sdk: gradio
|
| 7 |
+
sdk_version: 5.37.0
|
| 8 |
app_file: app.py
|
| 9 |
+
pinned: true
|
| 10 |
license: apache-2.0
|
| 11 |
+
short_description: User Friendly Image & Video Upscaler!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
requirements.txt
CHANGED
|
@@ -1,23 +1,22 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
requests==2.32.4
|
| 10 |
-
torchsde==0.2.6
|
| 11 |
-
torch>=2.0.0
|
| 12 |
torchvision
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
|
|
|
|
|
|
|
|
| 1 |
+
pydantic==2.10.6 # To avoid the message "No API found" or "Internal server error"
|
| 2 |
+
|
| 3 |
+
gradio==4.28.3
|
| 4 |
+
torch
|
| 5 |
+
numpy
|
| 6 |
+
opencv-python-headless
|
| 7 |
+
setuptools
|
| 8 |
+
Pillow
|
|
|
|
|
|
|
|
|
|
| 9 |
torchvision
|
| 10 |
+
addict
|
| 11 |
+
future
|
| 12 |
+
lmdb
|
| 13 |
+
pyyaml
|
| 14 |
+
requests
|
| 15 |
+
scikit-image
|
| 16 |
+
scipy
|
| 17 |
+
tb-nightly
|
| 18 |
+
tqdm
|
| 19 |
+
yapf
|
| 20 |
+
psutil
|
| 21 |
+
ffmpeg-python
|
| 22 |
+
huggingface_hub
|