Skip to content

Commit

Permalink
Update global_daily_m5.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuta-yoshimatsu authored Jan 31, 2025
1 parent 2b0cfc3 commit ae083dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/m5-examples/global_daily_m5.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@
spark.sql(f"""
select * from {catalog}.{db}.daily_evaluation_output
order by unique_id, model, backtest_window_start_date
limit 1000
limit 10
""")
)

# COMMAND ----------

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 ----------
Expand Down

0 comments on commit ae083dd

Please sign in to comment.