Spaces:
Running
Running
irah23
commited on
Commit
·
360d161
1
Parent(s):
edec341
update space
Browse files- README.md +2 -12
- requirements.txt +2 -1
README.md
CHANGED
@@ -1,13 +1,3 @@
|
|
1 |
-
|
2 |
-
title: Stable Video Demo
|
3 |
-
emoji: 🖼
|
4 |
-
colorFrom: purple
|
5 |
-
colorTo: red
|
6 |
-
sdk: gradio
|
7 |
-
sdk_version: 5.25.2
|
8 |
-
app_file: app.py
|
9 |
-
pinned: false
|
10 |
-
short_description: This is the text based video generation
|
11 |
-
---
|
12 |
|
13 |
-
|
|
|
1 |
+
# Text to Video Generator using SDXL + Stable Video Diffusion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
+
This Hugging Face Space uses Stability AI's SDXL for generating an image from text, and then Stable Video Diffusion (SVD) to turn that image into a short video.
|
requirements.txt
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
torch
|
|
|
2 |
transformers
|
3 |
-
diffusers
|
4 |
accelerate
|
5 |
gradio
|
|
|
|
1 |
torch
|
2 |
+
diffusers[torch]
|
3 |
transformers
|
|
|
4 |
accelerate
|
5 |
gradio
|
6 |
+
imageio
|