Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
RanAlh443
/
test4
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test4
/
app.py
RanAlh443
Update app.py
564a98f
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
177 Bytes
import
gradio
as
gr
def
convertToF
(
input
):
Cels=
float
(
input
)
return
(Cels *
9
/
5
) +
32
demo = gr.Interface(fn=convertToF, inputs=
"text"
, outputs=
"text"
)
demo.launch()