Spaces:
Running
Running
import gradio as gr | |
def bmi(name, height, weight): | |
bmi_val= weight / (height ** 2) | |
return f"Your Bmi is {str(bmi_val)}!" | |
interface = gr.Interface(fn = bmi, inputs = ["text", gr.inputs.Slider(0,100,label = "height"),gr.inputs.Slider(0,100,label = 'Weight')], | |
outputs = ['text'], | |
examples = [['R.Aravindan',170,89],['R.Bro Your name',170,89]], | |
theme = 'darkhuggingface', | |
title = "BMI CALCULATOR", | |
description = "Use this example and try to run the same example by clicking that").launch(inline = False) |