H2O Eval Studio Demo of Driverless AI Local REST Server Models

[2]:
import os
import logging

import datatable
import daimojo

from h2o_sonar import interpret
from h2o_sonar.lib.api import commons
from h2o_sonar.lib.api import explainers
from h2o_sonar.explainers import dt_surrogate_explainer as dt_explainer
from h2o_sonar.explainers import pd_ice_explainer as pd_explainer
from h2o_sonar.lib.api.models import ModelApi

import warnings
warnings.filterwarnings('ignore')

Interpretation

[3]:
# model
local_model_rest_server_url = "http://localhost:8080/model"

# dataset
dataset_path = "../../data/pd_ice_creditcard_train.csv"
target_col = "DEFAULT_PAYMENT_NEXT_MONTH"

# results
results_location = "./results"
os.makedirs(results_location, exist_ok=True)
[4]:
# run interpretation
interpretation = interpret.run_interpretation(
    dataset=dataset_path,
    model=local_model_rest_server_url,
    target_col=target_col,
    results_location=results_location,
    log_level=logging.INFO,
)
Checking whether there is an H2O instance running at http://localhost:41647 ..... not found.
Attempting to start a local H2O server...
  Java Version: openjdk version "10" 2018-03-20; OpenJDK Runtime Environment 18.3 (build 10+44); OpenJDK 64-Bit Server VM 18.3 (build 10+44, mixed mode)
  Starting server from /home/dvorka/h/mli/git/h2o-sonar/.venv/lib/python3.8/site-packages/hmli/backend/bin/hmli.jar
  Ice root: /tmp/tmph2lxfaes
  JVM stdout: /tmp/tmph2lxfaes/hmli_dvorka_started_from_python.out
  JVM stderr: /tmp/tmph2lxfaes/hmli_dvorka_started_from_python.err
  Server is running at http://127.0.0.1:41647
