Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
molher
/
TorchFakes
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3876f09
TorchFakes
/
app.py
molher
Update app.py
3876f09
almost 3 years ago
raw
Copy download link
history
blame
136 Bytes
import
gradio
as
gr
def
saludar
(
nombre
):
return
f'Hola
{nombre}
'
inf=gr.Interface(saludar,inputs=
'text'
,outputs=
'text'
)
inf.launch()