Skip to content

Commit

Permalink
Add verbose=0 to boosting models
Browse files Browse the repository at this point in the history
  • Loading branch information
kasyanovse committed Sep 25, 2023
1 parent 338a752 commit cf29ea8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions fedot/core/repository/data/default_operation_params.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"xgboost": {
"eval_metric": "mlogloss",
"nthread": 1,
"n_jobs": 1
"n_jobs": 1,
"verbose": 0
},
"catboost": {
"allow_writing_files": false,
Expand All @@ -27,7 +28,8 @@
"subsample_freq": 10,
"learning_rate": 0.03,
"n_estimators": 100,
"n_jobs": 1
"n_jobs": 1,
"verbose": -1
},
"lgbmreg": {
"num_leaves": 32,
Expand All @@ -36,7 +38,8 @@
"subsample_freq": 10,
"learning_rate": 0.03,
"n_estimators": 100,
"n_jobs": 1
"n_jobs": 1,
"verbose": -1
},
"lagged": {
"window_size": 10
Expand Down

0 comments on commit cf29ea8

Please sign in to comment.