I created a model with CatBoostRegressor. My dataset is 74274 rows × 24 columns.I am using encoding and min-max scaler.
The more I raise the n_estimators value in my model, the better the model score. What is the end of this? How do I decide where to stop? That way I guess it goes forever. Is being high good or bad? Where should the stopping point be?
model = CatBoostRegressor(n_estimators=3000,verbose=False)
model = CatBoostRegressor(n_estimators=10000,verbose=False)
model = CatBoostRegressor(n_estimators=20000,verbose=False)
.
.
.