File size: 535 Bytes
fecf978
c22294d
 
 
 
 
 
a249b69
 
c22294d
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr
def bmi(name, height,weight,feeling):
    bmi_val = weight / ((height/100) ** 2)
    txt_feeling = "Happy" if feeling else "Sad"
    return "Welcome " + name + " ...\n Your BMI Value is " + str(bmi_val),txt_feeling
interface = gr.Interface(fn=bmi,
                         inputs=["text", gr.Slider(0,200,label="Height in Centi Meters"),
                                 gr.Slider(0,200,label="Weight in Kgs"),gr.Checkbox("Your Feeling Today"
)],
                         outputs=["text","text"])
interface.launch()