"
+ ],
+ "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": [
+ "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": [
+ "
"
- ],
- "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": [
- "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": [
- "