Skip to content Skip to sidebar Skip to footer

Print CatBoost Hyperparameters

How to print CatBoost hyperparameters after training a model? In sklearn we can just print model object that it will show all parameters but in catboost it only print object's refe

Solution 1:

print(model.get_params()) should do


Solution 2:

Use print(model.get_all_params()) to print all default parameters.


Post a Comment for "Print CatBoost Hyperparameters"