Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kawthar12h
/
Temp
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
13397a1
Temp
/
app.py
Kawthar12h
Create app.py
13397a1
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
141 Bytes
import
gradio
as
gr
def
greet
(
input
):
return
input
*
9
/
2
+
32
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()