TenPoisk
commited on
Commit
·
7103f52
1
Parent(s):
f7b53f5
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,8 @@
|
|
1 |
-
import
|
2 |
-
|
3 |
-
from diffusers.utils import export_to_video
|
4 |
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
video_frames = pipe(prompt, num_inference_steps=40, height=320, width=576, num_frames=24).frames
|
11 |
-
video_path = export_to_video(video_frames)
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import tkinter
|
|
|
3 |
|
4 |
+
description = """<div>
|
5 |
+
PICSCORE BETA-1
|
6 |
+
</div>
|
7 |
+
"""
|
8 |
+
gr.Interface.load("cerspense/zeroscope_v2_576w", description=description).launch()
|
|
|
|