Skip to content
Snippets Groups Projects
Commit 0a790e97 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Added stratified sampling for precipitation.

parent b06b70dc
No related branches found
No related tags found
No related merge requests found
......@@ -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 ----------------------------------------------------------------
# -----------------------------------------------------------------------------
......
......@@ -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')) >=
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment