--- title: XGBoost and scikit-learn --- The [xgboost_sample.py](https://github.com/clearml/clearml/blob/master/examples/frameworks/xgboost/xgboost_sample.py) example demonstrates integrating ClearML into code that uses [XGBoost](https://xgboost.readthedocs.io/en/stable/). The example does the following: * Trains a network on the scikit-learn [iris](https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_iris.html#sklearn.datasets.load_iris) classification dataset using XGBoost * Scores accuracy using scikit-learn * ClearML automatically logs the input model registered by XGBoost, and the output model (and its checkpoints), feature importance plot, and tree plot created with XGBoost. * Creates a task named `XGBoost simple example` in the `examples` project. ## Plots The feature importance plot and tree plot appear in the task's page in the **ClearML web UI**, under **PLOTS**. ![Feature importance plot](../../../img/examples_xgboost_sample_06.png#light-mode-only) ![Feature importance plot](../../../img/examples_xgboost_sample_06_dark.png#dark-mode-only) ![Tree plot](../../../img/examples_xgboost_sample_06a.png#light-mode-only) ![Tree plot](../../../img/examples_xgboost_sample_06a_dark.png#dark-mode-only) ## Console All other console output appear in **CONSOLE**. ![Console log](../../../img/examples_xgboost_sample_05.png#light-mode-only) ![Console log](../../../img/examples_xgboost_sample_05_dark.png#dark-mode-only) ## Artifacts Models created by the task appear in the task's **ARTIFACTS** tab. ClearML automatically logs and tracks models and any snapshots created using XGBoost. ![Artifacts](../../../img/examples_xgboost_sample_10.png#light-mode-only) ![Artifacts](../../../img/examples_xgboost_sample_10_dark.png#dark-mode-only) Clicking on the model's name takes you to the [model's page](../../../webapp/webapp_model_viewing.md), where you can view the model's details and access the model. ![Model details](../../../img/examples_xgboost_sample_03.png#light-mode-only) ![Model details](../../../img/examples_xgboost_sample_03_dark.png#dark-mode-only)