Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
EuroPython2022
/
machinetestspace
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
stasguy
commited on
Jul 17, 2022
Commit
58757bb
·
1 Parent(s):
0c989ba
Create new file
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
def update(name):
4
+
return f"Welcome to Gradio, {name}!"
5
+
6
+
7
+
gr.Interface.load('huggingface/distilgpt2').launch()
8
+
9
+