Evgueni Poloukarov commited on
Commit
ac3c6b4
·
1 Parent(s): 8e23e5d

debug: add diagnostic logging to verify code version and columns

Browse files
src/forecasting/chronos_inference.py CHANGED
@@ -172,6 +172,7 @@ class ChronosInferencePipeline:
172
 
173
  # Get target column name (note: dynamic_forecast renames it to 'target')
174
  target_col = 'target'
 
175
 
176
  # Extract context values
177
  context = context_data[target_col].values
 
172
 
173
  # Get target column name (note: dynamic_forecast renames it to 'target')
174
  target_col = 'target'
175
+ print(f"[DEBUG v1.0.2] Using target_col='{target_col}', columns available: {list(context_data.columns)}", flush=True)
176
 
177
  # Extract context values
178
  context = context_data[target_col].values