Spaces:
Sleeping
Sleeping
import gradio as gr | |
def celsius_to_fahrenheit(celsius): | |
return celsius * 9/5 + 32 | |
demo = gr.Interface(fn=celsius_to_fahrenheit, inputs="number", outputs="text") | |
demo.launch() | |