.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples\2_explain\plot_3_ale.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_2_explain_plot_3_ale.py: Accumulated Local Effects ===================================== .. 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 ReluDNNRegressor 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-22 .. code-block:: default exp.model_train(model=ReluDNNRegressor(), name="ReLUDNN") .. GENERATED FROM PYTHON SOURCE LINES 23-24 1D ALE Plot for hr .. GENERATED FROM PYTHON SOURCE LINES 24-27 .. code-block:: default exp.model_explain(model="ReLUDNN", show="ale", uni_feature='hr', grid_size=50, original_scale=True, figsize=(5, 4)) .. image-sg:: /auto_examples/2_explain/images/sphx_glr_plot_3_ale_001.png :alt: Accumulated Local Effects :srcset: /auto_examples/2_explain/images/sphx_glr_plot_3_ale_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 28-29 1D ALE Plot for atemp .. GENERATED FROM PYTHON SOURCE LINES 29-32 .. code-block:: default exp.model_explain(model="ReLUDNN", show="ale", uni_feature='atemp', grid_size=50, original_scale=True, figsize=(5, 4)) .. image-sg:: /auto_examples/2_explain/images/sphx_glr_plot_3_ale_002.png :alt: Accumulated Local Effects :srcset: /auto_examples/2_explain/images/sphx_glr_plot_3_ale_002.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 33-34 1D ALE Plot for weathersit .. GENERATED FROM PYTHON SOURCE LINES 34-36 .. code-block:: default exp.model_explain(model="ReLUDNN", show="ale", uni_feature='weathersit', original_scale=True, figsize=(5, 4)) .. image-sg:: /auto_examples/2_explain/images/sphx_glr_plot_3_ale_003.png :alt: Accumulated Local Effects :srcset: /auto_examples/2_explain/images/sphx_glr_plot_3_ale_003.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 37-38 2D ALE Plot for hr and atemp .. GENERATED FROM PYTHON SOURCE LINES 38-40 .. code-block:: default exp.model_explain(model="ReLUDNN", show="ale", bi_features=["hr", "atemp"], grid_size=10, sliced_line=False, original_scale=True, figsize=(5, 4)) .. image-sg:: /auto_examples/2_explain/images/sphx_glr_plot_3_ale_004.png :alt: Accumulated Local Effects (centered) :srcset: /auto_examples/2_explain/images/sphx_glr_plot_3_ale_004.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 1 minutes 6.027 seconds) **Estimated memory usage:** 24 MB .. _sphx_glr_download_auto_examples_2_explain_plot_3_ale.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/2_explain/plot_3_ale.ipynb :alt: Launch binder :width: 150 px .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_3_ale.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_3_ale.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_