-
Notifications
You must be signed in to change notification settings - Fork 82
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
cdsapi: ERA5 total precipitation accumulation #23
Comments
Yeah, I agree with you. Also, in the GraphCast paper, the authors also mentioned that the precipitation data needs to be accumulated from the past six hours. So, have you tried to modify the code or figured out how to prepare the training data at least? (I plan to train the model from scratch if the provided weights file cannot be utilized) |
cdsapi is rather straight forward to use, you can refer to NVIDIA's download demo here and here. For precipitation specifically, I just fetch data from all 6 previous hours and add them together, similar to the approach in the ECMWF demo. |
Thanks for answering! I remember you mentioned that the inconsistency in model architecture between huggingface checkpoint and this repository in another issue post. Have you addressed that problem and run the project on the GPU cluster? |
No problem. Regarding the model weights, I wouldn't recommend to try to modify the source code to match the weights provided. |
In
data_factory/download_era5.py
, it downloads 6-hour total precipitation by specifying 6 hour intevals.But after reviewing the data and reading the ERA5 cdsapi demo, It seems that the api only downloads 1-hour accumlated precipitation, for multi-hour accumulated precipitation, one have to download all the previous hours and perform accumulation afterwards.
The text was updated successfully, but these errors were encountered: