Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Zitang
/
Self-attention-based-V1MT-motion-model
like
10
Running
on
Zero
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0a54cb2
Self-attention-based-V1MT-motion-model
/
app.py
3v324v23
Add application file
0a54cb2
about 1 year ago
raw
Copy download link
history
blame
Safe
152 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()