Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
FFatih
/
SAE-GPT2-RECETTE
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fab55d2
SAE-GPT2-RECETTE
/
app.py
FFatih
Synchronisation Fatih
fab55d2
about 1 year ago
raw
Copy download link
history
blame
Safe
155 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()