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
3v324v23
commited on
Nov 8, 2023
Commit
0a54cb2
•
1 Parent(s):
25c1770
Add application file
Browse files
Files changed (2)
hide
show
app,py
+0
-0
app.py
+9
-0
app,py
DELETED
Viewed
File without changes
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!!"
6
+
7
+
8
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
iface.launch()