Temp / app.py
Kawthar12h's picture
Create app.py
13397a1 verified
raw
history blame contribute delete
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()