Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -19,10 +19,7 @@ def calculate_bmi(height_cm, weight_kg):
|
|
19 |
bmi = gr.Interface(fn=calculate_bmi,
|
20 |
inputs=['number','number'],
|
21 |
outputs="text", title="BMI Calculator in Metrics",
|
22 |
-
description="Calculate your BMI (Body Mass Index) based on height **(cm)** and weight **(kg)**.\n\nDeveloped by: Parthebhan Pari \n\
|
23 |
-
Underweight = <18.5
|
24 |
-
Normal weight = 18.5–24.9
|
25 |
-
Overweight = 25–29.9
|
26 |
-
Obesity = BMI of 30 or greater "
|
27 |
)
|
|
|
28 |
bmi.launch(share=True)
|
|
|
19 |
bmi = gr.Interface(fn=calculate_bmi,
|
20 |
inputs=['number','number'],
|
21 |
outputs="text", title="BMI Calculator in Metrics",
|
22 |
+
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"
|
|
|
|
|
|
|
|
|
23 |
)
|
24 |
+
|
25 |
bmi.launch(share=True)
|