About 400 results
Open links in new tab
  1. CatBoost - open-source gradient boosting library

    CatBoost is an open-source gradient boosting on decision trees library with categorical features support out of the box, successor of the MatrixNet algorithm developed by Yandex.

  2. CatBoost

    CatBoost is a machine learning algorithm that uses gradient boosting on decision trees. It is available as an open source library.

  3. Tutorials - CatBoost

    CatBoost is well covered with educational materials for both novice and advanced machine learners and data scientists. Video tutorial.

  4. Quick start - CatBoost

    CatBoost Datasets can be read from input files. For example, the Pool class offers this functionality.

  5. Usage examples | CatBoost

    # Apply model on pool with baseline values preds1 = catboost_model.predict(test_pool) # Apply model on numpy.ndarray and then add the baseline values preds2 = …

  6. CatBoost

    CatBoost class CatBoost (params= None) Purpose Training and applying models. Note There are compatibility issues with Scikit-learn 1.8.x. See this GitHub issue for details. Parameters …

  7. CatBoostClassifier | CatBoost

    If any features in the cat_features parameter are specified as names instead of indices, feature names must be provided for the training dataset. Therefore, the type of the X parameter in the …

  8. How training is performed - CatBoost

    CatBoost is based on gradient boosted decision trees. During training, a set of decision trees is built consecutively. Each successive tree is built with reduced loss compared to the previous …

  9. CatBoostRegressor | CatBoost

    If any features in the cat_features parameter are specified as names instead of indices, feature names must be provided for the training dataset. Therefore, the type of the X parameter in the …

  10. Parameter tuning - CatBoost

    CatBoost provides a flexible interface for parameter tuning and can be configured to suit different tasks. This section contains some tips on the possible parameter settings.