From 15fbe1889cbee55bef3b9490d3056cf727ff079c Mon Sep 17 00:00:00 2001 From: jh-206 Date: Tue, 24 Sep 2024 12:57:50 -0600 Subject: [PATCH] Update params.yaml --- fmda/params.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/fmda/params.yaml b/fmda/params.yaml index 2aa308d..2f6ea2f 100644 --- a/fmda/params.yaml +++ b/fmda/params.yaml @@ -6,7 +6,7 @@ # Stateless RNN, batch_size declared at fit step rnn: batch_size: 32 - timesteps: 5 + timesteps: 12 optimizer: adam rnn_layers: 1 # Number of hidden recurrent layers rnn_units: 20 # Number of units per hidden recurrent layer @@ -37,7 +37,7 @@ rnn: lstm: batch_size: 32 - timesteps: 5 + timesteps: 12 optimizer: adam rnn_layers: 1 rnn_units: 6 @@ -163,12 +163,14 @@ rf: random_state: null # Controls both the randomness of the bootstrapping of the samples and the sampling of the features verbose: 0 # Controls the verbosity when fitting and predicting warm_start: false # When set to True, reuse the solution of the previous call to fit and add more estimators to the ensemble - + scaler: null + features_list: ['Ed', 'Ew', 'solar', 'wind', 'rain'] + lm: fit_intercept: true scaler: null features_list: ['Ed', 'Ew', 'solar', 'wind', 'rain'] - + -- 2.11.4.GIT