File size: 162 Bytes
c1471ac
 
 
ee2224b
8e2cfd3
17e8614
c1471ac
8470f74
c1471ac
1
2
3
4
5
6
7
8
9
import gradio as gr

def greet(input):
    f =float(input)
    
    return f * 9/5 + 3

demo = gr.Interface(fn=greet, inputs='text', outputs='text')
demo.launch()