Scaling Data
#2323
|
I have manually scaled a dataframe including features in GLuonTS with a scaling rule I selected. Then I ran the training and forecasting process. Now I have a forecast_object from the package gluonts.model.forecast module and a "test object" where the comparison values are. But now I have unnormalise this values again in order to draw the forecast and its evaluation. I wonder if anyone knows how to do this, i.e. how to manually unnormalise these two objects again before I produce error metrics and a drawing with the corresponding GluonTS functions. |
Answered by
Msaleh87
Sep 27, 2022
Replies: 1 comment 1 reply
|
In your estimator, you could have could enable scaling by: |
1 reply
Answer selected by
MarleneBs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In your estimator, you could have could enable scaling by:
scaling = TrueYou don't have to do this manually.