-
Notifications
You must be signed in to change notification settings - Fork 469
[FEAT] Support normalization for static exogenous features #1406
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
Conversation
|
|
marcopeix
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR, really great work! I have just a small adjustment I would suggest to the docstring. Thanks!
|
Hi @marcopeix, all checks passed, but the |
@JuditHalperin , no nothing you can do on your end, this is entirely on us! We will get this sorted out and merged! |
This PR adds normalization for static exogenous features via
local_static_scaler_typeinNeuralForecast, extending the existing normalization framework that already supportslocal_scaler_typefor temporal features.Motivation
Static features can vary widely in magnitude (e.g., a static feature such as building volume, where different buildings might have values of 500, 1,000, and 20,000). Without normalization, these differences can:
Unlike temporal inputs, statics are constant per entity and do not vary by window, so only local scaling is meaningful.
Implementation
Added new argument: