From ae083dda72fed1763c43c0aa2d371572d8839f73 Mon Sep 17 00:00:00 2001 From: Ryuta Yoshimatsu <107132414+ryuta-yoshimatsu@users.noreply.github.com> Date: Fri, 31 Jan 2025 06:50:19 +0100 Subject: [PATCH] Update global_daily_m5.py --- examples/m5-examples/global_daily_m5.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/m5-examples/global_daily_m5.py b/examples/m5-examples/global_daily_m5.py index 5479ad8..5c28f69 100644 --- a/examples/m5-examples/global_daily_m5.py +++ b/examples/m5-examples/global_daily_m5.py @@ -58,7 +58,7 @@ spark.sql(f""" select * from {catalog}.{db}.daily_evaluation_output order by unique_id, model, backtest_window_start_date - limit 1000 + limit 10 """) ) @@ -66,7 +66,7 @@ display(spark.sql(f""" select * from {catalog}.{db}.daily_scoring_output - order by unique_id, model, ds limit 1000 + order by unique_id, model, ds limit 10 """)) # COMMAND ----------