I've been getting a warning when I'm using TemporalFusionTransformer, indicating missing timestamps. It's coming from
|
"Missing timestamps detected. To avoid error with estimators, set estimator list to ['prophet']. " |
. It Seems like perhaps it's checking the whole dataset as a single time series, rather than each time series individually. I think that adding logic to _validate_ts_data() to check if the task is 'ts_forecast_panel' and using the group_ids passed when fit() is called could be a solution.
I've been getting a warning when I'm using TemporalFusionTransformer, indicating missing timestamps. It's coming from
FLAML/flaml/automl.py
Line 1033 in f97c233