Connecting to H2O server at http://127.0.0.1:41647 ... successful.
Warning: Your H2O cluster version is too old (9 months and 15 days)!Please download and install the latest version from http://hmli.ai/download/
H2O_cluster_uptime: 00 secs
H2O_cluster_timezone: Europe/Prague
H2O_data_parsing_timezone: UTC
H2O_cluster_version: 3.34.0.7
H2O_cluster_version_age: 9 months and 15 days !!!
H2O_cluster_name: H2O_from_python_dvorka_hsf2bw
H2O_cluster_total_nodes: 1
H2O_cluster_free_memory: 4 Gb
H2O_cluster_total_cores: 16
H2O_cluster_allowed_cores: 16
H2O_cluster_status: locked, healthy
H2O_connection_url: http://127.0.0.1:41647
H2O_connection_proxy: {"http": null, "https": null}
H2O_internal_security: False
H2O_API_Extensions: XGBoost, Algos, MLI, MLI-Driver, Core V3, Core V4, TargetEncoder
Python_version: 3.8.10 final
2022-10-06 15:21:29,827 - h2o_sonar.explainers.dt_surrogate_explainer.DecisionTreeSurrogateExplainerLogger - INFO - Surrogate decision tree 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/48bca834-a8cb-4226-a34f-62b5322bc66b: connecting to H2O-3 server: localhost:41647
Connecting to H2O server at http://localhost:41647 ... successful.
Warning: Your H2O cluster version is too old (9 months and 15 days)!Please download and install the latest version from http://hmli.ai/download/
H2O_cluster_uptime: 01 secs
H2O_cluster_timezone: Europe/Prague
H2O_data_parsing_timezone: UTC
H2O_cluster_version: 3.34.0.7
H2O_cluster_version_age: 9 months and 15 days !!!
H2O_cluster_name: H2O_from_python_dvorka_hsf2bw
H2O_cluster_total_nodes: 1
H2O_cluster_free_memory: 4 Gb
H2O_cluster_total_cores: 16
H2O_cluster_allowed_cores: 16
H2O_cluster_status: locked, healthy
H2O_connection_url: http://localhost:41647
H2O_connection_proxy: {"http": null, "https": null}
H2O_internal_security: False
H2O_API_Extensions: XGBoost, Algos, MLI, MLI-Driver, Core V3, Core V4, TargetEncoder
Python_version: 3.8.10 final
Parse progress: |████████████████████████████████████████████████████████████████| (done) 100%
Parse progress: |████████████████████████████████████████████████████████████████| (done) 100%
drf Model Build progress: |██████████████████████████████████████████████████████| (done) 100%
Parse progress: |████████████████████████████████████████████████████████████████| (done) 100%
Export File progress: |██████████████████████████████████████████████████████████| (done) 100%
2022-10-06 15:21:33,766 - h2o_sonar.explainers.dt_surrogate_explainer.DecisionTreeSurrogateExplainerLogger - INFO - Surrogate decision tree 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/48bca834-a8cb-4226-a34f-62b5322bc66b: DONE calculation
100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 23999/23999 [13:37<00:00, 29.36it/s]
2022-10-06 15:35:13,476 - h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainerLogger - INFO - Summary Shapley explainer 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/43a8a03c-b1a6-404b-8b24-c26ea4e1d4b0 raw MEANs (1)
2022-10-06 15:35:13,484 - h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainerLogger - INFO - Summary Shapley explainer 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/43a8a03c-b1a6-404b-8b24-c26ea4e1d4b0 raw CONTRIBs (1)
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 30.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 40.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 50.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 50.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 50.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 50.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 50.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 60.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 60.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 60.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 60.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 60.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 70.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 70.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 70.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 70.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 70.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 80.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 80.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 80.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 80.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 90.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 90.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 90.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 90.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 90.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 100.0%
h2o_sonar.explainers.summary_shap_explainer.SummaryShapleyExplainer: progress 100.0%
2022-10-06 15:35:36,826 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - [PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b] BEGIN
2022-10-06 15:35:36,827 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - [PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b] loading dataset
2022-10-06 15:35:36,827 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - [PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b] loaded dataset has 23999 rows and 25 columns
2022-10-06 15:35:36,827 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - [PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b] getting features list, importanceand metadata
2022-10-06 15:35:36,828 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b all most important model features: ['LIMIT_BAL', 'SEX', 'EDUCATION', 'MARRIAGE', 'AGE', 'PAY_1', 'PAY_2', 'PAY_3', 'PAY_4', 'PAY_5', 'PAY_6', 'BILL_AMT1', 'BILL_AMT2', 'BILL_AMT3', 'BILL_AMT4', 'BILL_AMT5', 'BILL_AMT6', 'PAY_AMT1', 'PAY_AMT2', 'PAY_AMT3', 'PAY_AMT4', 'PAY_AMT5', 'PAY_AMT6']
2022-10-06 15:35:36,828 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b features used by model: ['LIMIT_BAL', 'SEX', 'EDUCATION', 'MARRIAGE', 'AGE', 'PAY_1', 'PAY_2', 'PAY_3', 'PAY_4', 'PAY_5', 'PAY_6', 'BILL_AMT1', 'BILL_AMT2', 'BILL_AMT3', 'BILL_AMT4', 'BILL_AMT5', 'BILL_AMT6', 'PAY_AMT1', 'PAY_AMT2', 'PAY_AMT3', 'PAY_AMT4', 'PAY_AMT5', 'PAY_AMT6']
2022-10-06 15:35:36,828 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b: calculating PD for features ['LIMIT_BAL', 'SEX', 'EDUCATION', 'MARRIAGE', 'AGE', 'PAY_1', 'PAY_2', 'PAY_3', 'PAY_4', 'PAY_5']
2022-10-06 15:35:36,829 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b feature metadata: {}
2022-10-06 15:35:36,829 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b 1 frame strategy: True
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 10.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 20.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 20.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 20.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 30.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 30.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 30.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 40.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 40.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 50.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 50.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 60.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 60.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 60.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 70.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 70.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 70.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 80.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 80.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 90.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 90.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 90.0%
2022-10-06 15:36:27,474 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b saving PD to ./results/h2o-sonar/mli_experiment_6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/explainer_h2o_sonar_explainers_pd_ice_explainer_PdIceExplainer_5c327c67-cd77-41c2-a928-230d36dee13b/work/h2o_sonar-pd-dai-model.json
2022-10-06 15:36:27,478 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b computation finished & stored to: ./results/h2o-sonar/mli_experiment_6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/explainer_h2o_sonar_explainers_pd_ice_explainer_PdIceExplainer_5c327c67-cd77-41c2-a928-230d36dee13b/work/h2o_sonar-pd-dai-model.json
2022-10-06 15:36:27,501 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: LIMIT_BAL/True
2022-10-06 15:36:27,511 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: LIMIT_BAL/False
2022-10-06 15:36:27,516 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: SEX/True
2022-10-06 15:36:27,535 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: SEX/False
2022-10-06 15:36:27,554 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: EDUCATION/True
2022-10-06 15:36:27,570 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: EDUCATION/False
2022-10-06 15:36:27,590 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: MARRIAGE/True
2022-10-06 15:36:27,606 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: MARRIAGE/False
2022-10-06 15:36:27,626 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: AGE/True
2022-10-06 15:36:27,630 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: AGE/False
2022-10-06 15:36:27,642 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_1/True
2022-10-06 15:36:27,647 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_1/False
2022-10-06 15:36:27,651 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_2/True
2022-10-06 15:36:27,658 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_2/False
2022-10-06 15:36:27,663 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_3/True
2022-10-06 15:36:27,666 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_3/False
2022-10-06 15:36:27,675 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_4/True
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 90.0%
2022-10-06 15:36:27,680 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_4/False
2022-10-06 15:36:27,683 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_5/True
2022-10-06 15:36:27,691 - h2o_sonar.explainers.pd_ice_explainer.PdIceExplainerLogger - INFO - PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/5c327c67-cd77-41c2-a928-230d36dee13b creating histogram: PAY_5/False
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 100.0%
2022-10-06 15:36:28,514 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - [PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2] BEGIN
2022-10-06 15:36:28,514 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - [PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2] loading dataset
2022-10-06 15:36:28,515 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - [PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2] loaded dataset has 23999 rows and 25 columns
2022-10-06 15:36:28,515 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - [PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2] getting features list, importanceand metadata
2022-10-06 15:36:28,515 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 all most important model features: ['LIMIT_BAL', 'SEX', 'EDUCATION', 'MARRIAGE', 'AGE', 'PAY_1', 'PAY_2', 'PAY_3', 'PAY_4', 'PAY_5', 'PAY_6', 'BILL_AMT1', 'BILL_AMT2', 'BILL_AMT3', 'BILL_AMT4', 'BILL_AMT5', 'BILL_AMT6', 'PAY_AMT1', 'PAY_AMT2', 'PAY_AMT3', 'PAY_AMT4', 'PAY_AMT5', 'PAY_AMT6']
2022-10-06 15:36:28,516 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 features used by model: ['LIMIT_BAL', 'SEX', 'EDUCATION', 'MARRIAGE', 'AGE', 'PAY_1', 'PAY_2', 'PAY_3', 'PAY_4', 'PAY_5', 'PAY_6', 'BILL_AMT1', 'BILL_AMT2', 'BILL_AMT3', 'BILL_AMT4', 'BILL_AMT5', 'BILL_AMT6', 'PAY_AMT1', 'PAY_AMT2', 'PAY_AMT3', 'PAY_AMT4', 'PAY_AMT5', 'PAY_AMT6']
2022-10-06 15:36:28,516 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2: calculating PD for features ['LIMIT_BAL', 'SEX', 'EDUCATION', 'MARRIAGE', 'AGE', 'PAY_1', 'PAY_2', 'PAY_3', 'PAY_4', 'PAY_5']
2022-10-06 15:36:28,516 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 feature metadata: {}
2022-10-06 15:36:28,516 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 1 frame strategy: True
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 10.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 20.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 20.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 20.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 30.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 30.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 30.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 40.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 40.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 50.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 50.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 60.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 60.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 60.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 70.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 70.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 70.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 80.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 80.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 90.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 90.0%
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 90.0%
2022-10-06 15:37:16,148 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 saving PD to ./results/h2o-sonar/mli_experiment_6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/explainer_h2o_sonar_explainers_residual_pd_ice_explainer_ResidualPdIceExplainer_d5938159-a2f1-4294-8557-21d68d518df2/work/h2o_sonar-pd-dai-model.json
2022-10-06 15:37:16,155 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 computation finished & stored to: ./results/h2o-sonar/mli_experiment_6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/explainer_h2o_sonar_explainers_residual_pd_ice_explainer_ResidualPdIceExplainer_d5938159-a2f1-4294-8557-21d68d518df2/work/h2o_sonar-pd-dai-model.json
2022-10-06 15:37:16,171 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: LIMIT_BAL/True
2022-10-06 15:37:16,203 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: LIMIT_BAL/False
2022-10-06 15:37:16,229 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: SEX/True
2022-10-06 15:37:16,256 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: SEX/False
2022-10-06 15:37:16,283 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: EDUCATION/True
2022-10-06 15:37:16,307 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: EDUCATION/False
2022-10-06 15:37:16,340 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: MARRIAGE/True
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 90.0%
2022-10-06 15:37:16,379 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: MARRIAGE/False
2022-10-06 15:37:16,415 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: AGE/True
2022-10-06 15:37:16,427 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: AGE/False
2022-10-06 15:37:16,432 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_1/True
2022-10-06 15:37:16,435 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_1/False
2022-10-06 15:37:16,444 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_2/True
2022-10-06 15:37:16,448 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_2/False
2022-10-06 15:37:16,452 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_3/True
2022-10-06 15:37:16,457 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_3/False
2022-10-06 15:37:16,467 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_4/True
2022-10-06 15:37:16,472 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_4/False
2022-10-06 15:37:16,478 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_5/True
2022-10-06 15:37:16,480 - h2o_sonar.explainers.residual_pd_ice_explainer.ResidualPdIceExplainerLogger - INFO - Residual PD/ICE 6432d2e1-cafa-4bfb-91fd-ab3b5bb9a8c6/d5938159-a2f1-4294-8557-21d68d518df2 creating histogram: PAY_5/False
h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer: progress 100.0%
H2O session _sid_8889 closed.
../_images/notebooks_h2o-sonar-dai-rest-models_4_20.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_21.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_22.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_23.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_24.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_25.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_26.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_27.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_28.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_29.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_30.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_31.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_32.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_33.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_34.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_35.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_36.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_37.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_38.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_39.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_40.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_41.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_42.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_43.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_44.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_45.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_46.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_47.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_48.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_49.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_50.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_51.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_52.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_53.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_54.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_55.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_56.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_57.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_58.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_59.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_60.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_61.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_62.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_63.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_64.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_65.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_66.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_67.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_68.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_69.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_70.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_71.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_72.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_73.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_74.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_75.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_76.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_77.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_78.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_79.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_80.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_81.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_82.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_83.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_84.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_85.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_86.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_87.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_88.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_89.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_90.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_91.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_92.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_93.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_94.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_95.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_96.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_97.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_98.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_99.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_100.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_101.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_102.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_103.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_104.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_105.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_106.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_107.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_108.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_109.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_110.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_111.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_112.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_113.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_114.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_115.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_116.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_117.png
<Figure size 640x480 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
<Figure size 1600x800 with 0 Axes>
../_images/notebooks_h2o-sonar-dai-rest-models_4_139.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_140.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_141.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_142.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_143.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_144.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_145.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_146.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_147.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_148.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_149.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_150.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_151.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_152.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_153.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_154.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_155.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_156.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_157.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_158.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_159.png
../_images/notebooks_h2o-sonar-dai-rest-models_4_160.png

