Spaces:
Runtime error
Runtime error
File size: 272 Bytes
5ce9bd4 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
from model import Model
import gradio_utils
def create_demo(model: Model):
with gr.Blocks() as demo:
with gr.Row():
gr.Markdown('## Text, Canny-Edge and DreamBooth Conditional Video Generation (coming soon)')
return demo
|