DHDRL commited on
Commit
9089573
·
verified ·
1 Parent(s): 47e6dcb

Update train_curriculum.py

Browse files
Files changed (1) hide show
  1. train_curriculum.py +5 -0
train_curriculum.py CHANGED
@@ -702,6 +702,11 @@ def train_phase(
702
  if real_data_noise_scale is not None:
703
  config_kwargs["noise_scale"] = real_data_noise_scale
704
  config = ForecastConfig(**config_kwargs)
 
 
 
 
 
705
  phase.risk_weights.attach_to_config(config)
706
 
707
  if config.real_data_pkl_path:
 
702
  if real_data_noise_scale is not None:
703
  config_kwargs["noise_scale"] = real_data_noise_scale
704
  config = ForecastConfig(**config_kwargs)
705
+ # Train cube v4 TIGGE control: precip_mm length 15.
706
+ # Holdout persistence rows are still horizon 30. Do NOT copy this
707
+ # into evaluate_checkpoint_real / backtest_indonesia.
708
+ if config.real_data_pkl_path:
709
+ config.horizon_days = 15
710
  phase.risk_weights.attach_to_config(config)
711
 
712
  if config.real_data_pkl_path: