diff --git a/can_baybe-inhibitor.ipynb b/can_baybe-inhibitor.ipynb
index 7132fe4..8ca1038 100644
--- a/can_baybe-inhibitor.ipynb
+++ b/can_baybe-inhibitor.ipynb
@@ -18,7 +18,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
- "# Initizalization"
+ "# Initialization"
]
},
{
@@ -217,6 +217,8 @@
"from baybe.simulation import simulate_scenarios\n",
"from baybe.targets import NumericalTarget\n",
"\n",
+ "# these are datasets already preprocessed, filtered, and grouped by \n",
+ "so we have only one row for each unique combination of parameters\n",
"df_AA2024 = pd.read_excel('data/averaged_filtered_AA2024.xlsx')\n",
"df_AA5000 = pd.read_excel('data/averaged_filtered_AA5000.xlsx')\n",
"df_AA6000 = pd.read_excel('data/averaged_filtered_AA6000.xlsx')\n",
@@ -250,6 +252,7 @@
"metadata": {},
"outputs": [],
"source": [
+ "# def required from baybe package\n",
"lookup = df_active"
]
},
@@ -268,6 +271,13 @@
"smiles_dict =list_to_dict(unique_SMILES)"
]
},
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Defining parameters for the search space"
+ ]
+ },
{
"cell_type": "code",
"execution_count": 300,
@@ -336,13 +346,36 @@
" ]"
]
},
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Setting the target"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_no_target = lookup.drop('Efficiency', axis=1)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Creating the searchspace\n",
+ "Multiple searchspaces and parameter groups are initialized to investigate the influence of built-in featurization methods on the Bayesian optimization process."
+ ]
+ },
{
"cell_type": "code",
"execution_count": 301,
"metadata": {},
"outputs": [],
"source": [
- "df_no_target = lookup.drop('Efficiency', axis=1)\n",
"\n",
"# searchspace = SearchSpace.from_dataframe(df = df_no_target, parameters=parameters)\n",
"# print('Print test 1')\n",
@@ -528,6 +561,13 @@
"searchspace_rdkit"
]
},
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Defining the campaign = searchspace + objective"
+ ]
+ },
{
"cell_type": "code",
"execution_count": 303,
@@ -539,6 +579,7 @@
"campaign_rdkit = Campaign(searchspace=searchspace_rdkit, objective=objective)\n",
"campaign_ohe = Campaign(searchspace=searchspace_ohe, objective=objective)\n",
"\n",
+ "# not all randoms are used but checked for differences in behaviour\n",
"campaign_rand_mordred = Campaign(\n",
" searchspace=searchspace_mordred,\n",
" recommender=TwoPhaseMetaRecommender(recommender=RandomRecommender()),\n",
@@ -556,9 +597,16 @@
")"
]
},
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Puttting the campaigns that we are interested in a scenario"
+ ]
+ },
{
"cell_type": "code",
- "execution_count": 304,
+ "execution_count": null,
"metadata": {},
"outputs": [],
"source": [
@@ -570,6 +618,13 @@
" }"
]
},
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Start our simulations"
+ ]
+ },
{
"cell_type": "code",
"execution_count": 305,
@@ -770,9 +825,9 @@
}
],
"source": [
- "N_MC_ITERATIONS = 10\n",
- "N_DOE_ITERATIONS = 50\n",
- "BATCH_SIZE = 1\n",
+ "N_MC_ITERATIONS = 10 # number of Monte Carlo iterations\n",
+ "N_DOE_ITERATIONS = 50 # number of Design of Experiments iterations\n",
+ "BATCH_SIZE = 1 # number of experiments each DoE contains \n",
"\n",
"results = simulate_scenarios(\n",
" scenarios,\n",
@@ -790,9 +845,17 @@
"metadata": {},
"outputs": [],
"source": [
+ "# record results to excel\n",
"results.to_excel(f\"./results/{exp_dataset_name}_simulation_{N_MC_ITERATIONS}MC_{N_DOE_ITERATIONS}exp_{BATCH_SIZE}batch.xlsx\")"
]
},
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Plotting the results"
+ ]
+ },
{
"cell_type": "code",
"execution_count": 313,
@@ -1155,27 +1218,3045 @@
"results"
]
},
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Transfer Learning\n",
+ "### Use transfer learning to gain information from prior experimental campaigns."
+ ]
+ },
{
"cell_type": "code",
- "execution_count": 311,
+ "execution_count": 317,
"metadata": {},
"outputs": [],
"source": [
- "results.to_excel(f\"./results/{exp_dataset_name}_simulation_{N_MC_ITERATIONS}MC_{N_DOE_ITERATIONS}exp_{BATCH_SIZE}batch.xlsx\")\n"
+ "df_active = df_AA2024\n",
+ "df_transfer = df_AA1000"
]
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 318,
"metadata": {},
"outputs": [],
- "source": []
+ "source": [
+ "from baybe.parameters import TaskParameter\n",
+ "\n",
+ "taskparam = TaskParameter(\n",
+ " name=\"Al_alloys\",\n",
+ " values=[\"AA1000\", \"AA2024\"],\n",
+ " active_values=[\"AA2024\"],\n",
+ ")"
+ ]
},
{
- "cell_type": "markdown",
+ "cell_type": "code",
+ "execution_count": 321,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " Time_h | \n",
+ " pH | \n",
+ " Inhib_Concentrat_M | \n",
+ " Salt_Concentrat_M | \n",
+ " Efficiency | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " count | \n",
+ " 848.000000 | \n",
+ " 848.000000 | \n",
+ " 8.480000e+02 | \n",
+ " 848.000000 | \n",
+ " 848.000000 | \n",
+ "
\n",
+ " \n",
+ " mean | \n",
+ " 126.843160 | \n",
+ " 4.189580 | \n",
+ " 6.352976e-02 | \n",
+ " 0.088962 | \n",
+ " 35.066659 | \n",
+ "
\n",
+ " \n",
+ " std | \n",
+ " 192.055676 | \n",
+ " 3.696183 | \n",
+ " 3.690920e-01 | \n",
+ " 0.227758 | \n",
+ " 245.617010 | \n",
+ "
\n",
+ " \n",
+ " min | \n",
+ " 0.000000 | \n",
+ " -0.600000 | \n",
+ " 1.000000e-07 | \n",
+ " 0.000000 | \n",
+ " -4834.000000 | \n",
+ "
\n",
+ " \n",
+ " 25% | \n",
+ " 6.000000 | \n",
+ " 0.000000 | \n",
+ " 5.000000e-04 | \n",
+ " 0.000000 | \n",
+ " 35.000000 | \n",
+ "
\n",
+ " \n",
+ " 50% | \n",
+ " 24.000000 | \n",
+ " 4.000000 | \n",
+ " 1.000000e-03 | \n",
+ " 0.010000 | \n",
+ " 60.000000 | \n",
+ "
\n",
+ " \n",
+ " 75% | \n",
+ " 144.000000 | \n",
+ " 7.000000 | \n",
+ " 4.200000e-03 | \n",
+ " 0.100000 | \n",
+ " 80.507500 | \n",
+ "
\n",
+ " \n",
+ " max | \n",
+ " 720.000000 | \n",
+ " 13.000000 | \n",
+ " 3.280000e+00 | \n",
+ " 2.000000 | \n",
+ " 100.000000 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Time_h pH Inhib_Concentrat_M Salt_Concentrat_M \\\n",
+ "count 848.000000 848.000000 8.480000e+02 848.000000 \n",
+ "mean 126.843160 4.189580 6.352976e-02 0.088962 \n",
+ "std 192.055676 3.696183 3.690920e-01 0.227758 \n",
+ "min 0.000000 -0.600000 1.000000e-07 0.000000 \n",
+ "25% 6.000000 0.000000 5.000000e-04 0.000000 \n",
+ "50% 24.000000 4.000000 1.000000e-03 0.010000 \n",
+ "75% 144.000000 7.000000 4.200000e-03 0.100000 \n",
+ "max 720.000000 13.000000 3.280000e+00 2.000000 \n",
+ "\n",
+ " Efficiency \n",
+ "count 848.000000 \n",
+ "mean 35.066659 \n",
+ "std 245.617010 \n",
+ "min -4834.000000 \n",
+ "25% 35.000000 \n",
+ "50% 60.000000 \n",
+ "75% 80.507500 \n",
+ "max 100.000000 "
+ ]
+ },
+ "execution_count": 321,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "\n",
+ "df_combined = pd.concat([df_active, df_transfer], axis=0)\n",
+ "df_combined.describe()\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 332,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "unique_SMILES_transfer = df_transfer[\"SMILES\"].unique()\n",
+ "unique_SMILES = df_combined[\"SMILES\"].unique()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 333,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from baybe.parameters import NumericalContinuousParameter, CategoricalParameter, NumericalDiscreteParameter\n",
+ "from baybe.searchspace import SearchSpace\n",
+ "\n",
+ "transfer_parameters=[\n",
+ "NumericalDiscreteParameter(\n",
+ " name=\"Time_h\",\n",
+ " values=df_combined[\"Time_h\"].unique(),\n",
+ " tolerance=5/60,\n",
+ "),\n",
+ "NumericalDiscreteParameter(\n",
+ " name=\"pH\",\n",
+ " values=df_combined[\"pH\"].unique(),\n",
+ " ), \n",
+ "NumericalDiscreteParameter(\n",
+ " name=\"Inhib_Concentrat_M\",\n",
+ " values=df_combined[\"Inhib_Concentrat_M\"].unique(),\n",
+ " ),\n",
+ "NumericalDiscreteParameter(\n",
+ " name=\"Salt_Concentrat_M\",\n",
+ " values=df_combined[\"Salt_Concentrat_M\"].unique(),\n",
+ " ),\n",
+ "CategoricalParameter(\n",
+ " name=\"SMILES\",\n",
+ " values=unique_SMILES,\n",
+ " encoding=\"OHE\",\n",
+ " )\n",
+ "]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 334,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "searchspace_transfer = SearchSpace.from_dataframe(df_transfer.drop(\"Efficiency\", axis = 1), transfer_parameters)\n",
+ "\n",
+ "campaign_transfer = Campaign(searchspace_transfer, objective)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 328,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_features = df_active.drop(\"Efficiency\", axis = 1)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 335,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 0%| | 0/10 [00:00, ?it/s]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ " 10%|# | 1/10 [00:06<00:59, 6.58s/it]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ " 20%|## | 2/10 [00:13<00:52, 6.51s/it]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ " 30%|### | 3/10 [00:19<00:45, 6.44s/it]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ " 40%|#### | 4/10 [00:25<00:38, 6.34s/it]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ " 50%|##### | 5/10 [00:31<00:31, 6.33s/it]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ " 60%|###### | 6/10 [00:37<00:24, 6.24s/it]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ " 70%|####### | 7/10 [00:44<00:18, 6.32s/it]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ " 80%|######## | 8/10 [00:50<00:12, 6.28s/it]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ " 90%|######### | 9/10 [00:56<00:06, 6.30s/it]/home/vscode/.local/lib/python3.10/site-packages/botorch/models/transforms/outcome.py:304: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " stdvs = Y.std(dim=-2, keepdim=True)\n",
+ "/home/vscode/.local/lib/python3.10/site-packages/botorch/models/utils/assorted.py:194: UserWarning: std(): degrees of freedom is <= 0. Correction should be strictly less than the reduction factor (input numel divided by output numel). (Triggered internally at ../aten/src/ATen/native/ReduceOps.cpp:1760.)\n",
+ " Ymean, Ystd = torch.mean(Y, dim=-2), torch.std(Y, dim=-2)\n",
+ "100%|##########| 10/10 [01:03<00:00, 6.35s/it]\n"
+ ]
+ }
+ ],
+ "source": [
+ "results_transfer: list[pd.DataFrame] = []\n",
+ "fractions = (1, 1)\n",
+ "\n",
+ "\n",
+ "result_fresh_start = simulate_scenarios(\n",
+ " {\"Fresh\": campaign_transfer},\n",
+ " df_transfer,\n",
+ " batch_size=BATCH_SIZE,\n",
+ " n_doe_iterations=N_DOE_ITERATIONS,\n",
+ " n_mc_iterations=N_MC_ITERATIONS,\n",
+ " impute_mode=\"best\",\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 337,
"metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ " 0%| | 0/10 [00:00, ?it/s]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ " 10%|# | 1/10 [00:22<03:21, 22.40s/it]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ " 20%|## | 2/10 [00:45<03:03, 22.96s/it]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ " 30%|### | 3/10 [01:09<02:43, 23.30s/it]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ " 40%|#### | 4/10 [01:32<02:19, 23.21s/it]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ " 50%|##### | 5/10 [01:55<01:55, 23.14s/it]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ " 60%|###### | 6/10 [02:18<01:32, 23.11s/it]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ " 70%|####### | 7/10 [02:42<01:09, 23.15s/it]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ " 80%|######## | 8/10 [03:05<00:46, 23.17s/it]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ " 90%|######### | 9/10 [03:29<00:23, 23.27s/it]WARNING:baybe.utils.dataframe:Input row with index 132 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 234 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 158 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 493 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 463 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 353 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 467 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 118 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 131 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 364 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 6 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 36 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 313 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 314 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 284 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 111 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 413 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 420 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 348 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 66 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 511 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 514 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 97 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 189 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 433 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 165 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 185 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 359 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 18 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 258 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 250 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 179 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 424 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 436 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 262 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 311 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 450 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 260 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 310 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 60 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 220 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 42 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 355 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 476 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 440 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 490 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 473 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 55 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 242 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 308 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 285 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 354 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 426 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 379 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 74 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 150 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 325 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 168 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 369 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 453 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 87 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 197 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 257 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 337 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 265 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 299 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 52 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 43 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 382 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 192 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 327 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 221 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 101 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 397 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 1 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 142 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 86 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 390 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 297 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 145 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 329 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 81 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 491 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 85 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 494 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 267 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 109 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 370 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 290 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 293 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 21 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 446 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 63 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 162 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 481 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 216 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 389 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 193 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 484 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 84 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 208 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 184 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 264 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 469 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 475 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 212 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 402 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 246 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 215 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 275 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 153 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 456 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 143 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 501 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 326 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 268 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 330 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 462 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 29 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 252 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 441 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 328 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 88 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 291 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 321 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 362 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 44 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 235 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 309 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 137 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 130 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "WARNING:baybe.utils.dataframe:Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
+ "100%|##########| 10/10 [03:53<00:00, 23.33s/it]\n"
+ ]
+ }
+ ],
"source": [
- "# Transfer Learning"
+ "fraction_df = df_active.sample(frac=1)\n",
+ "training_lookup = [fraction_df for _ in range(N_MC_ITERATIONS)]\n",
+ "\n",
+ "result_transfer_learning = simulate_scenarios(\n",
+ " {\"Transfer\": campaign_transfer},\n",
+ " df_transfer,\n",
+ " initial_data=training_lookup,\n",
+ " batch_size=BATCH_SIZE,\n",
+ " n_doe_iterations=N_DOE_ITERATIONS,\n",
+ " impute_mode=\"best\",\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 338,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " Time_h | \n",
+ " pH | \n",
+ " Inhib_Concentrat_M | \n",
+ " Salt_Concentrat_M | \n",
+ " Efficiency | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " count | \n",
+ " 258.000000 | \n",
+ " 258.000000 | \n",
+ " 258.000000 | \n",
+ " 258.000000 | \n",
+ " 258.000000 | \n",
+ "
\n",
+ " \n",
+ " mean | \n",
+ " 167.602713 | \n",
+ " 6.636047 | \n",
+ " 0.007386 | \n",
+ " 0.117907 | \n",
+ " 28.268191 | \n",
+ "
\n",
+ " \n",
+ " std | \n",
+ " 220.488788 | \n",
+ " 2.149613 | \n",
+ " 0.013202 | \n",
+ " 0.166813 | \n",
+ " 265.800655 | \n",
+ "
\n",
+ " \n",
+ " min | \n",
+ " 0.500000 | \n",
+ " 0.000000 | \n",
+ " 0.000010 | \n",
+ " 0.000000 | \n",
+ " -3813.000000 | \n",
+ "
\n",
+ " \n",
+ " 25% | \n",
+ " 24.000000 | \n",
+ " 5.400000 | \n",
+ " 0.001000 | \n",
+ " 0.050000 | \n",
+ " 30.000000 | \n",
+ "
\n",
+ " \n",
+ " 50% | \n",
+ " 24.000000 | \n",
+ " 7.000000 | \n",
+ " 0.001000 | \n",
+ " 0.100000 | \n",
+ " 55.000000 | \n",
+ "
\n",
+ " \n",
+ " 75% | \n",
+ " 240.000000 | \n",
+ " 7.000000 | \n",
+ " 0.004500 | \n",
+ " 0.100000 | \n",
+ " 89.000000 | \n",
+ "
\n",
+ " \n",
+ " max | \n",
+ " 672.000000 | \n",
+ " 10.000000 | \n",
+ " 0.044000 | \n",
+ " 0.600000 | \n",
+ " 100.000000 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " Time_h pH Inhib_Concentrat_M Salt_Concentrat_M \\\n",
+ "count 258.000000 258.000000 258.000000 258.000000 \n",
+ "mean 167.602713 6.636047 0.007386 0.117907 \n",
+ "std 220.488788 2.149613 0.013202 0.166813 \n",
+ "min 0.500000 0.000000 0.000010 0.000000 \n",
+ "25% 24.000000 5.400000 0.001000 0.050000 \n",
+ "50% 24.000000 7.000000 0.001000 0.100000 \n",
+ "75% 240.000000 7.000000 0.004500 0.100000 \n",
+ "max 672.000000 10.000000 0.044000 0.600000 \n",
+ "\n",
+ " Efficiency \n",
+ "count 258.000000 \n",
+ "mean 28.268191 \n",
+ "std 265.800655 \n",
+ "min -3813.000000 \n",
+ "25% 30.000000 \n",
+ "50% 55.000000 \n",
+ "75% 89.000000 \n",
+ "max 100.000000 "
+ ]
+ },
+ "execution_count": 338,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "fraction_df.describe()"
]
},
{
@@ -1183,7 +4264,41 @@
"execution_count": null,
"metadata": {},
"outputs": [],
- "source": []
+ "source": [
+ "concatenated_df = pd.concat([result_fresh_start, result_transfer_learning], axis=0, ignore_index=True)\n",
+ "concatenated_df"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 339,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[]"
+ ]
+ },
+ "execution_count": 339,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# until 50\n",
+ "limit = 50\n",
+ "exp_dataset_name = 'transferAA1000_to_AA2024'\n",
+ "sns.lineplot(\n",
+ " data=concatenated_df, x=\"Num_Experiments\", y=\"Efficiency_CumBest\", hue=\"Scenario\", marker=\"x\"\n",
+ ")\n",
+ "plt.plot([0.5, N_DOE_ITERATIONS+0.5], [max_yield, max_yield], \"--r\", alpha=0.4)\n",
+ "plt.legend(loc=\"lower right\")\n",
+ "import matplotlib.pyplot as plt\n",
+ "\n",
+ "plt.xlim(0, limit+1)\n",
+ "plt.savefig(f\"./img/{exp_dataset_name}_simulation_{N_MC_ITERATIONS}MC_{N_DOE_ITERATIONS}exp_{BATCH_SIZE}batch_first25.png\")"
+ ]
}
],
"metadata": {
diff --git a/img/transferAA1000_to_AA2024_simulation_10MC_50exp_1batch_first25.png b/img/transferAA1000_to_AA2024_simulation_10MC_50exp_1batch_first25.png
new file mode 100644
index 0000000..96c5873
Binary files /dev/null and b/img/transferAA1000_to_AA2024_simulation_10MC_50exp_1batch_first25.png differ
diff --git a/img/transferAA1000_to_AA2024_simulation_10MC_50exp_1batch_first50.png b/img/transferAA1000_to_AA2024_simulation_10MC_50exp_1batch_first50.png
new file mode 100644
index 0000000..d19a666
Binary files /dev/null and b/img/transferAA1000_to_AA2024_simulation_10MC_50exp_1batch_first50.png differ