-
Notifications
You must be signed in to change notification settings - Fork 38
Adds default config for run_evaluation #1028
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
Merged
+83
−1
Merged
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d6308bc
adding default config + changing yml path locations
enssow 5185f83
linter checks
enssow 4e9bd65
linter checks
enssow 8e19d29
revert .yml file
enssow 6fc77c4
updates
enssow 2b68ef6
Merge branch 'develop' into sorcha/dev/693
iluise 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
variables: | ||
q: | ||
var: q | ||
long: specific_humidity_on_pressure_level | ||
std: specific_humidity | ||
wg_unit: kg kg**-1 | ||
std_unit: kg kg-1 | ||
level_type: pl | ||
t: | ||
var: t | ||
long: temperature_on_pressure_levels | ||
std: air_temperature | ||
wg_unit: K | ||
std_unit: K | ||
level_type: pl | ||
u: | ||
var: u | ||
long: u_wind_on_pressure_levels | ||
std: x_wind | ||
wg_unit: m s**-1 | ||
std_unit: m s-1 | ||
level_type: pl | ||
v: | ||
var: v | ||
long: v_wind_on_pressure_levels | ||
std: y_wind | ||
wg_unit: m s**-1 | ||
std_unit: m s-1 | ||
level_type: pl | ||
z: | ||
var: z | ||
long: geopotential_height_on_pressure_levels | ||
std: geopotential_height | ||
wg_unit: m**2 s**-2 | ||
std_unit: m | ||
level_type: pl | ||
10u: | ||
var: u10 | ||
long: u_wind_at_10m | ||
std: x_wind | ||
wg_unit: m s**-1 | ||
std_unit: m s-1 | ||
level_type: sfc | ||
10v: | ||
var: v10 | ||
long: v_wind_at_10m | ||
std: y_wind | ||
wg_unit: m s**-1 | ||
std_unit: m s-1 | ||
level_type: sfc | ||
2d: | ||
var: d2m | ||
long: 2m_dewpoint_temperature | ||
std: dew_point_temperature | ||
wg_unit: K | ||
std_unit: K | ||
level_type: sfc | ||
2t: | ||
var: t2m | ||
long: 2m_temperature | ||
std: air_temperature | ||
#near-surface (usually, 2 meter) : https://pcmdi.llnl.gov/mips/cmip3/variableList.html | ||
wg_unit: K | ||
std_unit: K | ||
level_type: sfc | ||
msl: | ||
var: msl | ||
long: mean_sea_level_pressure | ||
std: air_pressure_at_mean_sea_level | ||
wg_unit: Pa | ||
std_unit: Pa | ||
level_type: sfc | ||
skt: | ||
var: skt | ||
# The standard name for skin temperature is sea_surface_skin_temperature, which is defined as "The temperature of the very thin layer at the surface of the sea that is in contact with the atmosphere". | ||
# It is strongly recommended that a variable with this standard name should have a units_metadata attribute, with one of the values "on-scale" or "difference", whichever is appropriate for the data, because it is essential to know whether the temperature is on-scale (meaning relative to the origin of the scale indicated by the units) or refers to temperature differences (implying that the origin of the temperature scale is irrevelant) | ||
long: skin_temperature | ||
std: sea_surface_skin_temperature | ||
wg_unit: K | ||
std_unit: K | ||
level_type: sfc | ||
sp: | ||
var: sp | ||
long: surface_pressure | ||
std: surface_air_pressure | ||
wg_unit: Pa | ||
std_unit: Pa | ||
level_type: sfc | ||
|
||
|
||
coordinates: | ||
sfc: | ||
valid_time: valid_time | ||
lat: latitude | ||
lon: longitude | ||
stream: stream | ||
forecast_step: forecast_period | ||
forecast_ref_time: forecast_ref_time | ||
pl: | ||
pressure_level: pressure | ||
valid_time: valid_time | ||
lat: latitude | ||
lon: longitude | ||
stream: stream | ||
forecast_step: forecast_period | ||
forecast_ref_time: forecast_ref_time | ||
dimensions: | ||
valid_time: | ||
wg: valid_time | ||
std: time | ||
lat: | ||
wg: latitude | ||
std: latitude | ||
std_unit: degrees_north | ||
lon: | ||
wg: longitude | ||
std: longitude | ||
std_unit: degrees_east | ||
pressure_level: | ||
wg: pressure | ||
std: air_pressure | ||
std_unit: hPa | ||
forecast_ref_time: | ||
wg: forecast_ref_time | ||
std: forecast_ref_time | ||
forecast_step: | ||
wg: forecast_period | ||
std: forecast_period | ||
stream: | ||
wg: stream | ||
std: stream | ||
#TODO maybe absorb stream as an attribute | ||
# forecast_step: forecast_step | ||
# don't want forecast_step anyway | ||
|
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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
image_format : "png" #options: "png", "pdf", "svg", "eps", "jpg" .. | ||
enssow marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
dpi_val : 300 | ||
summary_plots : true | ||
summary_dir: "./plots/" | ||
print_summary: false #print out score values on screen. it can be verbose | ||
|
||
evaluation: | ||
metrics : ["rmse", "mae"] | ||
|
||
# global_plotting_options: | ||
# ERA5: | ||
# 2t: | ||
# vmin: 250 | ||
# vmax: 300 | ||
# marker_size: 2 | ||
|
||
#MTM models | ||
run_ids : | ||
|
||
grwnhykd: | ||
results_base_dir : "/p/scratch/weatherai/shared_work/results/" | ||
epoch: 0 | ||
rank: 0 | ||
streams: | ||
ERA5: | ||
channels: ["2t", "t_850", "q_850"] | ||
evaluation: | ||
forecast_step: "all" | ||
sample: "all" | ||
plotting: | ||
sample: [0] | ||
forecast_step: "all" | ||
plot_maps: true | ||
plot_histograms: false | ||
|
||
NPPATMS: | ||
channels: ["obsvalue_rawbt_1", "obsvalue_rawbt_5"] | ||
evaluation: | ||
forecast_step: "all" | ||
sample: "all" | ||
plotting: | ||
sample: [0] | ||
forecast_step: [1, 2] | ||
plot_maps: false | ||
plot_histograms: false | ||
plot_animations: true | ||
|
||
z51gxtjl: | ||
label: "forecast ERA5" | ||
epoch: 0 | ||
rank: 0 | ||
streams: | ||
ERA5: | ||
channels: ["2t", "t_850"] | ||
evaluation: | ||
forecast_step: "all" | ||
sample: "all" | ||
plotting: | ||
sample: [0] | ||
forecast_step: [1, 2, 3, 4] | ||
plot_maps: true | ||
plot_histograms: true | ||
plot_animations: false | ||
|
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
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.
Uh oh!
There was an error while loading. Please reload this page.