.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples\4_testing\plot_2_overfit_reg.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code or to run this example in your browser via Binder .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_4_testing_plot_2_overfit_reg.py: Overfit: Regression ===================================== .. GENERATED FROM PYTHON SOURCE LINES 9-10 Experiment initialization and data preparation .. GENERATED FROM PYTHON SOURCE LINES 10-18 .. code-block:: default from piml import Experiment from piml.models import XGB2Regressor exp = Experiment() exp.data_loader(data="BikeSharing", silent=True) exp.data_summary(feature_exclude=["yr", "mnth", "temp"], silent=True) exp.data_prepare(target="cnt", task_type="regression", silent=True) .. GENERATED FROM PYTHON SOURCE LINES 19-20 Train Model .. GENERATED FROM PYTHON SOURCE LINES 20-21 .. code-block:: default exp.model_train(model=XGB2Regressor(), name="XGB2") .. GENERATED FROM PYTHON SOURCE LINES 22-23 Histogram-based overfit test for a single feature .. GENERATED FROM PYTHON SOURCE LINES 23-27 .. code-block:: default results = exp.model_diagnose(model="XGB2", show="overfit", slice_method="histogram", slice_features=["hr"], threshold=1.05, min_samples=100, return_data=True, figsize=(5, 4)) results.data .. image-sg:: /auto_examples/4_testing/images/sphx_glr_plot_2_overfit_reg_001.png :alt: Overfit Regions :srcset: /auto_examples/4_testing/images/sphx_glr_plot_2_overfit_reg_001.png :class: sphx-glr-single-img .. raw:: html
[hr hr) #Test #Train test_MSE train_MSE Gap
0 0.3 0.4 445 1736 0.0219 0.0197 0.0022
1 0.6 0.7 445 1743 0.0103 0.0096 0.0008
2 0.8 0.9 285 1171 0.0081 0.0075 0.0006


.. GENERATED FROM PYTHON SOURCE LINES 28-29 Histogram-based overfit test for two features .. GENERATED FROM PYTHON SOURCE LINES 29-33 .. code-block:: default results = exp.model_diagnose(model="XGB2", show="overfit", slice_method="histogram", slice_features=["hr", "atemp"], threshold=1.05, min_samples=100, return_data=True, figsize=(5, 4)) results.data .. image-sg:: /auto_examples/4_testing/images/sphx_glr_plot_2_overfit_reg_002.png :alt: Overfit Regions :srcset: /auto_examples/4_testing/images/sphx_glr_plot_2_overfit_reg_002.png :class: sphx-glr-single-img .. raw:: html
[hr hr) [atemp atemp) #Test #Train test_MSE train_MSE Gap
0 0.7 0.8 0.5000 0.6636 103 366 0.0421 0.0350 0.0071
1 0.3 0.4 0.2318 0.4636 173 645 0.0250 0.0198 0.0052
2 0.6 0.7 0.1364 0.5606 240 882 0.0095 0.0078 0.0017
3 0.0 0.1 0.2546 0.3940 105 432 0.0020 0.0011 0.0009


.. GENERATED FROM PYTHON SOURCE LINES 34-35 Histogram-based overfit test for a single feature using MAE metric .. GENERATED FROM PYTHON SOURCE LINES 35-39 .. code-block:: default results = exp.model_diagnose(model="XGB2", show="overfit", slice_method="histogram", slice_features=["atemp"], threshold=1.05, min_samples=100, metric="MAE", return_data=True, figsize=(5, 4)) results.data .. image-sg:: /auto_examples/4_testing/images/sphx_glr_plot_2_overfit_reg_003.png :alt: Overfit Regions :srcset: /auto_examples/4_testing/images/sphx_glr_plot_2_overfit_reg_003.png :class: sphx-glr-single-img .. raw:: html
[atemp atemp) #Test #Train test_MAE train_MAE Gap
0 0.197 0.4924 1649 6580 0.0639 0.0589 0.005


.. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 32.176 seconds) **Estimated memory usage:** 31 MB .. _sphx_glr_download_auto_examples_4_testing_plot_2_overfit_reg.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: binder-badge .. image:: images/binder_badge_logo.svg :target: https://mybinder.org/v2/gh/selfexplainml/piml-toolbox/main?urlpath=lab/tree/./docs/_build/html/notebooks/auto_examples/4_testing/plot_2_overfit_reg.ipynb :alt: Launch binder :width: 150 px .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_2_overfit_reg.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_2_overfit_reg.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_