Explainers Results

[41]:
interpretation.get_successful_explainer_ids()
[41]:
['h2o_sonar.explainers.dia_explainer.DiaExplainer',
 'h2o_sonar.explainers.dt_surrogate_explainer.DecisionTreeSurrogateExplainer',
 'h2o_sonar.explainers.pd_ice_explainer.PdIceExplainer']
[42]:
interpretation.get_failed_explainer_ids()
[42]:
[]

PD/ICE Explainer

[43]:
# retrieve the result
result = interpretation.get_explainer_result(
    pd_explainer.PdIceExplainer.explainer_id()
)
[46]:
result.plot(feature_name="MARRIAGE")
../_images/notebooks_h2o-sonar-dai-rest-models_10_0.png
[47]:
result.data(feature_name="PAY_1")
[47]:
binpdsdoor
▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪▪
0−20.1788820.1226370
1−10.1901980.1282730
200.1839380.1227620
310.2145280.1281240
420.5523760.1534450
530.5559770.1534120
640.5529470.1518320
750.5386790.1479980
860.5386790.1479980
970.5386790.1479980
1080.5386790.1479980

Decision Tree Explainer

[48]:
# retrieve the result
result = interpretation.get_explainer_result(
    dt_explainer.DecisionTreeSurrogateExplainer.explainer_id()
)
[49]:
# summary
result.summary()
[49]:
{'debug_residuals': False,
 'debug_residuals_class': '1',
 'dt_tree_depth': 3,
 'nfolds': 3,
 'qbin_cols': None,
 'qbin_count': 0,
 'categorical_encoding': 'AUTO'}

