Parthebhan commited on
Commit
8b00c38
·
verified ·
1 Parent(s): 7a51382

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -26,6 +26,7 @@ bmi = gr.Interface(fn=calculate_bmi,
26
  gr.Slider(0,130, label="Weight in kg")],
27
  outputs = "text",
28
  title="BMI Calculator in Metrics",
29
- description="Calculate your BMI (Body Mass Index) based on height **(cm)** and weight **(kg)**.\n\nDeveloped by: Parthebhan Pari \n\n**BMI Categories:**\n- Underweight = <18.5\n- Normal weight = 18.5–24.9\n- Overweight = 25–29.9\n- Obesity = BMI of 30 or greater"
 
30
  )
31
- bmi.launch(share=True,theme="dark")
 
26
  gr.Slider(0,130, label="Weight in kg")],
27
  outputs = "text",
28
  title="BMI Calculator in Metrics",
29
+ description="Calculate your BMI (Body Mass Index) based on height **(cm)** and weight **(kg)**.\n\nDeveloped by: Parthebhan Pari \n\n**BMI Categories:**\n- Underweight = <18.5\n- Normal weight = 18.5–24.9\n- Overweight = 25–29.9\n- Obesity = BMI of 30 or greater",
30
+ theme="dark"
31
  )
32
+ bmi.launch(share=True)