Spaces:
Sleeping
Sleeping
Updated the validation output look
Browse files
app.py
CHANGED
|
@@ -1256,7 +1256,16 @@ with gr.Blocks(title="Time Series Forecasting App", theme=theme) as app:
|
|
| 1256 |
use_autoets, use_autoarima, use_timegpt, finetune_loss, confidence_level,
|
| 1257 |
future_horizon
|
| 1258 |
],
|
| 1259 |
-
outputs=[
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1260 |
)
|
| 1261 |
|
| 1262 |
if __name__ == "__main__":
|
|
|
|
| 1256 |
use_autoets, use_autoarima, use_timegpt, finetune_loss, confidence_level,
|
| 1257 |
future_horizon
|
| 1258 |
],
|
| 1259 |
+
outputs=[
|
| 1260 |
+
eval_output,
|
| 1261 |
+
validation_output.round({
|
| 1262 |
+
col: 2
|
| 1263 |
+
for col in eval_output.columns[3:]}),
|
| 1264 |
+
validation_plot,
|
| 1265 |
+
forecast_output,
|
| 1266 |
+
forecast_plot,
|
| 1267 |
+
export_files,
|
| 1268 |
+
message_output]
|
| 1269 |
)
|
| 1270 |
|
| 1271 |
if __name__ == "__main__":
|