Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
from video_diffusion.damo.damo_text2_video import DamoText2VideoGenerator
|
4 |
from video_diffusion.inpaint_zoom.zoom_in_app import StableDiffusionZoomIn
|
5 |
-
from video_diffusion.inpaint_zoom.zoom_out_app import StableDiffusionZoomOut
|
6 |
-
from video_diffusion.stable_diffusion_video.stable_video_text2video import StableDiffusionText2VideoGenerator
|
7 |
-
from video_diffusion.tuneavideo.tuneavideo_text2video import TunaVideoText2VideoGenerator
|
8 |
-
from video_diffusion.zero_shot.zero_shot_text2video import ZeroShotText2VideoGenerator
|
9 |
|
10 |
|
11 |
def diffusion_app():
|
@@ -28,19 +28,19 @@ def diffusion_app():
|
|
28 |
)
|
29 |
with gr.Row():
|
30 |
with gr.Column():
|
31 |
-
with gr.Tab("Stable Diffusion Video"):
|
32 |
-
|
33 |
-
with gr.Tab("Tune-a-Video"):
|
34 |
-
|
35 |
-
with gr.Tab("Stable Infinite Zoom"):
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
with gr.Tab("Damo Text2Video"):
|
41 |
-
|
42 |
-
with gr.Tab("Zero Shot Text2Video"):
|
43 |
-
|
44 |
|
45 |
app.queue(concurrency_count=1)
|
46 |
app.launch(debug=True, enable_queue=True)
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
#from video_diffusion.damo.damo_text2_video import DamoText2VideoGenerator
|
4 |
from video_diffusion.inpaint_zoom.zoom_in_app import StableDiffusionZoomIn
|
5 |
+
#from video_diffusion.inpaint_zoom.zoom_out_app import StableDiffusionZoomOut
|
6 |
+
#from video_diffusion.stable_diffusion_video.stable_video_text2video import StableDiffusionText2VideoGenerator
|
7 |
+
#from video_diffusion.tuneavideo.tuneavideo_text2video import TunaVideoText2VideoGenerator
|
8 |
+
#from video_diffusion.zero_shot.zero_shot_text2video import ZeroShotText2VideoGenerator
|
9 |
|
10 |
|
11 |
def diffusion_app():
|
|
|
28 |
)
|
29 |
with gr.Row():
|
30 |
with gr.Column():
|
31 |
+
#with gr.Tab("Stable Diffusion Video"):
|
32 |
+
# StableDiffusionText2VideoGenerator.app()
|
33 |
+
#with gr.Tab("Tune-a-Video"):
|
34 |
+
# TunaVideoText2VideoGenerator.app()
|
35 |
+
#with gr.Tab("Stable Infinite Zoom"):
|
36 |
+
# with gr.Tab("Zoom In"):
|
37 |
+
StableDiffusionZoomIn.app()
|
38 |
+
# with gr.Tab("Zoom Out"):
|
39 |
+
# StableDiffusionZoomOut.app()
|
40 |
+
#with gr.Tab("Damo Text2Video"):
|
41 |
+
# DamoText2VideoGenerator.app()
|
42 |
+
#with gr.Tab("Zero Shot Text2Video"):
|
43 |
+
# ZeroShotText2VideoGenerator.app()
|
44 |
|
45 |
app.queue(concurrency_count=1)
|
46 |
app.launch(debug=True, enable_queue=True)
|