Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -80,7 +80,7 @@ with gr.Blocks() as cyclone_predictor:
|
|
| 80 |
placeholder="Enter previous 3-hour lat/lon (e.g., 15.54,90.64)",
|
| 81 |
label="Previous 3-hour Latitude/Longitude"
|
| 82 |
)
|
| 83 |
-
previous_speed = gr.Number(label="Previous 3-hour Speed"
|
| 84 |
previous_timestamp = gr.Textbox(
|
| 85 |
placeholder="Enter previous 3-hour timestamp (e.g., 2024,10,23,0)",
|
| 86 |
label="Previous 3-hour Timestamp (year, month, day, hour)"
|
|
@@ -90,7 +90,7 @@ with gr.Blocks() as cyclone_predictor:
|
|
| 90 |
placeholder="Enter present 3-hour lat/lon (e.g., 15.71,90.29)",
|
| 91 |
label="Present 3-hour Latitude/Longitude"
|
| 92 |
)
|
| 93 |
-
present_speed = gr.Number(label="Present 3-hour Speed"
|
| 94 |
present_timestamp = gr.Textbox(
|
| 95 |
placeholder="Enter present 3-hour timestamp (e.g., 2024,10,23,3)",
|
| 96 |
label="Present 3-hour Timestamp (year, month, day, hour)"
|
|
|
|
| 80 |
placeholder="Enter previous 3-hour lat/lon (e.g., 15.54,90.64)",
|
| 81 |
label="Previous 3-hour Latitude/Longitude"
|
| 82 |
)
|
| 83 |
+
previous_speed = gr.Number(label="Previous 3-hour Speed") # Removed placeholder
|
| 84 |
previous_timestamp = gr.Textbox(
|
| 85 |
placeholder="Enter previous 3-hour timestamp (e.g., 2024,10,23,0)",
|
| 86 |
label="Previous 3-hour Timestamp (year, month, day, hour)"
|
|
|
|
| 90 |
placeholder="Enter present 3-hour lat/lon (e.g., 15.71,90.29)",
|
| 91 |
label="Present 3-hour Latitude/Longitude"
|
| 92 |
)
|
| 93 |
+
present_speed = gr.Number(label="Present 3-hour Speed") # Removed placeholder
|
| 94 |
present_timestamp = gr.Textbox(
|
| 95 |
placeholder="Enter present 3-hour timestamp (e.g., 2024,10,23,3)",
|
| 96 |
label="Present 3-hour Timestamp (year, month, day, hour)"
|