-
Notifications
You must be signed in to change notification settings - Fork 1
99 Plot Raw Input Maps #146
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
Open
LydiaFrance
wants to merge
50
commits into
main
Choose a base branch
from
99-raw-plots
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
0e13e48
Increase title spacing and restore axes titles
LydiaFrance 0d7efe8
Extract meta info about training and data for the title
LydiaFrance f5a195a
Refactor to use metadata in plots
LydiaFrance 4800b8c
Include hemisphere type
LydiaFrance e413ba5
Refactor for complex plot title with metadata
LydiaFrance d1f33b1
Tests for metadata titles
LydiaFrance 1749e46
Restore the ruff settings
LydiaFrance 22284ed
Change spacing layout of figure
LydiaFrance a08fb57
Include optional footer with metadata not title
LydiaFrance 18e14ec
Include option for footer
LydiaFrance 075e122
Extra tests to check the textboxes don't overlap
LydiaFrance 13f842f
Fix for mypy and restore ruff settings
LydiaFrance 4faf6d5
Make sure footer is in the config
LydiaFrance b14e779
Expose n_history_steps for plots
LydiaFrance 023a2ef
Ruff settings
LydiaFrance 2c00b13
return variable names from input data
LydiaFrance 3dcded7
Preventing memory leaks from plotting
LydiaFrance 56ecffe
prevent memory leak and log more errors
LydiaFrance 6c83ddf
Raw input callback file
LydiaFrance 71d448c
Config for raw input plotting
LydiaFrance 699bf18
update init and default yaml for raw input config
LydiaFrance 8629239
Memory and garbage collection for animation
LydiaFrance 170ecb9
Improve saving
LydiaFrance 1965872
Add colour map helper
LydiaFrance 57e888e
Generalise further, plot styles, allow easier local save
LydiaFrance 52f1b04
Refactor layout for single panel plots
LydiaFrance 25506de
work with style and layout object
LydiaFrance ce01455
file for raw plots
LydiaFrance ed0179f
Update fixtures for raw plot testing
LydiaFrance 9be6ddc
Tests for api updated
LydiaFrance afe72fb
Add layout tests for single panel
LydiaFrance a837b26
Tests for raw plots
LydiaFrance 74e7062
Fix path name
LydiaFrance d66ac30
Add CLI for plotting raw input data
LydiaFrance a2cf47a
Fix type checks for mypy
LydiaFrance 545de3d
Fix circular import
LydiaFrance 3122f5f
fix circular import
LydiaFrance e53a744
Merge branch 'main' into 99-raw-plots
LydiaFrance ff11b2e
Fix issues for ruff
LydiaFrance 0060475
Fix issues for mypy
LydiaFrance 058491c
Add ffmpeg to github action to test video saving
LydiaFrance 008d001
Change saving locally to base path root
LydiaFrance 6ad10fb
Fix path names
LydiaFrance b3b1bbe
Option for scientific notation on colourbar
LydiaFrance e4601be
altering colourbar format for raw plots
LydiaFrance c44fd65
add scientific notation to variable style
LydiaFrance e005fe6
add test for scientific notation
LydiaFrance 586a800
Change humidity to scientific notation (other option is more decimals)
LydiaFrance 447db5c
Fix problem with mypy
LydiaFrance c8d98c3
Fix mypy problem with save dir
LydiaFrance File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,13 @@ | ||
| from .ema_weight_averaging_callback import EMAWeightAveragingCallback | ||
| from .metric_summary_callback import MetricSummaryCallback | ||
| from .plotting_callback import PlottingCallback | ||
| from .raw_inputs_callback import RawInputsCallback | ||
| from .unconditional_checkpoint import UnconditionalCheckpoint | ||
|
|
||
| __all__ = [ | ||
| "EMAWeightAveragingCallback", | ||
| "MetricSummaryCallback", | ||
| "PlottingCallback", | ||
| "RawInputsCallback", | ||
| "UnconditionalCheckpoint", | ||
| ] |
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Maybe explain what the sample-idx argument is doing? Is it the same as the timestep_index?