Update app.py
Browse files
app.py
CHANGED
|
@@ -61,7 +61,7 @@ def process_csv(file):
|
|
| 61 |
# Create the Gradio interface
|
| 62 |
with gr.Blocks() as demo:
|
| 63 |
gr.Markdown("# Personal Health Tracker")
|
| 64 |
-
gr.Markdown("### Upload your CSV file to calculate BMI and daily calorie needs for each person.")
|
| 65 |
|
| 66 |
# File Upload
|
| 67 |
file_upload = gr.File(label="Upload CSV File", type="filepath")
|
|
|
|
| 61 |
# Create the Gradio interface
|
| 62 |
with gr.Blocks() as demo:
|
| 63 |
gr.Markdown("# Personal Health Tracker")
|
| 64 |
+
gr.Markdown("### Upload your CSV file to calculate BMI and daily calorie needs for each person. format should be: Name,Age,Gender,Height_cm,Weight_kg,Activity_Level")
|
| 65 |
|
| 66 |
# File Upload
|
| 67 |
file_upload = gr.File(label="Upload CSV File", type="filepath")
|