Updates for 128x128, optimizer config#309
Merged
sgreenbury merged 21 commits intomainfrom Apr 2, 2026
Merged
Conversation
sgreenbury
commented
Apr 2, 2026
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 pull request introduces several new experiment configuration files for different autoencoder and ensemble probabilistic diffusion (EPD) models, expands and updates datamodule configurations, and makes improvements to optimizer and dataloader settings. The changes enhance experiment reproducibility, flexibility in model training, and compatibility with various distributed training setups.
Experiment Configuration Additions and Enhancements:
Datamodule and Dataset Configuration Updates:
conditioned_navier_stokes_128,gpe_laser_only_wake_128, andshallow_water2d_128, and updated the data path forgpe_laser_only_waketo use a new dataset version. These changes support experiments on new or updated datasets with consistent normalization and loader settings. [1] [2] [3] [4]Dataloader Performance Improvements:
pin_memory=Truein all DataLoader instantiations withinSpatioTemporalDataModule, which can improve data transfer performance when using GPUs. [1] [2] [3] [4] [5]Optimizer and Training Infrastructure Improvements:
adamw_half.yamlfor compatibility with external projects, and provided detailed comments for scheduler control inadamw.yaml, allowing more flexibility in learning rate scheduling. [1] [2]gpus_per_node,tasks_per_node, andntasksfor improved SLURM job control.Loss Function Module Update:
autocast.losses.__init__.pyto includeEnsembleMAELossin the import and__all__list, making it available for use in experiment configs.Other Minor Improvements:
pyproject.tomlto specify test paths and directories to ignore for pytest, improving test discovery and isolation.