|
1 |
| -# Tutorials |
| 1 | +# CatBoost tutorials |
2 | 2 |
|
3 |
| -## Python tutorials |
| 3 | +## Basic |
4 | 4 |
|
5 |
| -* Main CatBoost tutorial with base features demonstration: |
6 |
| - * [Python Tutorial](catboost_python_tutorial.ipynb) |
7 |
| - * This tutorial shows some base cases of using catboost, such as model training, cross-validation and predicting, as well as some useful features like early stopping, snapshot support, feature importances and parameters tuning. |
| 5 | +It's better to start CatBoost exploring from this basic tutorials. |
8 | 6 |
|
9 |
| -* CatBoost model analysis tutorials: |
10 |
| - * [Object Importance Tutorial](advanced_tutorials/catboost_object_importance_tutorial.ipynb) |
11 |
| - * This tutorial shows how to evaluate importances of the train objects for test objects. And with using of importance scores detect noisy train objects. |
| 7 | +### Python |
12 | 8 |
|
13 |
| - * [SHAP Values Tutorial](advanced_tutorials/shap_values_tutorial.ipynb) |
14 |
| - * This tutorial shows how to use [SHAP](https://github.com/slundberg/shap) python-package to get and visualize feature importances. |
| 9 | +* [Python Tutorial](python_tutorial.ipynb) |
| 10 | + * This tutorial shows some base cases of using CatBoost, such as model training, cross-validation and predicting, as well as some useful features like early stopping, snapshot support, feature importances and parameters tuning. |
| 11 | +* [Python Tutorial with task](python_tutorial_with_tasks.ipynb) |
| 12 | + * There are 17 questions in this tutorial. Try answering all of them, this will help you to learn how to use the library. |
15 | 13 |
|
16 |
| -* CatBoost performance at different competitions: |
17 |
| - * [Kaggle Paribas Tutorial](advanced_tutorials/kaggle_paribas.ipynb) |
18 |
| - * This tutorial shows how to get to a 9th place on paribas competition with only few lines of code and training a CatBoost model. |
| 14 | +### R |
19 | 15 |
|
20 |
| - * [ML Boot Camp Tutorial](advanced_tutorials/mlbootcamp_v_tutorial.ipynb) |
21 |
| - * This is an actual 7th place solution by Mikhail Pershin. Solution is very simple and is based on CatBoost. |
| 16 | +* [R Tutorial](r_tutorial.ipynb) |
| 17 | + * This tutorial shows how to convert your data to CatBoost Pool, how to train a model and how to make cross validation and parameter tunning. |
22 | 18 |
|
23 |
| -* CatBoost and TensorFlow: |
24 |
| - * [CatBoost & TensorFlow Tutorial](advanced_tutorials/quora_catboost_w2v.ipynb) |
25 |
| - * This tutorial shows how to use CatBoost together with TensorFlow if you have text as input data. |
| 19 | +### Command line |
26 | 20 |
|
27 |
| -* CatBoost and CoreML: |
28 |
| - * [CatBoost CoreML Tutorial](advanced_tutorials/catboost_coreml_export_tutorial.ipynb) |
29 |
| - * This tutorial shows how to convert CatBoost model to CoreML format and use it on an iPhone. |
| 21 | +* [Command Line Tutorial](cmdline_tutorial.md) |
| 22 | + * This tutorial shows how to train and apply model with the command line tool. |
30 | 23 |
|
31 |
| -## R tutorials |
| 24 | +## Classification |
32 | 25 |
|
33 |
| -* Main CatBoost tutorial with base features demonstration: |
34 |
| - * [R Tutorial](catboost_r_tutorial.ipynb) |
35 |
| - * This tutorial shows how to convert your data to CatBoost Pool, how to train a model and how to make cross validation and parameter tunning. |
| 26 | +* [Classification Tutorial](classification/classification_tutorial.ipynb) |
| 27 | + * Here is an example for CatBoost to solve binary classification and multi-classification problems. |
36 | 28 |
|
37 |
| -## Command line tutorials |
| 29 | +## Ranking |
| 30 | +* [Ranking Tutorial](ranking/ranking_tutorial.ipynb) |
| 31 | + * CatBoost is learning to rank on Microsoft dataset (msrank). |
38 | 32 |
|
39 |
| -* Main CatBoost tutorial with base features demonstration: |
40 |
| - * [Command Line Tutorial](catboost_cmdline_tutorial.md) |
41 |
| - * This tutorial shows how to train and apply model with the command line tool. |
| 33 | +## Feature selection |
| 34 | +* [Feature selection Tutorial](feature_selection/eval_tutorial.ipynb) |
| 35 | + * This tutorial shows how to make feature evaluation with CatBoost and explore learning rate. |
42 | 36 |
|
43 |
| -## Custom loss tutorial |
| 37 | +## Model analysis |
44 | 38 |
|
45 |
| -* Adding custom per-object error function tutorial: |
46 |
| - * [Custom Metrics Tutorial](advanced_tutorials/catboost_custom_metric_tutorial.md) |
47 |
| - * This tutorial shows how to add custom per-object metrics. |
| 39 | +* [Object Importance Tutorial](model_analysis/object_importance_tutorial.ipynb) |
| 40 | + * This tutorial shows how to evaluate importances of the train objects for test objects. And with using of importance scores detect noisy train objects. |
| 41 | + |
| 42 | +* [SHAP Values Tutorial](model_analysis/shap_values_tutorial.ipynb) |
| 43 | + * This tutorial shows how to use [SHAP](https://github.com/slundberg/shap) python-package to get and visualize feature importances. |
| 44 | + |
| 45 | +## Custom loss |
| 46 | + |
| 47 | +* [Custom Metrics Tutorial](custom_loss/custom_metric_tutorial.md) |
| 48 | + * This tutorial shows how to add custom per-object metrics. |
| 49 | + |
| 50 | +## Apply model |
| 51 | + |
| 52 | +* [CatBoost CoreML Tutorial](apply_model/coreml_export_tutorial.ipynb) |
| 53 | + * Explore this tutorial to learn how to convert CatBoost model to CoreML format and use it on any iOS device. |
| 54 | + |
| 55 | +* [Export CatBoost Model as C++ code Tutorial](apply_model/model_export_as_cpp_code_tutorial.md) |
| 56 | + * Catboost model could be saved as standalone C++ code. |
| 57 | + |
| 58 | +* [Export CatBoost Model as Python code Tutorial](apply_model/model_export_as_python_code_tutorial.md) |
| 59 | + * Catboost model could be saved as standalone Python code. |
| 60 | + |
| 61 | +## Competition examples |
| 62 | + |
| 63 | +* [Kaggle Paribas Competition Tutorial](competition_examples/kaggle_paribas.ipynb) |
| 64 | + * This tutorial shows how to get to a 9th place on Kaggle Paribas competition with only few lines of code and training a CatBoost model. |
| 65 | + |
| 66 | +* [ML Boot Camp V Competition Tutorial](competition_examples/mlbootcamp_v_tutorial.ipynb) |
| 67 | + * This is an actual 7th place solution by Mikhail Pershin. Solution is very simple and is based on CatBoost. |
| 68 | + |
| 69 | +* [CatBoost & TensorFlow Tutorial](competition_examples/quora_w2v.ipynb) |
| 70 | + * This tutorial shows how to use CatBoost together with TensorFlow on Kaggle Quora Question Pairs competition if you have text as input data. |
| 71 | + |
| 72 | +## Events |
| 73 | + |
| 74 | +* [PyData NYC tutorial](events/pydata_nyc_oct_19_2018.ipynb) |
| 75 | + * Tutorial from PyData New York, October 19, 2018. |
| 76 | + |
| 77 | +* [PyData LA tutorial](events/pydata_la_oct_21_2018.ipynb) |
| 78 | + * Tutorial from PyData Los Angeles, October 21, 2018. |
| 79 | + |
| 80 | +## Tutorials on Russian |
| 81 | + |
| 82 | +* Find tutorials on Russian language on the separate [page](ru/README.md). |
0 commit comments