-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to use future_time_series and finetune_forecast_model? #164
Comments
How was "finetune_forecast_model" finetuned? |
I just followed the exogen tutorial
|
@gabriel-joy Just checking in, were you able to resolve the issue above? There have been some changes in the behavior in the forecasting pipeline and I would like to see if they resolve the issue. You can now pass the preprocessor to the forecasting pipeline and it will manage the scaling/inverse scaling appropriately. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Whan I try to introduce known data from the future in the forecast I get higher values, I guess I miss something, Please advise.
future_data = pd.read_csv(
"~/Downloads/ebstestmures-futures-20241024.csv",
parse_dates=[timestamp_column],
)
pipeline = TimeSeriesForecastingPipeline(
model=finetune_forecast_model,
timestamp_column=timestamp_column,
target_columns=["far_ea"],
observable_columns=["DayIndex","Hour","temperature","prod_ea"],
future_time_series=future_data,
explode_forecasts=True,
inverse_scale_outputs=True,
freq="1h",
id_columns=[],
device="cuda"
)
fewshots_forecast = pipeline(data.iloc[-context_length:].copy())
without future_time_series data are in the range:
with future_time_series data included values are way too high:
The text was updated successfully, but these errors were encountered: