Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def con(input):
|
4 |
-
|
5 |
-
return
|
6 |
|
7 |
-
demo = gr.Interface(fn=con, inputs="
|
8 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
def con(input):
|
4 |
+
f = input * 9/5 + 32
|
5 |
+
return f
|
6 |
|
7 |
+
demo = gr.Interface(fn=con, inputs="number", outputs="text")
|
8 |
demo.launch()
|