File size: 148 Bytes
c1471ac
 
 
ee2224b
8e2cfd3
17e8614
c1471ac
bc883e8
1
2
3
4
5
6
7
8
import gradio as gr

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

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