-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from MeteoSwiss/MPC-58-Integrate-training-with…
…-MLflow MPC-58 integrate training with mlflow
- Loading branch information
Showing
8 changed files
with
517 additions
and
178 deletions.
There are no files selected for viewing
This file contains 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 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 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,27 +1,32 @@ | ||
n_jobs: 4 | ||
RFO: | ||
FILTERING: # conditions to remove some observations | ||
STA_TO_REMOVE : ['TIT','GSB','GRH','PIL','SAE','AUB'] | ||
CONSTRAINT_MIN_ZH : [0.5,5] # min 5 dBZ if R > 0.5 mm/h | ||
CONSTRAINT_MAX_ZH : [0,20] # max 20 dBZ if R = 0 mm/h | ||
RANDOMFOREST_REGRESSOR: # parameters to sklearn's class | ||
max_depth : 20 | ||
n_estimators : 15 | ||
max_features : 7 | ||
VERT_AGG: | ||
BETA : -0.5 # weighting factor to use in the exponential weighting | ||
VISIB_WEIGHTING : 1 # whether to weigh or not observations by their visib | ||
BIAS_CORR : 'spline' # type of bias correction 'raw', 'cdf' or 'spline' | ||
RFO_hpol: | ||
FILTERING: # conditions to remove some observations | ||
STA_TO_REMOVE : ['TIT','GSB','GRH','PIL','SAE','AUB'] | ||
CONSTRAINT_MIN_ZH : [0.5,5] # min 5 dBZ if R > 0.5 mm/h | ||
CONSTRAINT_MAX_ZH : [0,20] # max 20 dBZ if R = 0 mm/h | ||
RANDOMFOREST_REGRESSOR: # parameters to sklearn's class | ||
max_depth : 20 | ||
n_estimators : 15 | ||
max_features : 7 | ||
VERT_AGG: | ||
BETA : -0.5 # weighting factor to use in the exponential weighting | ||
VISIB_WEIGHTING : 1 # whether to weigh or not observations by their visib | ||
BIAS_CORR : 'spline' # type of bias correction 'raw', 'cdf' or 'spline' | ||
PARAMETERS: | ||
n_jobs: 4 | ||
cv_precip_bounds: [0,2,10,100] # precip bounds used in cross-validation | ||
MLFLOW: | ||
cv_scores_to_log: ['60min,test,all,all,RMSE', '60min,test,all,all,ED', '60min,test,all,all,logBias', '60min,test,all,all,scatter'] | ||
MODELS: | ||
RFO: | ||
FILTERING: # conditions to remove some observations | ||
sta_to_remove : ['TIT','GSB','GRH','PIL','SAE','AUB'] | ||
constraint_min_zh : [0.5,5] # min 5 dBZ if R > 0.5 mm/h | ||
constraint_max_zh : [0,20] # max 20 dBZ if R = 0 mm/h | ||
RANDOMFOREST_REGRESSOR: # parameters to sklearn's class | ||
max_depth : 20 | ||
n_estimators : 15 | ||
max_features : 7 | ||
VERT_AGG: | ||
beta : -0.5 # weighting factor to use in the exponential weighting | ||
visib_weighting : 1 # whether to weigh or not observations by their visib | ||
bias_corr : 'spline' # type of bias correction 'raw', 'cdf' or 'spline' | ||
RFO_hpol: | ||
FILTERING: # conditions to remove some observations | ||
sta_to_remove : ['TIT','GSB','GRH','PIL','SAE','AUB'] | ||
constraint_min_zh : [0.5,5] # min 5 dBZ if R > 0.5 mm/h | ||
constraint_max_zh : [0,20] # max 20 dBZ if R = 0 mm/h | ||
RANDOMFOREST_REGRESSOR: # parameters to sklearn's class | ||
max_depth : 20 | ||
n_estimators : 15 | ||
max_features : 7 | ||
VERT_AGG: | ||
beta : -0.5 # weighting factor to use in the exponential weighting | ||
visib_weighting : 1 # whether to weigh or not observations by their visib | ||
bias_corr : 'spline' # type of bias correction 'raw', 'cdf' or 'spline' |
Oops, something went wrong.