Plot Explainer Data

[50]:
result.plot()
[50]:
../_images/notebooks_h2o-sonar-dai-rest-models_16_0.svg

Save Explainer Data as ZIP Archive

[51]:
# save the explainer data
result.zip(file_path="./feature-importance-demo-archive.zip")
[52]:
!unzip -l feature-importance-demo-archive.zip
Archive:  feature-importance-demo-archive.zip
  Length      Date    Time    Name
---------  ---------- -----   ----
     4814  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/result_descriptor.json
      131  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/local_decision_tree/application_json.meta
      498  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/local_decision_tree/application_json/explanation.json
      133  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/global_decision_tree/application_json.meta
      652  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/global_decision_tree/application_json/explanation.json
     2458  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/global_decision_tree/application_json/dt_class_0.json
      390  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/log/explainer_run_5005fefe-531d-4ef1-8d7a-295f6a082ece.log
  3073368  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/work/dtpaths_frame.bin
  3088670  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/work/dtPathsFrame.csv
     5884  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/work/dtSurrogate.json
    61375  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/work/dtModel.json
     2484  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/work/dt_surrogate_rules.zip
     9897  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/work/dtsurr_mojo.zip
      140  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/global_custom_archive/application_zip.meta
     2484  2022-08-17 19:09   explainer_h2o_sonar_explainers_dt_surrogate_explainer_DecisionTreeSurrogateExplainer_5005fefe-531d-4ef1-8d7a-295f6a082ece/global_custom_archive/application_zip/explanation.zip
---------                     -------
  6253378                     15 files
[ ]: