Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
amsterdamNLP
/
attention-rollout
like
3
Running
App
Files
Files
Community
2
Martijn van Beers
commited on
Jul 14, 2022
Commit
e8c51f1
•
1 Parent(s):
30c0a90
hello world
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio
2
+
3
+
def greet(name):
4
+
return f"Hello {name}. Check back soon for real content"
5
+
6
+
iface = gradio.Interface(fn=greet, inputs="text", outputs="text")
7
+
iface.launch()