Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
PAIR
/
Text2Video-Zero
like
376
Runtime error
App
Files
Files
Community
35
3b371bc
Text2Video-Zero
/
app_pose.py
lev1
Comming Soon
c88e7ae
over 1 year ago
raw
Copy download link
history
blame
Safe
244 Bytes
import
gradio
as
gr
import
os
from
model
import
Model
def
create_demo
(
model: Model
):
with
gr.Blocks()
as
demo:
with
gr.Row():
gr.Markdown(
'## Text and Pose Conditional Video Generation (coming soon)'
)
return
demo