Skip to content

Instantly share code, notes, and snippets.

@alonsosilvaallende
Created October 12, 2023 11:12
Show Gist options
  • Save alonsosilvaallende/46ac6945c870eefdaed93b4348c2ed0f to your computer and use it in GitHub Desktop.
Save alonsosilvaallende/46ac6945c870eefdaed93b4348c2ed0f to your computer and use it in GitHub Desktop.
Dendogram.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"provenance": [],
"authorship_tag": "ABX9TyNGYLZX7b8d0+YGsIYjm6EG",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/alonsosilvaallende/46ac6945c870eefdaed93b4348c2ed0f/dendogram.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"source": [
"!pip install shap"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "PotQ5ZQqhLI9",
"outputId": "0b78c040-07ab-4617-e5b5-ccbb739ebdce"
},
"execution_count": 1,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Collecting shap\n",
" Downloading shap-0.43.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (532 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m532.9/532.9 kB\u001b[0m \u001b[31m5.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hRequirement already satisfied: numpy in /usr/local/lib/python3.10/dist-packages (from shap) (1.23.5)\n",
"Requirement already satisfied: scipy in /usr/local/lib/python3.10/dist-packages (from shap) (1.11.3)\n",
"Requirement already satisfied: scikit-learn in /usr/local/lib/python3.10/dist-packages (from shap) (1.2.2)\n",
"Requirement already satisfied: pandas in /usr/local/lib/python3.10/dist-packages (from shap) (1.5.3)\n",
"Requirement already satisfied: tqdm>=4.27.0 in /usr/local/lib/python3.10/dist-packages (from shap) (4.66.1)\n",
"Requirement already satisfied: packaging>20.9 in /usr/local/lib/python3.10/dist-packages (from shap) (23.2)\n",
"Collecting slicer==0.0.7 (from shap)\n",
" Downloading slicer-0.0.7-py3-none-any.whl (14 kB)\n",
"Requirement already satisfied: numba in /usr/local/lib/python3.10/dist-packages (from shap) (0.56.4)\n",
"Requirement already satisfied: cloudpickle in /usr/local/lib/python3.10/dist-packages (from shap) (2.2.1)\n",
"Requirement already satisfied: llvmlite<0.40,>=0.39.0dev0 in /usr/local/lib/python3.10/dist-packages (from numba->shap) (0.39.1)\n",
"Requirement already satisfied: setuptools in /usr/local/lib/python3.10/dist-packages (from numba->shap) (67.7.2)\n",
"Requirement already satisfied: python-dateutil>=2.8.1 in /usr/local/lib/python3.10/dist-packages (from pandas->shap) (2.8.2)\n",
"Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.10/dist-packages (from pandas->shap) (2023.3.post1)\n",
"Requirement already satisfied: joblib>=1.1.1 in /usr/local/lib/python3.10/dist-packages (from scikit-learn->shap) (1.3.2)\n",
"Requirement already satisfied: threadpoolctl>=2.0.0 in /usr/local/lib/python3.10/dist-packages (from scikit-learn->shap) (3.2.0)\n",
"Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.10/dist-packages (from python-dateutil>=2.8.1->pandas->shap) (1.16.0)\n",
"Installing collected packages: slicer, shap\n",
"Successfully installed shap-0.43.0 slicer-0.0.7\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import pandas as pd\n",
"# Set the file URL and filename\n",
"url = 'https://archive.ics.uci.edu/ml/' \\\n",
"'machine-learning-databases/' \\\n",
"'wine-quality/winequality-white.csv'\n",
"file_name = 'wine.csv'"
],
"metadata": {
"id": "bc8AK1V8hKYN"
},
"execution_count": 2,
"outputs": []
},
{
"cell_type": "code",
"source": [
"try:\n",
" wine = pd.read_csv(file_name)\n",
"except FileNotFoundError:\n",
" print(f'Downloading {file_name} from {url}...')\n",
" wine = pd.read_csv(url, sep=\";\")\n",
" wine.to_csv(file_name, index=False)\n",
" print('Download complete!')"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "S8WxQGYGhUp3",
"outputId": "e835ec5f-28cf-4870-c2ca-cb8abc74f657"
},
"execution_count": 3,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Downloading wine.csv from https://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/winequality-white.csv...\n",
"Download complete!\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import pandas as pd\n",
"from sklearn.ensemble import RandomForestRegressor\n",
"from sklearn.model_selection import train_test_split\n",
"wine = pd.read_csv('wine.csv')\n",
"y = wine['quality']\n",
"X = wine.drop(columns=['quality'])\n",
"X_train, X_test, y_train, y_test = train_test_split(\n",
"X, y, test_size=0.2, random_state=42\n",
")\n",
"model = RandomForestRegressor(random_state=42)\n",
"model.fit(X_train, y_train)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 75
},
"id": "rueucKq9g9vS",
"outputId": "2a4532d8-308b-43d8-d8cf-f09d7d25eb46"
},
"execution_count": 4,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"RandomForestRegressor(random_state=42)"
],
"text/html": [
"<style>#sk-container-id-1 {color: black;background-color: white;}#sk-container-id-1 pre{padding: 0;}#sk-container-id-1 div.sk-toggleable {background-color: white;}#sk-container-id-1 label.sk-toggleable__label {cursor: pointer;display: block;width: 100%;margin-bottom: 0;padding: 0.3em;box-sizing: border-box;text-align: center;}#sk-container-id-1 label.sk-toggleable__label-arrow:before {content: \"▸\";float: left;margin-right: 0.25em;color: #696969;}#sk-container-id-1 label.sk-toggleable__label-arrow:hover:before {color: black;}#sk-container-id-1 div.sk-estimator:hover label.sk-toggleable__label-arrow:before {color: black;}#sk-container-id-1 div.sk-toggleable__content {max-height: 0;max-width: 0;overflow: hidden;text-align: left;background-color: #f0f8ff;}#sk-container-id-1 div.sk-toggleable__content pre {margin: 0.2em;color: black;border-radius: 0.25em;background-color: #f0f8ff;}#sk-container-id-1 input.sk-toggleable__control:checked~div.sk-toggleable__content {max-height: 200px;max-width: 100%;overflow: auto;}#sk-container-id-1 input.sk-toggleable__control:checked~label.sk-toggleable__label-arrow:before {content: \"▾\";}#sk-container-id-1 div.sk-estimator input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-1 div.sk-label input.sk-toggleable__control:checked~label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-1 input.sk-hidden--visually {border: 0;clip: rect(1px 1px 1px 1px);clip: rect(1px, 1px, 1px, 1px);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;}#sk-container-id-1 div.sk-estimator {font-family: monospace;background-color: #f0f8ff;border: 1px dotted black;border-radius: 0.25em;box-sizing: border-box;margin-bottom: 0.5em;}#sk-container-id-1 div.sk-estimator:hover {background-color: #d4ebff;}#sk-container-id-1 div.sk-parallel-item::after {content: \"\";width: 100%;border-bottom: 1px solid gray;flex-grow: 1;}#sk-container-id-1 div.sk-label:hover label.sk-toggleable__label {background-color: #d4ebff;}#sk-container-id-1 div.sk-serial::before {content: \"\";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 0;bottom: 0;left: 50%;z-index: 0;}#sk-container-id-1 div.sk-serial {display: flex;flex-direction: column;align-items: center;background-color: white;padding-right: 0.2em;padding-left: 0.2em;position: relative;}#sk-container-id-1 div.sk-item {position: relative;z-index: 1;}#sk-container-id-1 div.sk-parallel {display: flex;align-items: stretch;justify-content: center;background-color: white;position: relative;}#sk-container-id-1 div.sk-item::before, #sk-container-id-1 div.sk-parallel-item::before {content: \"\";position: absolute;border-left: 1px solid gray;box-sizing: border-box;top: 0;bottom: 0;left: 50%;z-index: -1;}#sk-container-id-1 div.sk-parallel-item {display: flex;flex-direction: column;z-index: 1;position: relative;background-color: white;}#sk-container-id-1 div.sk-parallel-item:first-child::after {align-self: flex-end;width: 50%;}#sk-container-id-1 div.sk-parallel-item:last-child::after {align-self: flex-start;width: 50%;}#sk-container-id-1 div.sk-parallel-item:only-child::after {width: 0;}#sk-container-id-1 div.sk-dashed-wrapped {border: 1px dashed gray;margin: 0 0.4em 0.5em 0.4em;box-sizing: border-box;padding-bottom: 0.4em;background-color: white;}#sk-container-id-1 div.sk-label label {font-family: monospace;font-weight: bold;display: inline-block;line-height: 1.2em;}#sk-container-id-1 div.sk-label-container {text-align: center;}#sk-container-id-1 div.sk-container {/* jupyter's `normalize.less` sets `[hidden] { display: none; }` but bootstrap.min.css set `[hidden] { display: none !important; }` so we also need the `!important` here to be able to override the default hidden behavior on the sphinx rendered scikit-learn.org. See: https://github.com/scikit-learn/scikit-learn/issues/21755 */display: inline-block !important;position: relative;}#sk-container-id-1 div.sk-text-repr-fallback {display: none;}</style><div id=\"sk-container-id-1\" class=\"sk-top-container\"><div class=\"sk-text-repr-fallback\"><pre>RandomForestRegressor(random_state=42)</pre><b>In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. <br />On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.</b></div><div class=\"sk-container\" hidden><div class=\"sk-item\"><div class=\"sk-estimator sk-toggleable\"><input class=\"sk-toggleable__control sk-hidden--visually\" id=\"sk-estimator-id-1\" type=\"checkbox\" checked><label for=\"sk-estimator-id-1\" class=\"sk-toggleable__label sk-toggleable__label-arrow\">RandomForestRegressor</label><div class=\"sk-toggleable__content\"><pre>RandomForestRegressor(random_state=42)</pre></div></div></div></div></div>"
]
},
"metadata": {},
"execution_count": 4
}
]
},
{
"cell_type": "code",
"source": [
"explainer = shap.Explainer(model, X_train)\n",
"shap_values = explainer(X_test, check_additivity=False)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "x4MBGfayjll7",
"outputId": "c15f27c8-c5e3-462c-c451-829ca877f493"
},
"execution_count": 21,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"100%|===================| 977/980 [00:43<00:00] "
]
}
]
},
{
"cell_type": "code",
"source": [
"from sklearn.metrics import mean_absolute_error\n",
"y_pred = model.predict(X_test)\n",
"mae = mean_absolute_error(y_test, y_pred)\n",
"print('MAE:', round(mae, 2))"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "sum9WmBQhA6w",
"outputId": "541a3a5e-c362-48b3-da5c-611877e750ec"
},
"execution_count": 5,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"MAE: 0.42\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import numpy as np"
],
"metadata": {
"id": "0rY1DzpnhdXu"
},
"execution_count": 8,
"outputs": []
},
{
"cell_type": "code",
"source": [
"import matplotlib.pyplot as plt"
],
"metadata": {
"id": "gA2d9A93hfFE"
},
"execution_count": 10,
"outputs": []
},
{
"cell_type": "code",
"source": [
"import seaborn as sns"
],
"metadata": {
"id": "8seJH0nihiwJ"
},
"execution_count": 12,
"outputs": []
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 859
},
"id": "OIMiNgBjgwN6",
"outputId": "0c619e4f-fe7f-46fd-9556-da080ae13280"
},
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"<Figure size 1100x900 with 2 Axes>"
],
"image/png": "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5q/jGPv9dOjo6srm1urp6UNLSe/VLyGRSNCiXSfs2x6GcpYVUaZcOezavAGmZubwrv2233OnToR3nXpo/lUHAMCGFb/g7F8nMHrSVOjq6srmDeuqUL87dumKsI3rUaFiJZS3tMSGtathVsYcdRs0kB333bixqNvAB+075xU6r169xKOHD2X3P05IQMyd2zA0NIJFuU/bP1pMEokEPXv2xJrVq2FlZYWKFSti+bJlKFO2LBr9W6gBwLBhw9CkcWN0694dANCrd28ET58OF1dXuLm5YcvmzXj16hXat28vUk8+T0nud0l8nxMRFSUWsSVIv3798OrVK9SqVQulSpXCmDFjMGTIELFjfTbPxq2Rlfkaf+1Yj8yMlyhv44ivBo+Vm++amvgMGekvRExZ9Hr37YeMjAzMnTMLaWlp8KjqifkLF8mdQHj44CGSk5Nlt5u1aIHk5CSsWrkC0sREODg6Yf6CRTArpsPuCtLWtxteZ2RgzS+L8DI9DU6ubgia/iO0tLRkxzx9nIAXqamy20f//B0AMOu7ILnn+mbMODRs1lI5wb/QV527IjMjA+uWLc7rt4sbAqbMhOZ7/U57p9/HD+wHAPw0ZYLcc/mNCkCDpi2UE/wLfd2jFzIyMrAk5Gekp6XB1cMDM+f8DC2tt+/zhEePkJrydiG327duYVLAGNntVcuWAgCatWqNgAnfKS/8F+jXvz9eZWRg1qxZSHvxAp5eXli8ePF7n+8Hcp/vli1bIjkpCb8uX47ExEQ4OTlh8ZIlxXZYbUFKar9L6vuciKioSARV2yiU/pPGjRvDy8sLC5W4kEbI3lNK+28VFwEdfPAsqfBVktVVWVNjnL8VJ3YMpatVxQan/4kVO4bS1XO1w52HT8SOoXQOFcsh9YV6nRz7FEaGhiW23yX1fU5EVNwVv8mARERERERERIVgEUtEREREREQqg3NiS4gTJ06IHYGIiIiIiOiL8UosERERERERqQwWsURERERERKQyWMQSERERERGRymARS0RERERERCqDRSwRERERERGpDBaxREREREREpDJYxBIREREREZHKYBFLREREREREKoNFLBEREREREakMFrFERERERESkMljEEhERERERkcpgEUtEREREREQqg0UsERERERERqQwWsURERERERKQyWMQSERERERGRymARS0RERERERCqDRSwRERER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9zD7d3jpk+fP5V7v59IkDPQPkt3esnsvtuzei2rurlj64wxlx//PWjRpjOSUZKxcF4rEpCQ42ttjwZxZsuHEj58+lU0fAoBniYno9+0w2e1N27Zj07btqOZZFctC5is7/n/WrH5dJKemYnXYDkiTk+FgUxk/fz/xvdf7bb93HzqMrOxsTPl5odzzDOzaBYO6f63E5ERUHEmE4rBvSgkkkUiwa9cudOrUSewoCvMsqeANzNVZWVNjPJUmix1D6SzMTJCcoL4rihbGxLJiiX29U6WqswJwUTEyM0fy409bSVWdmJSvgOc3i/82TUWtjLMHkh6o7wrRhTGtZI2nUZEfP1DNWHh4f/wgIio2OCeWiIiIiIiIVAaLWCIiIiIiIlIZnBMrEo7iJiIiIiIi+ny8EktEREREREQqg0UsERERERERqQwWsURERERERKQyWMQSERERERGRymARS0RERERERCqDRSwRERERERGpDBaxREREREREpDJYxBIREREREZHKYBFLREREREREKoNFLBEREREREakMFrFERERERESkMljEEhERERERkcpgEUtEREREREQqg0UsERERERERqQwWsURERERERKQyWMQSERERERGRymARS0RERERERCqDRSwRERERERGpDBaxREREREREpDJYxBIREREREZHKYBFLREREREREKoNFLBEREREREakMFrFERERERESkMiSCIAhihyAiIiIiIiL6FKXFDkDq62Z8gtgRlM7Z2hLJj+6LHUPpTCpY4f6TRLFjKJ1VOXP89NsJsWMo3QTfxlh79ILYMZRuYLOa+DPihtgxlK5NDZcS+z5vMm212DGU7niwH57fjBI7htKVcfZAUsoLsWMonamxodgRiP4TDicmIiIiIiIilcEiloiIiIiIiFQGi1giIiIiIiJSGSxiiYiIiIiISGWwiCUiIiIiIiKVwSKWiIiIiIiIVAaLWCIiIiIiIlIZLGKJiIiIiIhIZbCIJSIiIiIiIpXBIpaIiIiIiIhUBotYIiIiIiIiUhksYomIiIiIiEhlsIglIiIiIiIilcEiloiIiIiIiFQGi1giIiIiIiJSGSxiiYiIiIiISGWwiCUiIiIiIiKVwSKWiIiIiIiIVAaLWCIiIiIiIlIZLGKJiIiIiIhIZbCIJSIiIiIiIpXBIpaIiIiIiIhUBovYYiYuLg4SiQSX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EhERFSNly5aVbS1TUj148AAAUKlSJZGTEBFRccSFnYiIiIqRPn36YPXq1WLHULrc3FzMmDEDxsbGqFy5MipXrgwTExPMnDkTubm5YscjIqJihHNiiYiIipHs7GysWbMGR44cQfXq1aGvry93f0hIiEjJFOv777/H6tWrMWfOHNSvXx8A8Pfff2P69OnIyMjAjz/+KHJCIiIqLjicmIiIqBj50DY6EokEx44dU2Ia5alQoQKWL1+ODh06yLXv2bMHw4cPx8OHD0VKRkRExQ2vxBIREYns6tWrcHd3h4aGBo4fPy52HFFIpVI4Ozvna3d2doZUKhUhERERFVecE0tERCSyatWq4fnz5wAAOzs7JCYmipxI+Tw9PbF06dJ87UuXLoWnp6cIiYiIqLjilVgiIiKRmZiY4O7du7CwsEBcXFyJXMho7ty5aNu2LY4cOYK6desCAM6cOYP79+/jjz/+EDkdEREVJ5wTS0REJLIhQ4Zg/fr1sLS0RHx8PCpVqoRSpUoVeGxsbKyS0ynPo0eP8Msvv+DmzZsAABcXFwwfPhwVKlQQORkRERUnLGKJiIiKgQMHDuDOnTsYPXo0ZsyYAUNDwwKPGzNmjJKTKUd8fDysrKwgkUgKvM/a2lqEVEREVByxiCUiIipGBg4ciMWLFxdaxKqrUqVKISEhARYWFnLtiYmJsLCwQE5OjkjJiIiouOGcWCIiomJk7dq1YkcQhSAIBV6FTUtLg46OjgiJiIiouGIRS0RERKIJCAgAkLcH7pQpU6Cnpye7LycnB+fOnYOXl5dI6YiIqDhiEUtERESiuXTpEoC8K7FRUVHQ0tKS3aelpQVPT08EBgaKFY+IiIohzoklIiIi0Q0cOBCLFi2CkZGR2FGIiKiYYxFLREREREREKkND7ABEREREREREn4pFLBEREREREakMFrFERERERESkMljEEhERERERkcpgEUtEREREREQqg0UsERERERERqQwWsURERERERKQyWMQSERERERGRyvg/5sN57dEEIVkAAAAASUVORK5CYII=\n"
},
"metadata": {}
}
],
"source": [
"# Compute the correlation matrix\n",
"corr = X_train.corr()\n",
"# Generate a mask for the upper triangle\n",
"mask = np.triu(np.ones_like(corr, dtype=bool))\n",
"# Set up the matplotlib figure\n",
"f, ax = plt.subplots(figsize=(11, 9))\n",
"# Generate a diverging colormap\n",
"cmap = sns.diverging_palette(230, 20, as_cmap=True)\n",
"# Draw the heatmap with the mask and correct aspect ratio\n",
"sns.heatmap(corr, mask=mask, cmap=cmap, vmax=.3, center=0,\n",
"square=True, linewidths=.5, cbar_kws={\"shrink\": .5},\n",
" annot=True, fmt=\".1f\")\n",
"plt.show()"
]
},
{
"cell_type": "code",
"source": [
"import matplotlib.pyplot as plt\n",
"from scipy.cluster import hierarchy\n",
"correlation_matrix = X_train.corr()\n",
"correlation_matrix = np.corrcoef(correlation_matrix)\n",
"correlation_matrix = np.abs(correlation_matrix)\n",
"dist_matrix = 1 - correlation_matrix\n",
"import scipy.cluster.hierarchy as sch\n",
"clustering = sch.linkage(dist_matrix, method=\"complete\")\n",
"#clustering = shap.utils.hclust(X_train, metric='correlation')\n",
"plt.figure(figsize=(10, 7))\n",
"plt.title(\"Dendrograms\")\n",
"dend = hierarchy.dendrogram(clustering, labels=X_train.columns)\n",
"# Rotate labels for better readability\n",
"plt.xticks(rotation=90)\n",
"# Increase label size for better visibility\n",
"plt.tick_params(axis='x', which='major', labelsize=12)\n",
"plt.ylabel('Correlation Distance')\n",
"plt.show()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 798
},
"id": "7BkZVPV3halI",
"outputId": "b4fe20dd-db25-4b5a-a71e-38e3c5b9e0a6"
},
"execution_count": 15,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"<ipython-input-15-23ae0951633f>:8: ClusterWarning: scipy.cluster: The symmetric non-negative hollow observation matrix looks suspiciously like an uncondensed distance matrix\n",
" clustering = sch.linkage(dist_matrix, method=\"complete\")\n"
]
},
{
"output_type": "display_data",
"data": {
"text/plain": [
"<Figure size 1000x700 with 1 Axes>"
],
"image/png": "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BUtndlqdBM4wPCXNv/vnD4tLtjhL48BJhapLr6+mYAEAAKc5fZ+rvn37avLkyTIMIy3y4O9u36BYZUA+tjid9Gqnk17t5EOxynjO7OBoMQAAeChOH7naunWrNm3apB9//FFlypRR1qxZHca//vpr08Lhb/odlzx8rE4BPLrib0gfcVQeAAA8PKfLVc6cOfXSSy+lRRbcj4eP5JHN6hQAAAAAUuB0uZo/f35a5AAAAACADM3pa64AAAAAAEk9VLn68ssv1apVK1WvXl1PPfWUw8MZW7Zs0QsvvKD8+fPLZrNpxYoV913/66+/VoMGDeTv768cOXKoRo0aWrNmjcM6w4cPl81mc3g8+eSTzr5FAAAAAHCK0+VqypQp6tSpkwIDA/XLL7+oatWqyp07t/744w81btzYqW3FxsaqQoUKmjZtWqrW37Jlixo0aKBVq1Zpz549qlOnjl544QX98ssvDuuVKVNG58+ftz+2bt3qVC4AAAAAcJbT11xNnz5ds2fPVtu2bRUeHq7+/furaNGiGjp0qK5cueLUtho3buxUIZs0aZLD87Fjx+rbb7/Vd999p0qVKtmXZ8mSRXnz5nUqCwAAAAD8G04fuTp9+rSeeeYZSZK3t7euXbsmSXrttdf0xRdfmJvuARITE3Xt2jX5+fk5LD927Jjy58+vokWLqn379jp9+vR9txMXF6eYmBiHBwAAAAA4w+lylTdvXvsRqscff1w7duyQJJ04cSLdbyz80Ucf6fr162rVqpV9WbVq1RQeHq7Vq1drxowZOnHihJ577jl7CUzOuHHj5Ovra38UKlQoPeIDAAAAeIQ4Xa7q1q2rlStXSpI6deqkPn36qEGDBmrdunW63v9q8eLFGjFihJYtW6aAgAD78saNG6tly5YqX768goODtWrVKkVFRWnZsmUpbmvgwIGKjo62P86cOZMebwEAAADAI8Tpa65mz56txMRESdLbb7+t3Llza9u2bWrevLm6du1qesDkLFmyRG+88YaWL1+u+vXr33fdnDlz6oknntDx48dTXMfT01Oenp5mxwQAAACQiTh95Ors2bNyd3e3P2/Tpo2mTJmiHj16KDIy0tRwyfniiy/UqVMnffHFF2ratOkD179+/bp+//135cuXL82zAQAAAMi8nC5XQUFBunTpUpLlV65cUVBQkFPbun79uvbt26d9+/ZJunvd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0UmWX7t2TZ06dTIlFAAAAABkNE6XK8MwZLPZkiw/e/asfH19ndrWli1b9MILLyh//vyy2WxasWLFA18TERGhp556Sp6enipevLjCw8OTrDNt2jQVKVJEXl5eqlatmnbt2uVULgAAAABwVqqnYq9UqZJsNptsNpvq1aunLFn+99KEhASdOHFCjRo1cuovj42NVYUKFfT666+rRYsWD1z/xIkTatq0qd566y0tWrRIGzZs0BtvvKF8+fIpODhYkrR06VKFhYVp5syZqlatmiZNmqTg4GAdPXpUAQEBTuUDAAAAgNRKdbm6N0vgvn37FBwcrOzZs9vHPDw8VKRIEb388stO/eWNGzdW48aNU73+zJkzFRQUpI8//liSVKpUKW3dulUTJ060l6sJEyaoS5cu9lMUZ86cqR9++EHz5s3TgAEDnMoHAAAAAKmV6nI1bNgwSVKRIkXUunVreXl5pVmolGzfvl3169d3WBYcHKzevXtLujupxp49ezRw4ED7uJubm+rXr6/t27enuN24uDiHSTpiYmLMDQ4AAADgkef0NVcdOnSwpFhJUmRkpAIDAx2WBQYGKiYmRjdv3tRff/2lhISEZNeJjIxMcbvjxo2Tr6+v/VGoUKE0yQ8AAADg0eV0uUpISNBHH32kqlWrKm/evPLz83N4ZEQDBw5UdHS0/XHmzBmrIwEAAADIYJwuVyNGjNCECRPUunVrRUdHKywsTC1atJCbm5uGDx+eBhH/J2/evLpw4YLDsgsXLihHjhzy9vZWnjx55O7unuw6efPmTXG7np6eypEjh8MDAAAAAJzhdLlatGiR5syZo759+ypLlixq27atPv30Uw0dOlQ7duxIi4x2NWrU0IYNGxyWrVu3TjVq1JB0d2KNypUrO6yTmJioDRs22NcBAAAAgLTgdLmKjIxUuXLlJEnZs2e331C4WbNm+uGHH5za1vXr17Vv3z7t27dP0t2p1vft26fTp09Lunu6XmhoqH39t956S3/88Yf69++vI0eOaPr06Vq2bJn69OljXycsLExz5szRggULdPjwYXXr1k2xsbHc4BgAAABAmkr1bIH3FCxYUOfPn9fjjz+uYsWKae3atXrqqaf0888/y9PT06lt7d69W3Xq1LE/DwsLk3R30ozw8HCdP3/eXrQkKSgoSD/88IP69OmjyZMnq2DBgvr000/t07BLUuvW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mTPH/olgYmKiDMNQhw4dHvlSnpiYmOTr48yZM/rjjz/k6+urokWLSrp7emlUVJSKFSumQoUKWRE13bFvkjd8+HDZbDa999578vDwSNWtMDJLuRoxYoS9bNpsNr366qt69dVXk13XMAz17NkzPeNZLrNdv5oaEydOdPia6d27t3r37p3suoZhaPTo0emYzrW8++67unbtmvbt26eAgACHAwySFBISou+//96idKlHuXIx0dHR971+5vbt25lilrd/ev7557Vu3Tr7/Q5at26t8ePHy93dXYmJiZo0aZJ9NqvMYMGCBVqwYIH9+ejRo5OdPScqKkq//vqrmjRpkp7xXIa7u7vCw8MVFhamVatWOdznqkmTJipfvrzFCdNeRESEw/OtW7eqefPmmjNnjjp06KAsWe7+GLhz547mz5+v9957L9N8gMO+Sd4/Z2L95/PMrGrVqurevbsMw9D06dPVoEEDPfHEEw7r2Gw2ZcuWTZUrV1aLFi0sSuo6Dhw4oFWrVtmLV1BQkBo3bqyyZctaGyydNGzYUNmzZ5dhGOrfv7/atm2rp556ymGdv3/NVKlSxaKk1lu7dq369Omj0qVLJ3uAoWjRojpz5owFyZxDuXIxxYoV0969e1McX7t2rUqXLp2OiVxDWFiY1q1bp7i4OHl6emr48OE6ePCg/ZPS559/Xp988onFKdPPvelZ77l27VqS87TvfbN+6623NHTo0PSO6FLKly+fKYpUavTr10+dOnVS586dHZZnyZJFXbp00ZEjRxQWFqadO3dalNA67Bs8SOPGjdW4cWNJUmxsrN566y1Vq1bN4lSuKS4uTl27dtVnn30mwzAczhwYMGCA2rdvr08//VQeHh4WJ01bNWrUUI0aNSTd/Zpp0aIFs2um4ObNm/L3909x/Nq1a+mY5l9I17tq4YEmTpxoeHh4GEuWLDEuXbpkv4nlrVu3jEGDBhlubm7Gp59+anVMl3H16lUjJibG6hiWKlKkiPHtt99aHcPlXbt2zTh9+rRx6tSpJI/MxNvb25g6dWqK45988onh7e2djolcB/smeX/88YexcuXKFMdXrlxpnDhxIv0CIUPo1auXYbPZjLfffts4cuSIcfv2bePOnTvGkSNHjO7duxs2m83o1auX1THhQipXrmy0a9fOMIzkb0D97LPPGs8//7xV8VKNqdhdjGEYevPNNzV3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WZwUAB4d1atX17PPPquPP/442fG+fftq69at2rlzZzong6sqX768QkJCUrw+cciQIVqxYkWmul58+/bt2rZtmwzDUP/+/dW2bVs99dRTDuvYbDZly5ZNlStXVpUqVSxKmnocuXIxxYoV0/z589W5c+ckp3Fdu3ZN8+bNyzBTUZrJz89PP/30k7755hutWbPGPotXw4YNFRwcrJCQEPtpKV5eXpozZ46VcdNVXFycwymQa9euVePGje2fopYuXVrTp0+3Kp5LuXnzpiSlOBNRZhAZGam8efPed51du3apatWq6ZTIdbBvUhYZGam5c+dq7969io6OdjgNW8qc1xb9+uuveu2111IcDwoK0owZM9IxEVzdsWPHlDt37hTHc+fOnemut6pRo4Zq1KghSYqNjdXLL7+ssmXLWpzqXzLgUr755hvD3d3dKFCggDF48GBj/vz5xvz5841BgwYZBQoUMLJkyWJ88803VseECylTpozRunVrwzAM4+effzZsNpuxbNky+/jYsWMNf39/q+JZ7tSpU0bHjh2NgIAAw83NzXBzczMCAgKMTp06GSdPnrQ6Xrrz8/MzFi9enOxYfHy80b9/fyNLlizpnMo1sG+St3//fiNXrlyGl5eXUaFCBcPNzc0oW7asUbBgQcNmsxnFixc36tSpY3XMdFesWDHjueeeM27fvp1k7Pbt20bNmjWNYsWKWZAMrqpMmTJGhQoVjGvXriUZi4mJMcqVK2eUKVPGgmQwE0euXExISIhWrVql9957L8nseBUrVtTcuXMVHBxsUTq4oq5du6pXr146dOiQzp49q4IFC6pZs2b28Z9++kllypSxMKF1jhw5opo1ayoqKkoNGjRQqVKl7MsXLlyo7777Tlu3brVfVJwZVKlSRa+++qq++uorzZw5U3ny5JEk7dmzRx06dNCRI0dSPC35Uce+Sd6AAQOUPXt27du3Tz4+PgoICNDkyZNVt25dLV++XN26ddOiRYusjpnu+vfvr7feekvVq1fXW2+95XAfp5kzZ2rfvn2cNQAHo0eP1iuvvKInn3xSHTt2dPiaWbBggS5cuMCtQ3T395b7HSUfMmSIRclSyep2h5SdP3/e2LFjh7Fjxw7j/PnzVsexVJEiRYygoKD7PooWLWp1TMvMnj3bCAkJMTp27GgcPnzYvvzy5ctG5cqVjTlz5liYzjovvvii4e/vb/z6669Jxn777TcjICDACAkJsSCZtWbOnGk89thjRkBAgLFkyRJj8ODBRpYsWYzixYsb//3vf62OZyn2TVI5cuQwRo8ebRjG3e8pNpvNWLdunX28Z8+exvPPP29VPEt9+umnRmBgoGGz2exHxm02mxEQEGDMnj3b6nhwQWvWrDEqVqxo2Gw2h0elSpWM1atXWx3PUpcvXzaqV69u/3d0779//7Obm5vVMR+ICS2QIXTs2DHJLHAJCQk6deqUfvrpJ5UtW1aVKlXS/PnzLUoIV5QrVy717dtX77//frLjo0aN0oQJE3T16tV0Tma9kydPqkWLFtq/f78k6c0339THH38sHx8fi5NZj33j6LHHHtPEiRP1xhtvKDExUZ6enlq0aJFatWolSfr000/Vu3dvXb9+3eKk1rhz5452795tvxa4cOHCqlKliv26VyA5kZGRDl8zD7reMzPo3LmzlixZonnz5qlatWoqWrSo1qxZo6CgIE2cOFHbt2/Xjz/+qMDAQKuj3hf/8i22cOFCSdJrr70mm81mf/4goaGhaRnL5dxvOtv9+/crODhY7du3T79AyBBu375938krfHx8dPv27XRM5BoMw9AXX3yhQ4cOKTAwUBcvXtS2bdt07NgxVahQwep4lmLfJBUUFKQTJ05Iujsle1BQkNavX28vV9u2bVPOnDktTGitLFmyqHr16qpevbrVUZCB5M2bl0L1D6tWrVLXrl3VunVrXb58WdLd7znFixfXtGnT1KJFC/Xu3VtffPGFxUnvjyNXFnNzc3O4iWVqbsSYGW9i+SDDhg3T999/rz179lgdxRJr1qzR3Llz9ccff+jq1atJ7nKeWe/4/txzz+mvv/7Sjh075Ovr6zAWExOj6tWrK0+ePNqyZYtFCdPf0aNH1aFDB+3atUtdu3bVRx99pL1796pTp046e/as3n//fQ0aNChT3BT2n9g3yfvn7RwmTpyovn37qm7dujIMQxEREerbt6/Gjx9vcdK0de/7xPPPP+/w/EHurY/Mhw/QnePt7a2pU6eqc+fOiouLk7e3t7755hv7vV1nzpypQYMG6cqVKxYnvT/KlcX+fkj4788f5N76uGv69Onq27evfartzOTDDz/UgAEDFBgYqKpVqypXrlzJrpcZT5ncuHGjGjVqpNy5c6tTp0564oknJN39JXrBggW6fPmyVq9erTp16licNP14e3vL399fc+fOVYMGDezLb9y4of79+2vGjBmqXLmydu3aZWFKa7Bvknf16lX98ccfKl++vLJmzSrDMDRmzBh99dVXcnd3V7NmzTRo0CD7zZgfVcl9GHq/m5YbhsGHoZkcH6A7p1ixYnr99dc1ePBgSXeP7nXv3l1Dhw6VdPc+YNOnT7cf1XJVlCsXcvv2bR0+fFh+fn4qWLCg1XEyjMuXL6thw4aKiYnRsWPHrI6T7goWLKhSpUpp1apVypo1q9VxXM769ev17rvv2q+fuadixYr68MMPVa9ePYuSWaNjx46aPHlykiN592zcuFGdO3e2nwaWmbBvcD+bN2+WJNWqVcvh+YPcWx+ZDx+gO6dTp046ceKEIiIiJEm9evXS3LlzNXDgQCUmJmr8+PEKDg7Wl19+aW3QB6BcuZCEhAR5eXnp448/Vs+ePa2O41Lq1q2b7PKoqCgdOXJE8fHx+uyzz9S2bdt0Tma9bNmyacKECeratavVUVwaFw+n3vXr15PcxBx3sW8AIG389ttvWrdund5++215enrq6tWratmypTZu3Cjp7im2X3zxhfLly2dx0vtjQgsX4u7ursKFCysuLs7qKC4nMTExyekXNptNQUFBql+/vl5//XU9+eSTFqWzVtWqVXX06FGrY7g8Lh7+n4SEBH3++ef64YcfHApns2bN1L59+0xdHtg3SK07d+7oxo0bypEjR7LjMTEx8vHxYdZA2F25ckVnz55V+fLlkx3/7bffVLBgwRRP73/UlStXTuXKlbM/z5Url9avX6+oqCi5u7vrscceszBd6nHkysVMnjxZU6dO1c6dO+Xn52d1HGQAhw8fVuPGjTV27Fi1a9fO6jguZcqUKfrhhx+0Zs2aZMcbN26s5s2bq1u3bumczDrR0dEKDg7Wzz//rMcee0xFixaVJJ04cUIxMTGqWrWq1qxZk+IvjI8y9g2c0b17d23ZskUHDhxIdrxcuXKqW7euJk+enM7J4Ko6dOigo0ePaseOHcmOP/PMMypVqpTmzp2bzslgJj5OcTEJCQny9PRUsWLF9Morr6hIkSJJppK22Wzq06ePRQnhalq3bq07d+7otddeU7du3VSwYEG5u7s7rGOz2ZJcc5QZzJ07N8VTSiWpdOnSmj17dqYqV4MHD9aePXv0ySefqEuXLvbr9G7fvq1PP/1UPXv21ODBg/XJJ59YnDT9sW/gjNWrV993VrdXXnlFn3/+OeUKdhs3brzvz5sXXnhBM2fOTMdErichIUFr1qy57+zHQ4YMsShd6lCuXEy/fv3sf07pk4vMWK42bNigvXv36t1337UvmzdvnoYPH664uDi1a9dOH330UZJSkRn4+fkpd+7cKlGihNVRXM7vv/+ut99+O8XxJ598UnPmzEnHRNb75ptv1L17d3Xv3t1hedasWdWtWzcdPnxYX375ZaYsEOwbOOPPP/9UgQIFUhzPnz+/zp07l46J4OouXbqkPHnypDieO3duXbx4MR0TuZbdu3fr5Zdf1tmzZ5OUqnsoV3Aas1Alb/jw4Q6z5/z222/q2rWrypcvr+LFi2vKlCnKmzev3nvvPQtTWuPerDpIysPDQ5GRkSmOnz9/PtPds+jy5csqWbJkiuNPPvmky99DJK2wb+CM3Llz3/d618OHD3MKKRzky5dPv/zyS4rje/bskb+/fzomci3du3fXzZs3tWLFCj333HMZ9ubkmeu3igygcOHCqXpkNocPH1aVKlXszz/77DPlyJFD//3vf7V06VJ16dIl1TfnQ+ZRvXp1hYeH69q1a0nGoqOjNX/+fFWvXt2CZNYpXry4Vq5cmeL4ypUrVaxYsXRM5DrYN8mbMmWKgoODUxxv3LixZsyYkY6JXEOjRo00a9asZH9Z3rt3r2bPnq3GjRtbkAyuKiQkRHPnzk32+8y3336r+fPn66WXXrIgmWv49ddf9d577+mFF17IsMVK4siVy4qNjdXmzZsdZquqVauWsmXLZnEya8TGxjp8Arh69Wo1atRIPj4+kqSnn35an3/+uVXxLBcTE6Pp06dr06ZNunjxombNmqWqVavqypUrCg8PV/PmzVW8eHGrY6a7YcOGqVatWqpYsaJ69+6tMmXKSJIOHDigSZMm6fz581q8eLHFKdNX9+7d1aNHDzVp0kS9e/d2uLHylClTtG7dOk2dOtXilNZg3ySPaxeTN2rUKK1evVpVq1ZV8+bNHb6/fPfddwoICNCoUaMsTglXMnz4cK1fv14vvfSSKlSooLJly0q6+zWzf/9+lSpVSiNGjLA4pXUKFiyY4umAGYoBlzNlyhQjR44chpubm2Gz2eyPHDlyGJ988onV8SxRokQJ46233jIMwzCOHTtm2Gw2Izw83D4+fvx4w8/Pz6p4ljpz5oxRtGhRI2vWrEbp0qUNNzc3Y8OGDfbxJ554wujZs6eFCa21du1aIygoyLDZbIabm5v931XRokWNNWvWWB3PEsOGDTM8PT3t++Pew9PT0xg+fLjV8SzFvkkqW7ZsxqxZs1Icnz17tvHYY4+lYyLX8eeffxqhoaGGr6+v/We1r6+v0aFDB+PcuXNWx4MLun79ujF06FCjbNmyhre3t+Ht7W2ULVvWGDZsmHH9+nWr41lq9uzZxhNPPGFER0dbHeVf4ciVi1m4cKF69eqlGjVqqGfPnipVqpSku6fFffLJJ+rVq5d8fX312muvWZw0fbVv314jR47UuXPndPDgQeXKlUsvvviifXzPnj32T5kzm3fffVfXrl3Tvn37FBAQoICAAIfxkJAQff/99xals16DBg10/Phx/fLLL/r9998lScWKFdNTTz2V5N5pmcXw4cPVo0cPrV+/3uHoeP369e97sXVmwL5JimsXU5YvXz4tWLBAhmHo0qVLkiR/f/9M+70FD5YtWzaNGDEiUx+humfChAlJlmXPnl3FixdXmzZtVKhQoWRnP3b1Sd24z5WLqVixonLmzKkNGzYk+YJKSEhQvXr1FBUVpX379lkT0CJ37tzRsGHDtGrVKuXMmVMjR47Uc889J+nuTflKly6tXr16aeDAgRYnTX+5c+dWnz599P777+vy5cvy9/fX+vXr7afxzJo1S++++65iYmIsTgogI2rSpImOHDmi/fv3J7mJZ3R0tCpWrKiSJUtq9erVFiUEkBE9zIcyNptNCQkJaZDGPBy5cjFHjx5NcUpxd3d3tWzZ0mG69swiS5YsGjNmjMaMGZNkzM/P776fqj7qbt68ed/ZhZKbzOFRtWXLlod63fPPP29yEtdx+vRpSdLjjz/u8PxB7q3/KGPfpA7XLt7fTz/9pL179yo6OlqJiYkOYxlh2mikr1u3bumrr76679dMZrmJ8KM6QzblysX4+vrq5MmTKY6fPHmSqV3hoHTp0tqyZYu6du2a7PiKFStUqVKldE5ljdq1azt1Oo5hGBniU7B/o0iRIrLZbLp586Y8PDzszx/kUd4n97BvUqdatWr67rvv1LVrV/Xq1cu+jwzDUFBQkFauXKkaNWpYnDL9XblyRU2bNtWuXbvs30vunQx078+UK/zdqVOnVKdOHZ08eVI5c+ZUdHS0/Pz8FBUVpYSEBOXJk0fZs2e3Oma6eVRnv6ZcuZimTZvqk08+UeXKldWmTRuHsaVLl2rq1Klq3769Renginr37q0OHTqofPnyatmypSQpMTFRx48f14gRI7R9+3Z99dVXFqdMH5s2bbI6gsuZN2+ebDabsmbN6vAc7BtncO1iUu+++65+/fVXLV68WNWqVVPRokW1Zs0aBQUFaeLEidq+fbt+/PFHq2PChbz77ruKjo7Wjh07VLRoUQUEBGjp0qV69tlnNWXKFE2dOlVr1qyxOqblrly5ovXr19sPNhQpUkT16tVT7ty5rQ2WSlxz5WIuXbqkWrVq6ejRo8qbN69KlCghSTp27JgiIyP15JNPavPmzZn2wmokb8yYMRo+fLgMw1BiYqLc3NxkGIbc3Nw0evToTHlzZQBIS/ny5VPbtm01YcIE+/Wu69atU7169SRJLVq0kKenp7744guLk8JV5MmTR926ddOoUaN05coV5cmTx+Fr5vXXX9eFCxf0ww8/WJzUOsOHD9d//vMfxcXFOSz38PBQ//79NXLkSIuSpR5HrlyMv7+/9u7dq1mzZunHH3+0z1ZVrlw5vffee3rzzTfl5eVlcUq4msGDB+vVV1/V119/rePHjysxMVHFihVTixYtVLRoUavjAchA7l27eO9axNRey/goX7uYnKioKPv1Z/dO5bp+/bp9vGHDhho0aJAl2eCabty4oSJFikiScuTIIZvNpujoaPt4jRo1MuV19feMGjVKI0eOVNOmTdWjRw+Hew1OnTpVY8aMUdasWV3+VFvKlQvy8vJSr1691KtXL6ujIAMpXLiwy09PaoXMfvHww3zKl1muE2HfJO/etYv3rkV70LWMmeHaxeTkz5/fPpmSp6enAgICtH//fvttQs6dO5dpT5lE8h5//HGdPXtW0t2JugoUKKAdO3aoRYsWkqRDhw5l6g/QZ86cqRdeeEHffvutw/KgoCA1atRIL7zwgmbMmOHy34MpV0AG4+bm9lA/sDPbLz4SFw9Ld0+x+Ke/T0jwz+WZ6SJ89k3y7l276OHh4fAcjp5//nmtW7dOgwcPliS1bt1a48ePl7u7uxITEzVp0iQFBwdbnBKupG7duvr22281bNgwSVLHjh01btw4Xb16VYmJifrss88UGhpqcUrrREdHq1GjRimON2nSRBEREekX6CFRrix2715EzrDZbNqwYUMapHEdCxcufKjXZYZvSkOHDk1Srr755hsdPHhQwcHBKlmypCTpyJEjWrt2rcqWLauQkBALklqPi4eV5EjduXPn1LRpU5UtW1a9e/d2+HqZNGmSDh06lGnO92ffJK9WrVr2PxuGoUqVKsnDwyNTf6KenLCwMK1bt05xcXHy9PTU8OHDdfDgQXv5fv755/XJJ59YnBKuZMCAAfr555/tXzODBg3Sn3/+qS+//FLu7u5q165dsjfWzSyeffZZ7dy5U926dUt2fOfOnXr22WfTOZXzmNDCYs5OHX3Po/5J4qN6Y7m0MHv2bA0fPlybNm2y/zJ4z+HDh1W3bl2NHDlSXbp0sSihdbh4OKmQkBBlzZpVy5cvT3b8lVdeUUJCgr755pt0TmY99k1ScXFxypYtm8aOHav+/ftbHSdDiIqKkru7e5IbLgO4vxMnTqhRo0Zq0qSJ3n77bfs143/88YemTp2q1atXa/Xq1fbr1lwVR64slhEOb1rhUb2xXFr48MMP1aNHjyTFSpJKlSqlHj16aPz48ZmyXHHxcFIbN27Uf/7znxTH69Wrl2lnl2TfJOXp6am8efPK09PT6igZRs6cOa2OAGRI5cuXV2JioqZMmaIpU6bYP2i/d5aBp6enypcv7/Caf/5cdwWUK7ikR/XGcmnh7Nmz9vv0JCdr1qz2C2gzGy4eTsrLy0vbt29P8bSLbdu2Zbp9cg/7JnkdO3bUwoUL1a1bN/t1WABgtpdffvmRmASGcuWirl27plOnTunq1atJLqyWMt+Ut0hZ2bJlNX36dLVr104FChRwGDt79qymT5+ucuXKWZTOWlw8nFT79u01ZcoU5cyZU++8846KFSsmSfr99981ZcoULV68WD179rQ4pTXYN8krV66cVqxYoTJlyqhjx44qUqSIvL29k6x370MLAHgY4eHhVkcwBddcuZjLly+rR48e+uqrr5K9fiizTnkrSZGRkZo7d+59p9R+1Cf6SM7WrVvtM1K99NJLKl68uKS7N55esWKFDMPQ2rVrVbNmTStjWuL06dP6+eef1axZM3l6eurWrVv2f1/u7u5q1qyZpkyZohw5clgdNd3Ex8erc+fOWrRokWw2m8NpF4ZhqG3btpo/f36mPELBvkleaq6Bzaw/lwDgnyhXLqZFixb67rvv1LNnTz333HPKlStXsuv9fTanzODXX39V7dq1dfPmTZUsWVK//fabSpcuraioKJ07d07FihVToUKFtHHjRqujWuLAgQMaMmSI1q5dq5s3b0qSvL29FRwcrBEjRmTaI1dI2a+//qpVq1bZb1ReuHBhNW7cWBUqVLA4mfXYN44iIiJSdapOZvu5BODfeVRnhqZcuZjs2bOre/fuGj9+vNVRXEqTJk104MABbd26VT4+PgoICND69etVt25dLV++XN26ddOqVatUtWpVq6NaKjExUZcuXZIk+fv7P9SsiwAAAGntUZ0ZmmuuXIyPj4/LTzFphZ9++kn9+/fX448/ritXrkj63+wxLVu21NatW/Xuu+9q8+bNVsa0nJubmwIDA62OAeARUrRoUU2aNEnNmzdPdvz7779Xz5499ccff6RzsvR1+vTph3rd448/bnISZGQxMTGaPn26Nm3apIsXL2rWrFmqWrWqrly5ovDwcDVv3tx+ev+j7lGdGZpy5WJeffVVffPNN+revbvVUVxKYmKivTTkzJlT7u7u9pIl3b3geu7cuVbFA4BH1smTJ3X9+vUUx69fv24/hfJRVqRIkYeayczVP2VH+jl79qxq1aqlM2fOqESJEjpy5Ij935afn59mzZqlU6dOafLkyRYnTR+P6szQlCuL7d271+F5y5YttXnzZjVq1EhvvvmmChUqJHd39ySve+qpp9IroksICgqyf8Lh5uamoKAgrV+/Xq1atZJ0d4pk7i0CAGnjfqXi559/zhTff+fNm+ewHxITEzV58mSdOnVK7du3t99r8MiRI1q8eLGKFCmSKWeXRMreffddXbt2Tfv27VNAQIACAgIcxkNCQvT9999blA5moVxZrEqVKkl+aN27DG7dunVJ1s+sswU2bNhQy5cv15gxYyRJ3bp1U9++ffXHH3/IMAxFRESob9++FqcEgEfD5MmT7Z+e22w29e7dW4MHD06yXnR0tKKiotSuXbv0jpjuOnbs6PB8zJgxunXrlo4fP67cuXM7jA0fPlw1a9ZUZGRkOiaEq1u7dq369Omj0qVL6/Lly0nGixYtqjNnzliQzDXUrVv3getkhJmhKVcWmz9/vtURMoTBgwerbdu2un37trJmzarevXsrNjbWPqX2kCFDNGjQIKtjAi7t9u3bOnz4sPz8/FSwYEGr47gU9o2jgIAAlSlTRtLd0wILFCiQ5D56NptN2bJlU+XKlTPlqewzZ85Unz59khQr6e6E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\n"
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"source": [
"import shap"
],
"metadata": {
"id": "SN59IYeQh9ni"
},
"execution_count": 17,
"outputs": []
},
{
"cell_type": "code",
"source": [
"masker = shap.maskers.Partition(X_train, clustering=clustering)\n",
"explainer2 = shap.PartitionExplainer(model.predict, masker)\n",
"shap_values2 = explainer2(X_test)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "N5kDXO_ohwQE",
"outputId": "3e8edc5d-c849-4a00-d02f-41bc78861d99"
},
"execution_count": 18,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"\u001b[1;30;43mStreaming output truncated to the last 5000 lines.\u001b[0m\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 66%|██████▌ | 648/980 [04:09<01:49, 3.04it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 66%|██████▌ | 649/980 [04:09<01:44, 3.15it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 66%|██████▋ | 650/980 [04:09<01:43, 3.18it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 66%|██████▋ | 651/980 [04:10<01:45, 3.11it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 652/980 [04:10<01:44, 3.14it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 653/980 [04:10<01:46, 3.08it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 654/980 [04:11<01:45, 3.09it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 655/980 [04:11<01:42, 3.16it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 656/980 [04:11<01:41, 3.21it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 657/980 [04:12<01:43, 3.13it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 658/980 [04:12<01:41, 3.19it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 659/980 [04:12<01:38, 3.27it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 660/980 [04:13<01:37, 3.28it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 67%|██████▋ | 661/980 [04:13<01:33, 3.40it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 662/980 [04:13<01:32, 3.43it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 663/980 [04:13<01:33, 3.40it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 664/980 [04:14<01:34, 3.35it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 665/980 [04:14<01:36, 3.28it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 666/980 [04:14<01:39, 3.14it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 667/980 [04:15<01:52, 2.78it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 668/980 [04:15<02:02, 2.54it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 669/980 [04:16<02:06, 2.46it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 670/980 [04:16<02:00, 2.57it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 68%|██████▊ | 671/980 [04:17<01:56, 2.64it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▊ | 672/980 [04:17<01:57, 2.61it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▊ | 673/980 [04:18<02:55, 1.75it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▉ | 674/980 [04:19<03:40, 1.39it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▉ | 675/980 [04:19<03:06, 1.63it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▉ | 676/980 [04:20<02:37, 1.93it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▉ | 677/980 [04:20<02:18, 2.19it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▉ | 678/980 [04:20<02:11, 2.30it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▉ | 679/980 [04:21<02:03, 2.44it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▉ | 680/980 [04:21<02:01, 2.48it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 69%|██████▉ | 681/980 [04:21<01:57, 2.53it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 70%|██████▉ | 682/980 [04:22<01:55, 2.58it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 70%|██████▉ | 683/980 [04:22<01:54, 2.59it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 70%|██████▉ | 684/980 [04:23<01:51, 2.65it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 70%|██████▉ | 685/980 [04:23<01:49, 2.69it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 70%|███████ | 686/980 [04:23<01:47, 2.73it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 70%|███████ | 687/980 [04:24<01:43, 2.84it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 70%|███████ | 688/980 [04:24<01:39, 2.92it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 70%|███████ | 689/980 [04:24<01:35, 3.05it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 70%|███████ | 690/980 [04:25<02:06, 2.30it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████ | 691/980 [04:25<02:21, 2.05it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████ | 692/980 [04:26<02:04, 2.32it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████ | 693/980 [04:26<01:55, 2.49it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████ | 694/980 [04:26<01:51, 2.57it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████ | 695/980 [04:27<01:45, 2.71it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████ | 696/980 [04:27<01:40, 2.83it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████ | 697/980 [04:27<01:37, 2.91it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████ | 698/980 [04:28<01:35, 2.97it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████▏ | 699/980 [04:28<01:33, 2.99it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 71%|███████▏ | 700/980 [04:28<01:36, 2.90it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 701/980 [04:29<01:33, 2.98it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 702/980 [04:29<01:32, 3.01it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 703/980 [04:30<01:40, 2.75it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 704/980 [04:30<01:44, 2.64it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 705/980 [04:30<01:45, 2.60it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 706/980 [04:31<01:47, 2.55it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 707/980 [04:31<01:48, 2.52it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 708/980 [04:32<01:49, 2.49it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 709/980 [04:32<01:51, 2.43it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 72%|███████▏ | 710/980 [04:32<01:49, 2.47it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 711/980 [04:33<01:50, 2.43it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 712/980 [04:33<01:52, 2.38it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 713/980 [04:34<01:52, 2.38it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 714/980 [04:34<01:46, 2.51it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 715/980 [04:34<01:38, 2.70it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 716/980 [04:35<01:36, 2.74it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 717/980 [04:35<01:33, 2.81it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 718/980 [04:35<01:30, 2.88it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 719/980 [04:36<01:31, 2.84it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 73%|███████▎ | 720/980 [04:36<01:32, 2.80it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▎ | 721/980 [04:36<01:33, 2.76it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▎ | 722/980 [04:37<01:36, 2.68it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▍ | 723/980 [04:37<01:32, 2.78it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▍ | 724/980 [04:38<01:32, 2.75it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▍ | 725/980 [04:38<01:35, 2.68it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▍ | 726/980 [04:38<01:35, 2.65it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▍ | 727/980 [04:39<01:32, 2.75it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▍ | 728/980 [04:39<01:30, 2.78it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▍ | 729/980 [04:39<01:28, 2.82it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 74%|███████▍ | 730/980 [04:40<01:27, 2.87it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 75%|███████▍ | 731/980 [04:40<01:31, 2.72it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 75%|███████▍ | 732/980 [04:40<01:28, 2.79it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 75%|███████▍ | 733/980 [04:41<01:26, 2.85it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 75%|███████▍ | 734/980 [04:41<01:23, 2.95it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 75%|███████▌ | 735/980 [04:41<01:20, 3.05it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 75%|███████▌ | 736/980 [04:42<01:18, 3.11it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 75%|███████▌ | 737/980 [04:42<01:16, 3.18it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 75%|███████▌ | 738/980 [04:42<01:15, 3.19it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 75%|███████▌ | 739/980 [04:43<01:17, 3.09it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▌ | 740/980 [04:43<01:21, 2.96it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▌ | 741/980 [04:44<01:32, 2.59it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▌ | 742/980 [04:45<02:27, 1.61it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▌ | 743/980 [04:45<02:08, 1.84it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▌ | 744/980 [04:45<01:57, 2.01it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▌ | 745/980 [04:46<01:45, 2.22it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▌ | 746/980 [04:46<01:40, 2.33it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▌ | 747/980 [04:47<01:34, 2.48it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▋ | 748/980 [04:47<01:32, 2.51it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 76%|███████▋ | 749/980 [04:47<01:30, 2.54it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 750/980 [04:48<01:31, 2.51it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 751/980 [04:48<01:32, 2.47it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 752/980 [04:49<01:33, 2.44it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 753/980 [04:49<01:32, 2.46it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 754/980 [04:49<01:25, 2.64it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 755/980 [04:50<01:20, 2.80it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 756/980 [04:50<01:18, 2.86it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 757/980 [04:50<01:14, 3.00it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 758/980 [04:50<01:11, 3.09it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 77%|███████▋ | 759/980 [04:51<01:11, 3.11it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 760/980 [04:51<01:10, 3.14it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 761/980 [04:51<01:10, 3.11it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 762/980 [04:52<01:09, 3.15it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 763/980 [04:52<01:08, 3.16it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 764/980 [04:52<01:06, 3.24it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 765/980 [04:53<01:07, 3.21it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 766/980 [04:53<01:06, 3.22it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 767/980 [04:53<01:05, 3.26it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 768/980 [04:54<01:07, 3.16it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 78%|███████▊ | 769/980 [04:54<01:06, 3.18it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▊ | 770/980 [04:54<01:07, 3.13it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▊ | 771/980 [04:55<01:06, 3.14it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▉ | 772/980 [04:55<01:08, 3.02it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▉ | 773/980 [04:55<01:09, 2.98it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▉ | 774/980 [04:56<01:12, 2.85it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▉ | 775/980 [04:56<01:11, 2.85it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▉ | 776/980 [04:56<01:11, 2.87it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▉ | 777/980 [04:57<01:11, 2.83it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▉ | 778/980 [04:57<01:11, 2.83it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 79%|███████▉ | 779/980 [04:57<01:11, 2.82it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 80%|███████▉ | 780/980 [04:58<01:11, 2.79it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 80%|███████▉ | 781/980 [04:58<01:08, 2.92it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 80%|███████▉ | 782/980 [04:58<01:05, 3.00it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 80%|███████▉ | 783/980 [04:59<01:04, 3.05it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 80%|████████ | 784/980 [04:59<01:12, 2.70it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 80%|████████ | 785/980 [05:00<01:14, 2.62it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 80%|████████ | 786/980 [05:00<01:16, 2.55it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 80%|████████ | 787/980 [05:00<01:14, 2.60it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 80%|████████ | 788/980 [05:01<01:12, 2.63it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████ | 789/980 [05:01<01:12, 2.63it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████ | 790/980 [05:02<01:11, 2.67it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████ | 791/980 [05:02<01:10, 2.70it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████ | 792/980 [05:02<01:11, 2.65it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████ | 793/980 [05:03<01:13, 2.55it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████ | 794/980 [05:03<01:18, 2.37it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████ | 795/980 [05:04<01:19, 2.34it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████ | 796/980 [05:04<01:21, 2.27it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████▏ | 797/980 [05:05<01:19, 2.30it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 81%|████████▏ | 798/980 [05:05<01:12, 2.50it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 799/980 [05:05<01:09, 2.61it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 800/980 [05:05<01:04, 2.80it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 801/980 [05:06<01:03, 2.84it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 802/980 [05:06<01:02, 2.84it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 803/980 [05:07<01:02, 2.83it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 804/980 [05:07<01:01, 2.85it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 805/980 [05:07<01:02, 2.78it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 806/980 [05:08<01:01, 2.83it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 807/980 [05:08<01:01, 2.83it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 82%|████████▏ | 808/980 [05:08<01:01, 2.80it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 809/980 [05:09<01:01, 2.78it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 810/980 [05:09<01:00, 2.83it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 811/980 [05:09<00:58, 2.88it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 812/980 [05:10<00:55, 3.01it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 813/980 [05:10<00:55, 2.99it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 814/980 [05:10<00:55, 2.97it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 815/980 [05:11<00:54, 3.05it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 816/980 [05:11<00:52, 3.12it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 817/980 [05:11<00:50, 3.20it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 83%|████████▎ | 818/980 [05:12<00:50, 3.21it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▎ | 819/980 [05:12<00:49, 3.24it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▎ | 820/980 [05:12<00:48, 3.33it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▍ | 821/980 [05:12<00:49, 3.18it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▍ | 822/980 [05:13<00:50, 3.10it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▍ | 823/980 [05:13<00:49, 3.17it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▍ | 824/980 [05:13<00:49, 3.17it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▍ | 825/980 [05:14<00:47, 3.24it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▍ | 826/980 [05:14<00:46, 3.30it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▍ | 827/980 [05:14<00:47, 3.21it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 84%|████████▍ | 828/980 [05:15<00:49, 3.07it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 85%|████████▍ | 829/980 [05:15<00:50, 2.97it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 85%|████████▍ | 830/980 [05:15<00:52, 2.85it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 85%|████████▍ | 831/980 [05:16<00:51, 2.91it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 85%|████████▍ | 832/980 [05:16<00:50, 2.92it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 85%|████████▌ | 833/980 [05:16<00:52, 2.81it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 85%|████████▌ | 834/980 [05:17<00:51, 2.85it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 85%|████████▌ | 835/980 [05:17<00:51, 2.80it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 85%|████████▌ | 836/980 [05:18<00:50, 2.83it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 85%|████████▌ | 837/980 [05:18<00:49, 2.87it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▌ | 838/980 [05:18<00:49, 2.88it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▌ | 839/980 [05:19<00:51, 2.75it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▌ | 840/980 [05:19<00:55, 2.53it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▌ | 841/980 [05:20<00:55, 2.51it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▌ | 842/980 [05:20<00:57, 2.38it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▌ | 843/980 [05:20<00:59, 2.29it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▌ | 844/980 [05:21<00:57, 2.36it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▌ | 845/980 [05:21<00:53, 2.53it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▋ | 846/980 [05:21<00:49, 2.70it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 86%|████████▋ | 847/980 [05:22<00:47, 2.80it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 848/980 [05:22<00:46, 2.82it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 849/980 [05:22<00:45, 2.89it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 850/980 [05:23<00:43, 2.97it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 851/980 [05:23<00:42, 3.04it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 852/980 [05:23<00:41, 3.08it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 853/980 [05:24<00:40, 3.15it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 854/980 [05:24<00:39, 3.22it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 855/980 [05:24<00:37, 3.34it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 856/980 [05:25<00:37, 3.28it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 87%|████████▋ | 857/980 [05:25<00:38, 3.21it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 858/980 [05:25<00:38, 3.17it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 859/980 [05:26<00:38, 3.16it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 860/980 [05:26<00:38, 3.15it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 861/980 [05:26<00:37, 3.18it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 862/980 [05:27<00:36, 3.27it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 863/980 [05:27<00:36, 3.23it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 864/980 [05:27<00:36, 3.18it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 865/980 [05:27<00:36, 3.14it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 866/980 [05:28<00:36, 3.15it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 88%|████████▊ | 867/980 [05:28<00:35, 3.16it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▊ | 868/980 [05:28<00:35, 3.13it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▊ | 869/980 [05:29<00:37, 2.99it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▉ | 870/980 [05:29<00:37, 2.95it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▉ | 871/980 [05:29<00:36, 2.99it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▉ | 872/980 [05:30<00:36, 2.94it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▉ | 873/980 [05:30<00:36, 2.93it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▉ | 874/980 [05:31<00:36, 2.92it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▉ | 875/980 [05:31<00:39, 2.66it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▉ | 876/980 [05:31<00:41, 2.48it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 89%|████████▉ | 877/980 [05:32<00:39, 2.60it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 90%|████████▉ | 878/980 [05:32<00:37, 2.69it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 90%|████████▉ | 879/980 [05:33<00:38, 2.62it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 90%|████████▉ | 880/980 [05:33<00:37, 2.66it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 90%|████████▉ | 881/980 [05:33<00:37, 2.63it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 90%|█████████ | 882/980 [05:34<00:38, 2.57it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 90%|█████████ | 883/980 [05:34<00:37, 2.59it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 90%|█████████ | 884/980 [05:34<00:38, 2.51it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 90%|█████████ | 885/980 [05:35<00:39, 2.39it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 90%|█████████ | 886/980 [05:35<00:41, 2.26it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████ | 887/980 [05:36<00:39, 2.35it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████ | 888/980 [05:36<00:36, 2.49it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████ | 889/980 [05:37<00:35, 2.56it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████ | 890/980 [05:37<00:34, 2.63it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████ | 891/980 [05:37<00:32, 2.72it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████ | 892/980 [05:38<00:31, 2.76it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████ | 893/980 [05:38<00:30, 2.84it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████ | 894/980 [05:38<00:29, 2.91it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████▏| 895/980 [05:39<00:28, 3.01it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 91%|█████████▏| 896/980 [05:39<00:27, 3.02it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 897/980 [05:39<00:26, 3.09it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 898/980 [05:39<00:25, 3.19it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 899/980 [05:40<00:25, 3.15it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 900/980 [05:40<00:25, 3.11it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 901/980 [05:40<00:25, 3.09it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 902/980 [05:41<00:25, 3.04it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 903/980 [05:41<00:25, 3.06it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 904/980 [05:41<00:24, 3.13it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 905/980 [05:42<00:24, 3.09it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 92%|█████████▏| 906/980 [05:42<00:24, 3.03it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 907/980 [05:42<00:23, 3.15it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 908/980 [05:43<00:23, 3.12it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 909/980 [05:43<00:23, 3.08it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 910/980 [05:43<00:21, 3.28it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 911/980 [05:44<00:20, 3.33it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 912/980 [05:44<00:20, 3.33it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 913/980 [05:44<00:19, 3.35it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 914/980 [05:45<00:19, 3.33it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 915/980 [05:45<00:19, 3.30it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 93%|█████████▎| 916/980 [05:45<00:20, 3.13it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▎| 917/980 [05:46<00:21, 2.86it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▎| 918/980 [05:46<00:23, 2.70it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▍| 919/980 [05:46<00:22, 2.66it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▍| 920/980 [05:47<00:23, 2.60it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▍| 921/980 [05:47<00:22, 2.61it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▍| 922/980 [05:48<00:22, 2.55it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▍| 923/980 [05:48<00:22, 2.49it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▍| 924/980 [05:48<00:22, 2.51it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▍| 925/980 [05:49<00:21, 2.59it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 94%|█████████▍| 926/980 [05:49<00:20, 2.60it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 95%|█████████▍| 927/980 [05:50<00:20, 2.64it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 95%|█████████▍| 928/980 [05:50<00:20, 2.56it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 95%|█████████▍| 929/980 [05:50<00:20, 2.46it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 95%|█████████▍| 930/980 [05:51<00:20, 2.44it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 95%|█████████▌| 931/980 [05:51<00:19, 2.46it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 95%|█████████▌| 932/980 [05:52<00:18, 2.58it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 95%|█████████▌| 933/980 [05:52<00:17, 2.72it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 95%|█████████▌| 934/980 [05:52<00:15, 2.90it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 95%|█████████▌| 935/980 [05:52<00:14, 3.00it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▌| 936/980 [05:53<00:14, 3.07it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▌| 937/980 [05:53<00:13, 3.08it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▌| 938/980 [05:53<00:14, 2.98it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▌| 939/980 [05:54<00:14, 2.90it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▌| 940/980 [05:54<00:13, 2.88it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▌| 941/980 [05:55<00:13, 2.87it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▌| 942/980 [05:55<00:13, 2.91it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▌| 943/980 [05:55<00:12, 2.88it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▋| 944/980 [05:56<00:12, 2.86it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 96%|█████████▋| 945/980 [05:56<00:12, 2.85it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 946/980 [05:56<00:11, 2.93it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 947/980 [05:57<00:11, 2.83it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 948/980 [05:57<00:11, 2.76it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 949/980 [05:57<00:11, 2.82it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 950/980 [05:58<00:11, 2.71it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 951/980 [05:58<00:10, 2.72it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 952/980 [05:58<00:09, 2.82it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 953/980 [05:59<00:09, 2.86it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 954/980 [05:59<00:08, 2.93it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 97%|█████████▋| 955/980 [05:59<00:08, 2.90it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 956/980 [06:00<00:08, 2.85it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 957/980 [06:00<00:08, 2.87it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 958/980 [06:00<00:07, 2.95it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 959/980 [06:01<00:07, 2.93it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 960/980 [06:01<00:07, 2.77it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 961/980 [06:02<00:07, 2.55it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 962/980 [06:02<00:07, 2.51it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 963/980 [06:03<00:06, 2.46it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 964/980 [06:03<00:06, 2.44it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 98%|█████████▊| 965/980 [06:03<00:05, 2.53it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▊| 966/980 [06:04<00:05, 2.63it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▊| 967/980 [06:04<00:04, 2.68it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▉| 968/980 [06:04<00:04, 2.76it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▉| 969/980 [06:05<00:04, 2.71it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▉| 970/980 [06:05<00:04, 2.50it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▉| 971/980 [06:06<00:03, 2.48it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▉| 972/980 [06:06<00:03, 2.39it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▉| 973/980 [06:06<00:02, 2.52it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▉| 974/980 [06:07<00:02, 2.62it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 99%|█████████▉| 975/980 [06:07<00:01, 2.63it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 100%|█████████▉| 976/980 [06:07<00:01, 2.75it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 100%|█████████▉| 977/980 [06:08<00:01, 2.82it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 100%|█████████▉| 978/980 [06:08<00:00, 2.88it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 100%|█████████▉| 979/980 [06:08<00:00, 2.93it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 100%|██████████| 980/980 [06:09<00:00, 2.91it/s]X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"X does not have valid feature names, but RandomForestRegressor was fitted with feature names\n",
"PartitionExplainer explainer: 981it [06:09, 2.56it/s]\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"fig = plt.figure(figsize=(6,12))\n",
"ax0 = fig.add_subplot(211)\n",
"shap.plots.bar(shap_values, max_display=11, show=False)\n",
"ax1 = fig.add_subplot(212)\n",
"shap.plots.bar(\n",
"shap_values2, max_display=11, show=False, clustering_cutoff=0.6\n",
")\n",
"plt.tight_layout()\n",
"plt.show()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 707
},
"id": "lg5qnDQFh8wb",
"outputId": "c014bce3-a4b9-40d3-a49d-eacfebd137b5"
},
"execution_count": 22,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": [
"<Figure size 800x700 with 2 Axes>"
],
"image/png": "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CSGEEEIIIUSOSDAhhBBCCCGEyBEJJoQQQgghhBA5IsGEEEIIIYQQIkckmBBCCCGEEELkiAQTQgghhBBCiByRYEIIIUSBERERga2tLfPmzdNK79u3Lx4eHvnTqLfExIkTUalU3Lhx47XUt2jRIp364uPjcXV1ZdKkSa+lDUKIVyfBhBBCiAJj7NixODo60q9fvyzlDw8PZ+TIkXh7e2NtbY2NjQ3lypXjgw8+YO3atVp5GzZsiJWVVbplpX3YPnbsmN7j0dHRmJubo1KpWLp0abrleHh4oFKpNA8TExM8PDwYMGAAt2/fztJ1va3Mzc356quvmDVrFvfu3cvv5gghskCCCSGEEAVCWFgYCxcuZMiQIRgZGWWa/+bNm1SpUoXffvuN2rVr88033zBjxgzatm1LSEgI/v7+udq+v/76i8TEREqVKsXChQszzOvm5sbSpUtZunQps2fPplatWixcuJBatWoRFRWVq+0qaD7++GNUKhU//PBDfjdFCJEFmf81FkIIId4Ac+bMQaVS0aNHjyzl/+6774iIiGD9+vW0b99e53h4eHiutm/BggU0atSI9u3bM2zYMK5fv07p0qX15rW1taV3796a55999hlOTk78+uuv+Pv7M2rUqFxtW0FiaWlJp06dWLRoEVOnTsXU1DS/mySEyID0TAghxFsqbUz67t27mTx5MiVLlsTc3JxatWpx+PBhAPbv38+7776LpaUlxYoVY8qUKXrLOnbsGB07dsTBwQFTU1PKly/PtGnTSElJ0coXHBxM37598fT0xMLCAmtra+rVq8e6det0yuzbty8qlYqYmBjNh2kzMzPq1avHkSNHdPIHBARQvXp1nJycsnT9V65cAaBJkyZ6j7u4uGSpnKw4ceIEp06dok+fPvTs2RMjI6NMeyde1qJFCwCuXr2abp6tW7eiUqn4+eef9R6vU6cOjo6OJCcnA9l7PfRJe430UalU9O3bVyd95cqVvPvuu1hbW2NhYUGtWrVYvXp1lupL06pVK6Kioti7d2+2zhNCvH4STAghxFvuq6++Yv369QwdOpQJEyZw/fp1mjdvzvr16+nUqRP169fnu+++o0KFCowfP55ly5Zpnb9582bq1avH5cuX+eKLL/j555+pU6cO48eP1+klWLduHSEhIXTr1o3Zs2fzv//9j4cPH9KpUyeWL1+ut30tWrQgLCyM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\n"
},
"metadata": {}
}
]
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "ghAKr31ejc3y"
},
"execution_count": null,
"outputs": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment