.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples\4_testing\plot_0_accuracy_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_0_accuracy_reg.py: Accuracy: Regression ===================================== .. GENERATED FROM PYTHON SOURCE LINES 8-9 Experiment initialization and data preparation .. GENERATED FROM PYTHON SOURCE LINES 9-17 .. 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 18-19 Train Model .. GENERATED FROM PYTHON SOURCE LINES 19-21 .. code-block:: default exp.model_train(model=XGB2Regressor(), name="XGB2") .. GENERATED FROM PYTHON SOURCE LINES 22-23 Accuracy table .. GENERATED FROM PYTHON SOURCE LINES 23-24 .. code-block:: default exp.model_diagnose(model="XGB2", show="accuracy_table") .. rst-class:: sphx-glr-script-out .. code-block:: none MSE MAE R2 Train 0.0090 0.0669 0.7382 Test 0.0095 0.0688 0.7287 Gap 0.0005 0.0019 -0.0095 .. GENERATED FROM PYTHON SOURCE LINES 25-26 Plot residual with respect to the feature hr .. GENERATED FROM PYTHON SOURCE LINES 26-28 .. code-block:: default exp.model_diagnose(model="XGB2", show="accuracy_residual", show_feature="hr", use_test=False, original_scale=True, figsize=(5, 4)) .. image-sg:: /auto_examples/4_testing/images/sphx_glr_plot_0_accuracy_reg_001.png :alt: Residual Plot :srcset: /auto_examples/4_testing/images/sphx_glr_plot_0_accuracy_reg_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 29-30 Plot residual with respect to the feature season .. GENERATED FROM PYTHON SOURCE LINES 30-32 .. code-block:: default exp.model_diagnose(model="XGB2", show="accuracy_residual", show_feature="season", use_test=False, original_scale=True, figsize=(5, 4)) .. image-sg:: /auto_examples/4_testing/images/sphx_glr_plot_0_accuracy_reg_002.png :alt: Residual Plot :srcset: /auto_examples/4_testing/images/sphx_glr_plot_0_accuracy_reg_002.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 33-34 Plot residual with respect to the target feature .. GENERATED FROM PYTHON SOURCE LINES 34-36 .. code-block:: default exp.model_diagnose(model="XGB2", show="accuracy_residual", show_feature="cnt", use_test=False, figsize=(5, 4)) .. image-sg:: /auto_examples/4_testing/images/sphx_glr_plot_0_accuracy_reg_003.png :alt: Residual Plot :srcset: /auto_examples/4_testing/images/sphx_glr_plot_0_accuracy_reg_003.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 37-38 Plot residual with respect to the model prediction .. GENERATED FROM PYTHON SOURCE LINES 38-40 .. code-block:: default exp.model_diagnose(model="XGB2", show="accuracy_residual", show_feature="cnt_predict", use_test=False, figsize=(5, 4)) .. image-sg:: /auto_examples/4_testing/images/sphx_glr_plot_0_accuracy_reg_004.png :alt: Residual Plot :srcset: /auto_examples/4_testing/images/sphx_glr_plot_0_accuracy_reg_004.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 47.407 seconds) **Estimated memory usage:** 20 MB .. _sphx_glr_download_auto_examples_4_testing_plot_0_accuracy_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_0_accuracy_reg.ipynb :alt: Launch binder :width: 150 px .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_0_accuracy_reg.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_0_accuracy_reg.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_