Questions tagged [catboostregressor]

No guidance has been provided for this tag … at the moment!

Importing information into the Catboost Pool entity

Currently, I am in the process of training a Catboost model and utilizing a Pool object in the following manner: pool = Pool(data=x_train, label=y_train, cat_features=cat_cols) eval_set = Pool(data=x_validation, label=y_validation['Label'], cat_features=ca ...