Add DLWP (Deep Learning Weather Prediction) for Weather Forecasting#35
Open
cristian-victoria wants to merge 11 commits intoLabRAI:mainfrom
Open
Add DLWP (Deep Learning Weather Prediction) for Weather Forecasting#35cristian-victoria wants to merge 11 commits intoLabRAI:mainfrom
cristian-victoria wants to merge 11 commits intoLabRAI:mainfrom
Conversation
…the pyhazards framework
…s model to stay consistent with the outline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR implements DLWP, a U-Net-based model for global weather forecasting on cubed-sphere grids, as described in Weyn et al. (2020, 2021).
Reference:
Weyn et al. (2021) - Sub-Seasonal Forecasting
Weyn et al. (2020) - Cubed Sphere CNNs
Changes
New Files
pyhazards/models/dlwp.py- Core implementationDLWP class- U-Net architecturedlwp_builder()- builder functionDoubleConv,Down,Up- blocksWeatherMetrics class- RMSE, ACC, Bias metricsdocs/source/modules/models_dlwp.rst- Full documentationModified Files
pyhazards/models/__init__.py- Added imports and registrationdocs/source/pyhazards_models.rst- Added model to indexSmoke Testing
Results:
Paper Parity Note
This implementation follows the WaveCastNet paper with these intentional differences:
Identical to Paper
Architecture:
Data Format:
Training & Evaluation:
PyHazards-Specific Adaptations
Future Work
These omissions don't affect core functionality and can be added later if needed.