-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
Mean irradience data #112
Comments
Looking at the following variables
|
I think ive managed a algorihtm to change back to average hour, rather than mean across forecast horizon hours_steps = np.array(dd.step.values/ 3600000000000)
hours_steps_diff = hours_steps[1:] - hours_steps[:-1]
dd_cum_sum = dd*hours_steps[1:93,None,None]
dd_mean= dd_cum_sum.diff("step") / hours_steps_diff[:,None,None] Might need to add the first |
peterdudfield
added a commit
that referenced
this issue
Apr 24, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We've noticed that some of the Icon DWD Huggingface Irradience data is the mean, not the hourly average
Detailed Description
Context
Our model is trained on hourly average data, so this may casue the evaluation to underperform
Possible Implementation
The text was updated successfully, but these errors were encountered: