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...
molher
commited on
Jun 4, 2022
Commit
0673028
·
1 Parent(s):
321969c
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
def saludar(nombre):
4
+
return f'Hola {nombre}'
5
+
inf=gr.Interface(saludar,inputs=text,outputs='text'
6
+
7
+
inf.launch()