fc_baselines.py - eval_baselines requires different arguments for different baseline methods -> can't test several baselines at once (code fails)
'Under the "Evaluate All" section, with NUM_PRED = 7 for example,
- For 'sarimax': the second argument of eval_baseline must be set to "y_val[:NUM_PRED,:,target_column]", or the function fails because of mismatched sizes
- However, for 'simple-naive', 'seasonal-naive', or 'naive-stl' : the second argument of eval_baseline must be set to "y_val[:,:,target_column]", (without NUM_PRED) or the function fails because of mismatched sizes
- Basically, as far as I can tell, it is impossible to use 1 setting and run all the different baseline types in one go.