Skip to content

Commit

Permalink
Update hyperparameter tuningx
Browse files Browse the repository at this point in the history
  • Loading branch information
alexioannides committed Jun 20, 2022
1 parent d7e4e92 commit 463298e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pipeline/train_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
HYPERPARAM_GRID = {
"random_state": [42],
"criterion": ["squared_error", "absolute_error"],
"max_depth": [2, 3, 4, 5, 6, 7, 8, 9, 10, None],
"min_samples_split": [2, 3, 4, 5, 6, 7, 8, 9, 10],
"min_samples_leaf": [2, 3, 4, 5, 6, 7, 8, 9, 10],
"max_depth": [2, 4, 6, 8, 10, None],
"min_samples_split": [2, 4, 6, 8, 10],
"min_samples_leaf": [2, 4, 6, 8, 10],
}

log = logging.configure_logger()
Expand Down

0 comments on commit 463298e

Please sign in to comment.