Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Climax
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
earth_observation_public
Climax
Commits
0a790e97
Commit
0a790e97
authored
3 years ago
by
Frisinghelli Daniel
Browse files
Options
Downloads
Patches
Plain Diff
Added stratified sampling for precipitation.
parent
b06b70dc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
climax/main/config.py
+3
-0
3 additions, 0 deletions
climax/main/config.py
climax/main/downscale_train.py
+3
-3
3 additions, 3 deletions
climax/main/downscale_train.py
with
6 additions
and
3 deletions
climax/main/config.py
+
3
−
0
View file @
0a790e97
...
...
@@ -51,6 +51,9 @@ if DEM:
# whether to use DEM slope and aspect as predictors
DEM_FEATURES
=
False
# stratify training/validation set for precipitation by number of wet days
STRATIFY
=
True
# -----------------------------------------------------------------------------
# Observations ----------------------------------------------------------------
# -----------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
climax/main/downscale_train.py
+
3
−
3
View file @
0a790e97
...
...
@@ -21,11 +21,11 @@ from pysegcnn.core.trainer import NetworkTrainer, LogConfig
from
pysegcnn.core.models
import
Network
from
pysegcnn.core.logging
import
log_conf
from
climax.core.dataset
import
ERA5Dataset
,
NetCDFDataset
from
climax.core.config
import
WET_DAY_THRESHOLD
from
climax.main.config
import
(
ERA5_PLEVELS
,
ERA5_PREDICTORS
,
PREDICTAND
,
CALIB_PERIOD
,
DOY
,
SHUFFLE
,
BATCH_SIZE
,
LR
,
LAMBDA
,
NORM
,
TRAIN_CONFIG
,
NET
,
LOSS
,
FILTERS
,
OVERWRITE
,
DEM
,
DEM_FEATURES
)
OVERWRITE
,
DEM
,
DEM_FEATURES
,
STRATIFY
,
WET_DAY_THRESHOLD
)
from
climax.main.io
import
ERA5_PATH
,
OBS_PATH
,
DEM_PATH
,
MODEL_PATH
# module level logger
...
...
@@ -102,7 +102,7 @@ if __name__ == '__main__':
LogConfig
.
init_log
(
'
Initializing training data.
'
)
# split calibration period into training and validation period
if
PREDICTAND
==
'
pr
'
:
if
PREDICTAND
==
'
pr
'
and
STRATIFY
:
# stratify training and validation dataset by number of observed
# wet days for precipitation
wet_days
=
(
Obs_ds
.
sel
(
time
=
CALIB_PERIOD
).
mean
(
dim
=
(
'
y
'
,
'
x
'
))
>=
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment