You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the documentation above, the function create_lagged_component_names is supposed to return the names of the target columns. However, when I run the function below, I get back an empty list:
This what my target_fit, past_cov_fit and future_cov_fit looks like:
As far as I understand the last n (forecast_horizon) names in lagged_data_component_names[0][-forecast_horizon:] should be equivalent to the output in lagged_data_component_names[1]?
Since my target name is edm_power_feed_in_diff and my output_chunk_length=3, I would expect create_lagged_component_names[1] to return [edm_power_feed_in_diff_hrz1, edm_power_feed_in_diff_hrz2, edm_power_feed_in_diff_hrz3] ?
The text was updated successfully, but these errors were encountered:
From the documentation above, the function create_lagged_component_names is supposed to return the names of the target columns. However, when I run the function below, I get back an empty list:
This what my target_fit, past_cov_fit and future_cov_fit looks like:
As far as I understand the last n (forecast_horizon) names in
lagged_data_component_names[0][-forecast_horizon:]
should be equivalent to the output inlagged_data_component_names[1]
?Since my target name is
edm_power_feed_in_diff
and myoutput_chunk_length=3
, I would expect create_lagged_component_names[1] to return[edm_power_feed_in_diff_hrz1, edm_power_feed_in_diff_hrz2, edm_power_feed_in_diff_hrz3]
?The text was updated successfully, but these errors were encountered: