Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
trl-lib
/
train
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d60c0fe
train
/
app.py
qgallouedec
HF Staff
gradio
c8eb842
15 days ago
raw
Copy download link
history
blame
Safe
137 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
).launch()