"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "sns.lineplot(\n",
+ " data=results,\n",
+ " x=\"Num_Experiments\",\n",
+ " y=\"Efficiency_CumBest\",\n",
+ " hue=\"Scenario\",\n",
+ " marker=\"x\",\n",
+ ")\n",
+ "\n",
+ "plt.xlim(0, N_DOE_ITERATIONS)\n",
+ "plt.ylim(0, 100)\n",
+ "\n",
+ "plt.savefig(\"Scenarios\")"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Evalute best results"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Index(['Scenario', 'Random_Seed', 'Iteration', 'Num_Experiments',\n",
+ " 'Efficiency_Measurements', 'Efficiency_IterBest', 'Efficiency_CumBest'],\n",
+ " dtype='object')\n"
+ ]
+ }
+ ],
+ "source": [
+ "print(results.columns)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Use transfer learning on other metals"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "Define the training function (i.e. the previously investigated larger data set) and the yet to be optimized data sets."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from baybe.parameters import TaskParameter\n",
+ "\n",
+ "taskparam = TaskParameter(\n",
+ " name=\"Al_alloys\",\n",
+ " values=[\"AA1000\", \"AA2024\"],\n",
+ " active_values=[\"AA2024\"],\n",
+ ")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "unique_SMILES_transfer = df_transfer[\"SMILES\"].unique()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "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": 21,
+ "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": 22,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df_features = df.drop(\"Efficiency\", axis = 1)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "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<01:01, 6.87s/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:55, 6.93s/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:20<00:47, 6.78s/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:26<00:40, 6.73s/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:33<00:33, 6.73s/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:39<00:26, 6.65s/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:46<00:20, 6.69s/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:53<00:13, 6.64s/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:59<00:06, 6.65s/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:06<00:00, 6.65s/it]\n"
+ ]
+ }
+ ],
+ "source": [
+ "results_transfer: list[pd.DataFrame] = []\n",
+ "fractions = (0.01, 0.2)\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": 24,
+ "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:23<03:29, 23.25s/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:46<03:04, 23.06s/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:42, 23.28s/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:34<02:21, 23.57s/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:58<01:58, 23.61s/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:21<01:34, 23.64s/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:44<01:10, 23.49s/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:07<00:46, 23.48s/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:31<00:23, 23.48s/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:55<00:00, 23.51s/it]\n"
+ ]
+ }
+ ],
+ "source": [
+ "fraction_df = df.sample(frac=0.5)\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": 25,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "from matplotlib import pyplot as plt\n",
- "import seaborn as sns\n",
- "\n",
- "for i, column in enumerate(df.columns, 1):\n",
- " sns.histplot(df[column])\n",
- " plt.show()"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Set targets/objectives = efficiency for now"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 9,
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "/home/vscode/.local/lib/python3.10/site-packages/baybe/telemetry.py:222: UserWarning: WARNING: BayBE Telemetry endpoint https://public.telemetry.baybe.p.uptimize.merckgroup.com:4317 cannot be reached. Disabling telemetry. The exception encountered was: ConnectionError, HTTPConnectionPool(host='verkehrsnachrichten.merck.de', port=80): Max retries exceeded with url: / (Caused by NameResolutionError(\": Failed to resolve 'verkehrsnachrichten.merck.de' ([Errno -2] Name or service not known)\"))\n",
- " warnings.warn(\n",
- "/home/vscode/.local/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
- " from .autonotebook import tqdm as notebook_tqdm\n"
- ]
- }
- ],
- "source": [
- "from baybe.targets import NumericalTarget\n",
- "from baybe.objective import Objective\n",
- "\n",
- "target = NumericalTarget(\n",
- " name=\"Efficiency\",\n",
- " mode=\"MAX\",\n",
- ")\n",
- "objective = Objective(mode=\"SINGLE\", targets=[target])"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Search Space"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 10,
- "metadata": {},
- "outputs": [],
- "source": [
- "from baybe.parameters import NumericalContinuousParameter, CategoricalParameter, NumericalDiscreteParameter\n",
- "from baybe.searchspace import SearchSpace\n",
- "\n",
- "basic_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",
- "]"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "**Substance parameter**\n",
- "\n",
- "Instead of values, this parameter accepts data in form of a dictionary. The items correspond to pairs of labels and SMILES. SMILES are string-based representations of molecular structures. Based on these, BayBE can assign each label a set of molecular descriptors as encoding."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 11,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "{'C(=O)(C(=O)[O-])[O-]': 'C(=O)(C(=O)[O-])[O-]', 'C(C(=O)[O-])C(CC(=O)[O-])(C(=O)[O-])O': 'C(C(=O)[O-])C(CC(=O)[O-])(C(=O)[O-])O', 'C(C(C(C(C(C(=O)[O-])O)O)O)O)O.C(C(C(C(C(C(=O)[O-])O)O)O)O)O.[Fe+2]': 'C(C(C(C(C(C(=O)[O-])O)O)O)O)O.C(C(C(C(C(C(=O)[O-])O)O)O)O)O.[Fe+2]', 'C(C(C(C(C(C(=O)[O-])O)O)O)O)O.C(C(C(C(C(C(=O)[O-])O)O)O)O)O.[Zn+2]': 'C(C(C(C(C(C(=O)[O-])O)O)O)O)O.C(C(C(C(C(C(=O)[O-])O)O)O)O)O.[Zn+2]', 'C1=CC(=C(C=C1O)O)C=NNC(=S)N': 'C1=CC(=C(C=C1O)O)C=NNC(=S)N', 'C1=CC(=C(C=C1SSC2=CC(=C(C=C2)[N+](=O)[O-])C(=O)O)C(=O)O)[N+](=O)[O-]': 'C1=CC(=C(C=C1SSC2=CC(=C(C=C2)[N+](=O)[O-])C(=O)O)C(=O)O)[N+](=O)[O-]', 'C1=CC(=CC(=C1)S)C(=O)O': 'C1=CC(=CC(=C1)S)C(=O)O', 'C1=CC2=NNN=C2C=C1Cl': 'C1=CC2=NNN=C2C=C1Cl', 'C1=CC=C(C(=C1)C=NNC(=S)N)O': 'C1=CC=C(C(=C1)C=NNC(=S)N)O', 'C1COCCN1CCCS(=O)(=O)O': 'C1COCCN1CCCS(=O)(=O)O', 'C1N2CN3CN1CN(C2)C3': 'C1N2CN3CN1CN(C2)C3', 'C=CC(=O)OCCOC(=O)OCCSc1ncccn1': 'C=CC(=O)OCCOC(=O)OCCSc1ncccn1', 'CC(=O)O': 'CC(=O)O', 'CC(=O)SSC(=O)C': 'CC(=O)SSC(=O)C', 'CC1(C(N2C(S1)C(C2=O)NC(=O)C(C3=CC=C(C=C3)O)N)C(=O)O)C': 'CC1(C(N2C(S1)C(C2=O)NC(=O)C(C3=CC=C(C=C3)O)N)C(=O)O)C', 'CCCCCCCC/C=C\\\\CCCCCCCC(=O)O': 'CCCCCCCC/C=C\\\\CCCCCCCC(=O)O', 'CCCCCCCCCCCCCCCCCC(=O)O': 'CCCCCCCCCCCCCCCCCC(=O)O', 'CCCCCCCCCCCCCCN(CC(=O)O[Na])CC(=O)O[Na]': 'CCCCCCCCCCCCCCN(CC(=O)O[Na])CC(=O)O[Na]', 'CCCCCCCCCCCCN(CC(=O)O[Na])CC(=O)O[Na]': 'CCCCCCCCCCCCN(CC(=O)O[Na])CC(=O)O[Na]', 'CCCCCCCCCCCCOS(=O)(=O)O': 'CCCCCCCCCCCCOS(=O)(=O)O', 'CCCCCCCCCCCCc1ccccc1S([O])([O])O': 'CCCCCCCCCCCCc1ccccc1S([O])([O])O', 'CCCCCCCCN(CC(=O)O[Na])CC(=O)O[Na]': 'CCCCCCCCN(CC(=O)O[Na])CC(=O)O[Na]', 'CCCCN(CCCC)C1=NC(=NC(=N1)NC(CCSC)C(=O)O)NC(CCSC)C(=O)O': 'CCCCN(CCCC)C1=NC(=NC(=N1)NC(CCSC)C(=O)O)NC(CCSC)C(=O)O', 'CCCCOP(=O)(OCCCC)O': 'CCCCOP(=O)(OCCCC)O', 'CCN(C(=S)S)CC': 'CCN(C(=S)S)CC', 'CCOc1ccc2c(c1)nc([nH]2)S': 'CCOc1ccc2c(c1)nc([nH]2)S', 'CCSc1nnc(s1)N': 'CCSc1nnc(s1)N', 'CN1C=NC2=C1C(=O)N(C(=O)N2C)C': 'CN1C=NC2=C1C(=O)N(C(=O)N2C)C', 'CNCC(C1=CC(=CC=C1)O)O': 'CNCC(C1=CC(=CC=C1)O)O', 'COC(=O)CCCC1=CNC2=CC=CC=C21': 'COC(=O)CCCC1=CNC2=CC=CC=C21', 'COC(=O)n1nnc2ccccc12': 'COC(=O)n1nnc2ccccc12', 'COCCOC(=O)OCSc1nc2c(s1)cccc2': 'COCCOC(=O)OCSc1nc2c(s1)cccc2', 'COc1ccc2c(c1)[nH]c(=S)[nH]2': 'COc1ccc2c(c1)[nH]c(=S)[nH]2', 'COc1cccc(c1)c1n[nH]c(=S)[nH]1': 'COc1cccc(c1)c1n[nH]c(=S)[nH]1', 'CS[C]1N[N]C(=N1)N': 'CS[C]1N[N]C(=N1)N', 'CSc1[nH]c2c(n1)cc(c(c2)C)C': 'CSc1[nH]c2c(n1)cc(c(c2)C)C', 'CSc1nnc(s1)N': 'CSc1nnc(s1)N', 'Cc1cc(C)nc(n1)S': 'Cc1cc(C)nc(n1)S', 'Cc1ccc(c(c1)n1nc2c(n1)cccc2)O': 'Cc1ccc(c(c1)n1nc2c(n1)cccc2)O', 'Cc1ccc2c(c1)nc([nH]2)S': 'Cc1ccc2c(c1)nc([nH]2)S', 'Cc1n[nH]c(=S)s1': 'Cc1n[nH]c(=S)s1', 'Cc1nsc(c1)N': 'Cc1nsc(c1)N', 'ClC([C]1N[N]C=N1)(Cl)Cl': 'ClC([C]1N[N]C=N1)(Cl)Cl', 'Clc1cc2[nH]c(=S)[nH]c2cc1Cl': 'Clc1cc2[nH]c(=S)[nH]c2cc1Cl', 'Clc1ccc(cc1)CC[C@](C(C)(C)C)(Cn1cncn1)O': 'Clc1ccc(cc1)CC[C@](C(C)(C)C)(Cn1cncn1)O', 'Clc1ccc(cc1Cl)c1n[nH]c(=S)[nH]1': 'Clc1ccc(cc1Cl)c1n[nH]c(=S)[nH]1', 'Clc1ccc2c(c1)[nH]c(n2)S': 'Clc1ccc2c(c1)[nH]c(n2)S', 'Clc1cccc(c1)c1n[nH]c(=S)[nH]1': 'Clc1cccc(c1)c1n[nH]c(=S)[nH]1', 'Cn1cnnc1S': 'Cn1cnnc1S', 'Cn1nnnc1S': 'Cn1nnnc1S', 'N.N.[N+](=O)(O)[O-].[N+](=O)(O)[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].O.O.O.O.[Ce+3]': 'N.N.[N+](=O)(O)[O-].[N+](=O)(O)[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].O.O.O.O.[Ce+3]', 'NC(=S)NN=CC1=C(C(=C(C=C1)O)O)O': 'NC(=S)NN=CC1=C(C(=C(C=C1)O)O)O', 'NCC(=O)O': 'NCC(=O)O', 'NO': 'NO', 'Nc1cc(N)nc(n1)S': 'Nc1cc(N)nc(n1)S', 'Nc1cc(S)nc(n1)N': 'Nc1cc(S)nc(n1)N', 'Nc1ccc2c(c1)sc(=S)[nH]2': 'Nc1ccc2c(c1)sc(=S)[nH]2', 'Nc1ccnc(n1)S': 'Nc1ccnc(n1)S', 'Nc1n[nH]c(=S)s1': 'Nc1n[nH]c(=S)s1', 'Nc1n[nH]c(n1)S': 'Nc1n[nH]c(n1)S', 'Nc1n[nH]cn1': 'Nc1n[nH]cn1', 'Nc1nc([nH]n1)C(=O)O': 'Nc1nc([nH]n1)C(=O)O', 'Nc1ncncc1N': 'Nc1ncncc1N', 'Nn1c(NN)nnc1S': 'Nn1c(NN)nnc1S', 'Nn1c(S)nnc1c1ccccc1': 'Nn1c(S)nnc1c1ccccc1', 'Nn1cnnc1': 'Nn1cnnc1', 'O/N=C(/C(=N/O)/C)\\\\C': 'O/N=C(/C(=N/O)/C)\\\\C', 'O/N=C(\\\\C(=N/O)\\\\c1ccco1)/c1ccco1': 'O/N=C(\\\\C(=N/O)\\\\c1ccco1)/c1ccco1', 'O=C([O-])C(O)C(O)C(O)C(O)CO.[Na+]': 'O=C([O-])C(O)C(O)C(O)C(O)CO.[Na+]', 'OC(=O)/C=C/c1ccccc1': 'OC(=O)/C=C/c1ccccc1', 'OC(=O)CCCCC(=O)O': 'OC(=O)CCCCC(=O)O', 'OC(=O)CCCCCCCCCCCCCCC(=O)O': 'OC(=O)CCCCCCCCCCCCCCC(=O)O', 'OC(=O)CCS': 'OC(=O)CCS', 'OC(=O)CN(CC(=O)O)CCN(CC(=O)O)CC(=O)O': 'OC(=O)CN(CC(=O)O)CCN(CC(=O)O)CC(=O)O', 'OC(=O)CS': 'OC(=O)CS', 'OC(=O)Cn1nnnc1S': 'OC(=O)Cn1nnnc1S', 'OC(=O)c1ccc(=S)[nH]c1': 'OC(=O)c1ccc(=S)[nH]c1', 'OC(=O)c1ccc(cc1)N': 'OC(=O)c1ccc(cc1)N', 'OC(=O)c1ccc(cc1)S': 'OC(=O)c1ccc(cc1)S', 'OC(=O)c1ccc(cc1)c1ccccc1': 'OC(=O)c1ccc(cc1)c1ccccc1', 'OC(=O)c1ccccc1': 'OC(=O)c1ccccc1', 'OC(=O)c1ccccc1O': 'OC(=O)c1ccccc1O', 'OC(=O)c1ccccc1S': 'OC(=O)c1ccccc1S', 'OC(=O)c1ccccn1': 'OC(=O)c1ccccn1', 'OC(=O)c1cccnc1': 'OC(=O)c1cccnc1', 'OC(=O)c1cccnc1S': 'OC(=O)c1cccnc1S', 'OC(=O)c1ccncc1': 'OC(=O)c1ccncc1', 'OC(=O)c1n[nH]c(n1)N': 'OC(=O)c1n[nH]c(n1)N', 'OCC(CO)O': 'OCC(CO)O', 'OC[C@H]([C@H]([C@@H]([C@@H](CO)O)O)O)O': 'OC[C@H]([C@H]([C@@H]([C@@H](CO)O)O)O)O', 'OC[C@H]([C@H]([C@@H]([C@H](C(=O)O)O)O)O)O': 'OC[C@H]([C@H]([C@@H]([C@H](C(=O)O)O)O)O)O', 'OC[C@H]1OC(O)[C@H](O)[C@@H](O)[C@@H]1O': 'OC[C@H]1OC(O)[C@H](O)[C@@H](O)[C@@H]1O', 'O[C@H]1C(=O)OCC1(C)C': 'O[C@H]1C(=O)OCC1(C)C', 'Oc1ccc(cc1)C(=O)O': 'Oc1ccc(cc1)C(=O)O', 'Oc1ccc(cc1)S([O])([O])O': 'Oc1ccc(cc1)S([O])([O])O', 'Oc1cccc2c1nccc2': 'Oc1cccc2c1nccc2', 'Oc1ccccc1c1nnc([nH]1)S': 'Oc1ccccc1c1nnc([nH]1)S', 'On1nnc2c1cccc2': 'On1nnc2c1cccc2', 'S=c1[nH]c2c([nH]1)c(=O)n(cn2)C': 'S=c1[nH]c2c([nH]1)c(=O)n(cn2)C', 'S=c1[nH]c2c([nH]1)cncn2': 'S=c1[nH]c2c([nH]1)cncn2', 'S=c1[nH]c2c([nH]1)nccn2': 'S=c1[nH]c2c([nH]1)nccn2', 'S=c1[nH]nc([nH]1)c1cccnc1': 'S=c1[nH]nc([nH]1)c1cccnc1', 'S=c1[nH]nc([nH]1)c1ccco1': 'S=c1[nH]nc([nH]1)c1ccco1', 'S=c1[nH]nc([nH]1)c1ccncc1': 'S=c1[nH]nc([nH]1)c1ccncc1', 'S=c1sc2c([nH]1)cccc2': 'S=c1sc2c([nH]1)cccc2', 'SC#N': 'SC#N', 'S[C]1NC2=C[CH]C=NC2=N1': 'S[C]1NC2=C[CH]C=NC2=N1', 'Sc1n[nH]cn1': 'Sc1n[nH]cn1', 'Sc1nc(N)c(c(n1)S)N': 'Sc1nc(N)c(c(n1)S)N', 'Sc1nc(N)c2c(n1)[nH]nc2': 'Sc1nc(N)c2c(n1)[nH]nc2', 'Sc1nc2c([nH]1)cccc2': 'Sc1nc2c([nH]1)cccc2', 'Sc1ncc[nH]1': 'Sc1ncc[nH]1', 'Sc1ncccn1': 'Sc1ncccn1', 'Sc1nnc(s1)S': 'Sc1nnc(s1)S', '[Cl-].[Cl-].[Cl-].[Ce+3]': '[Cl-].[Cl-].[Cl-].[Ce+3]', '[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[Ce+3]': '[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[Ce+3]', '[NH4+].[NH4+].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[Ce+4]': '[NH4+].[NH4+].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[N+](=O)([O-])[O-].[Ce+4]', '[O-]S(=O)(=O)[O-].[O-]S(=O)(=O)[O-].[O-]S(=O)(=O)[O-].[Ce+3].[Ce+3]': '[O-]S(=O)(=O)[O-].[O-]S(=O)(=O)[O-].[O-]S(=O)(=O)[O-].[Ce+3].[Ce+3]', '[O-]S(=O)[O-].[Na+].[Na+]': '[O-]S(=O)[O-].[Na+].[Na+]', 'c1cc(ccc1c2[nH]c(nn2)S)[N+](=O)[O-]': 'c1cc(ccc1c2[nH]c(nn2)S)[N+](=O)[O-]', 'c1ccc(nc1)c1ccccn1': 'c1ccc(nc1)c1ccccn1', 'c1ccc2c(c1)[nH]nn2': 'c1ccc2c(c1)[nH]nn2', 'c1ncn[nH]1': 'c1ncn[nH]1', 'C(C(CO)([N+](=O)[O-])Br)O': 'C(C(CO)([N+](=O)[O-])Br)O', 'C(CC=O)CC=O': 'C(CC=O)CC=O', 'C1=CC(=C(C=C1F)F)C(CN2C=NC=N2)(CN3C=NC=N3)O': 'C1=CC(=C(C=C1F)F)C(CN2C=NC=N2)(CN3C=NC=N3)O', 'C1=CC(=CN=C1)C=NNC(=S)N': 'C1=CC(=CN=C1)C=NNC(=S)N', 'C1=CC(=NC(=C1)N)N': 'C1=CC(=NC(=C1)N)N', 'C1=CC=C(C=C1)C(C2=CC=CC=C2)(C3=CC=CC=C3Cl)N4C=CN=C4': 'C1=CC=C(C=C1)C(C2=CC=CC=C2)(C3=CC=CC=C3Cl)N4C=CN=C4', 'C1=CC=NC(=C1)C=NNC(=S)N': 'C1=CC=NC(=C1)C=NNC(=S)N', 'C1=CN=C(C=N1)C(=O)N': 'C1=CN=C(C=N1)C(=O)N', 'C1=CN=C(N=C1)N': 'C1=CN=C(N=C1)N', 'C1=CN=CC=C1C=NNC(=S)N': 'C1=CN=CC=C1C=NNC(=S)N', 'C1CCC(=NO)CC1': 'C1CCC(=NO)CC1', 'C=CC1=C(N2C(C(C2=O)NC(=O)C(=NOCC(=O)O)C3=CSC(=N3)N)SC1)C(=O)O': 'C=CC1=C(N2C(C(C2=O)NC(=O)C(=NOCC(=O)O)C3=CSC(=N3)N)SC1)C(=O)O', 'CC(=NO)C': 'CC(=NO)C', 'CC(C)(C)NCC(COC1=CC=CC2=C1CC(C(C2)O)O)O': 'CC(C)(C)NCC(COC1=CC=CC2=C1CC(C(C2)O)O)O', 'CC(C)(C)NCC(COC1=NSN=C1N2CCOCC2)O': 'CC(C)(C)NCC(COC1=NSN=C1N2CCOCC2)O', 'CC(C)NCC(COC1=CC=C(C=C1)CC(=O)N)O': 'CC(C)NCC(COC1=CC=C(C=C1)CC(=O)N)O', 'CC(C)NCC(COC1=CC=CC2=CC=CC=C21)O': 'CC(C)NCC(COC1=CC=CC2=CC=CC=C21)O', 'CC(OC(=O)C)OC(=O)C1=C(CSC2N1C(=O)C2NC(=O)C(=NOC)C3=CC=CO3)COC(=O)N': 'CC(OC(=O)C)OC(=O)C1=C(CSC2N1C(=O)C2NC(=O)C(=NOC)C3=CC=CO3)COC(=O)N', 'CC1=CC=C(C=C1)[N]2N=NC=C2O': 'CC1=CC=C(C=C1)[N]2N=NC=C2O', 'CC1=CN=C(C=N1)C(=O)N': 'CC1=CN=C(C=N1)C(=O)N', 'CC1=NC(=CC=C1)C': 'CC1=NC(=CC=C1)C', 'CCC(=NO)C': 'CCC(=NO)C', 'CCOC(=O)C1=C(C)N=C(S)NC1C2=CC=C(C=C2)Cl': 'CCOC(=O)C1=C(C)N=C(S)NC1C2=CC=C(C=C2)Cl', 'CN(C)CC1CCCCC1(C2=CC(=CC=C2)OC)O': 'CN(C)CC1CCCCC1(C2=CC(=CC=C2)OC)O', 'COC(=O)C1=CC=C(C=C1)[N]2N=NC=C2O': 'COC(=O)C1=CC=C(C=C1)[N]2N=NC=C2O', 'COC1=NC=C(N=C1)C(=O)N': 'COC1=NC=C(N=C1)C(=O)N', 'NC(N)=S': 'NC(N)=S', 'NC1=CCNC(=S)N1': 'NC1=CCNC(=S)N1', 'OC1=C(C=CC=C1)C=NC2=CC=C(C=C2)N=NC3=C(C=CC=C3)N=CC4=C(C=CC=C4)O': 'OC1=C(C=CC=C1)C=NC2=CC=C(C=C2)N=NC3=C(C=CC=C3)N=CC4=C(C=CC=C4)O', 'OC1=CN=N[N]1C2=CC=C(C=C2)Cl': 'OC1=CN=N[N]1C2=CC=C(C=C2)Cl'}\n"
- ]
- }
- ],
- "source": [
- "#Create a dictionary of unique SMILES representations found in the dataframe\n",
- "\n",
- "unique_SMILES = df_combined[\"SMILES\"].unique()\n",
- "\n",
- "dic_SMILES = dict(zip(unique_SMILES, unique_SMILES))\n",
- "\n",
- "print(dic_SMILES)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 12,
- "metadata": {},
- "outputs": [],
- "source": [
- "from baybe.parameters import SubstanceParameter\n",
- "\n",
- "mordred_parameters = basic_parameters + [\n",
- " SubstanceParameter(\n",
- " name=\"SMILES\",\n",
- " data=dic_SMILES,\n",
- " encoding=\"MORDRED\",\n",
- " )\n",
- "]\n",
- "\n",
- "rdkit_parameters = basic_parameters + [\n",
- " SubstanceParameter(\n",
- " name=\"SMILES\",\n",
- " data=dic_SMILES,\n",
- " encoding=\"RDKIT\",\n",
- " )\n",
- "]\n",
- "\n",
- "morganfp_parameters = basic_parameters + [\n",
- " SubstanceParameter(\n",
- " name=\"SMILES\",\n",
- " data=dic_SMILES,\n",
- " encoding=\"MORGAN_FP\",\n",
- " )\n",
- "]\n",
- "\n",
- "ohe_parameters = basic_parameters + [\n",
- " CategoricalParameter(\n",
- " name=\"SMILES\",\n",
- " values=unique_SMILES,\n",
- " encoding=\"OHE\",\n",
- " )\n",
- "]"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 13,
- "metadata": {},
- "outputs": [],
- "source": [
- "searchspace_mordred = SearchSpace.from_dataframe(df.drop(\"Efficiency\", axis = 1), mordred_parameters)\n",
- "searchspace_rdkit = SearchSpace.from_dataframe(df.drop(\"Efficiency\", axis = 1), rdkit_parameters)\n",
- "searchspace_morganfp = SearchSpace.from_dataframe(df.drop(\"Efficiency\", axis = 1), morganfp_parameters)\n",
- "searchspace_ohe = SearchSpace.from_dataframe(df.drop(\"Efficiency\", axis = 1), ohe_parameters)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Recommenders"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "The **SequentialGreedyRecommender** is a powerful recommender that leverages BoTorch optimization functions to perform sequential Greedy optimization. It can be applied for discrete, continuous and hybrid sarch spaces. It is an implementation of the BoTorch optimization functions for discrete, continuous and mixed spaces. **It is important to note that this recommender performs a brute-force search when applied in hybrid search spaces, as it optimizes the continuous part of the space while exhaustively searching choices in the discrete subspace.** You can customize this behavior to only sample a certain percentage of the discrete subspace via the sample_percentage attribute and to choose different sampling strategies via the hybrid_sampler attribute. \n",
- "\n",
- "e.g.\n",
- "strategy = TwoPhaseStrategy(recommender=SequentialGreedyRecommender(hybrid_sampler=\"Farthest\", sampling_percentage=0.3))"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "For implementing fully customized surrogate models e.g. from sklearn or PyTorch, see:\n",
- "https://emdgroup.github.io/baybe/examples/Custom_Surrogates/Custom_Surrogates.html\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 14,
- "metadata": {},
- "outputs": [],
- "source": [
- "from baybe.recommenders import (\n",
- " SequentialGreedyRecommender,\n",
- " FPSRecommender,\n",
- " TwoPhaseMetaRecommender,\n",
- ")\n",
- "\n",
- "recommender = TwoPhaseMetaRecommender(\n",
- " initial_recommender=FPSRecommender(), # farthest point sampling\n",
- " recommender=SequentialGreedyRecommender(), # Bayesian model-based optimization\n",
- ")"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Campaign Strategy"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 15,
- "metadata": {},
- "outputs": [],
- "source": [
- "from baybe.strategies import TwoPhaseStrategy\n",
- "from baybe import Campaign\n",
- "\n",
- "campaign_rdkit = Campaign(searchspace_rdkit, objective)\n",
- "campaign_mordred = Campaign(searchspace_mordred, objective)\n",
- "campaign_morganfp = Campaign(searchspace_morganfp, objective)\n",
- "campaign_ohe = Campaign(searchspace_ohe, objective)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "### Start simulation"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 16,
- "metadata": {},
- "outputs": [],
- "source": [
- "scenarios = {\n",
- " \"OHE\" : campaign_ohe,\n",
- "}"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 17,
- "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"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- " 10%|# | 1/10 [00:09<01:24, 9.35s/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:17<01:10, 8.82s/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:26<01:00, 8.68s/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:35<00:52, 8.75s/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:43<00:43, 8.68s/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:52<00:35, 8.77s/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 [01:00<00:25, 8.65s/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 [01:09<00:17, 8.71s/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 [01:18<00:08, 8.74s/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:26<00:00, 8.67s/it]\n"
- ]
- }
- ],
- "source": [
- "from baybe.simulation import simulate_scenarios\n",
- "\n",
- "N_MC_ITERATIONS = 10\n",
- "N_DOE_ITERATIONS = 50\n",
- "BATCH_SIZE = 1\n",
- "\n",
- "results = simulate_scenarios(\n",
- " scenarios,\n",
- " df,\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": 18,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkQAAAG2CAYAAACeUpnVAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMywgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/H5lhTAAAACXBIWXMAAA9hAAAPYQGoP6dpAABePElEQVR4nO3deXwU5eE/8M/sld2cmwRyQQhBbjkFxICCYhTRKljaimIFsV6FKlAvfgqoVUC+rVAURaUFalU88WpBKSpegNwgRziM3ElIQrLZJHvNPL8/NjvJJgHZI9kM+bxfr7zKzjw7+2THMh+eUxJCCBARERG1YrpIV4CIiIgo0hiIiIiIqNVjICIiIqJWj4GIiIiIWj0GIiIiImr1GIiIiIio1WMgIiIiolaPgYiIiIhaPQYiIiIiavUYiIiIiKjVi2gg+vrrr3HjjTciIyMDkiThww8/9DsvhMCsWbOQnp4Oi8WC3NxcHDx40K9MaWkpxo8fj/j4eFitVtx1112w2+3N+FsQERGR1kU0EFVWVqJv375YvHhxo+fnz5+PRYsWYcmSJdi0aRNiYmIwcuRIOBwOtcz48eOxZ88erF27Fp9++im+/vpr3HPPPc31KxAREdEFQGopm7tKkoRVq1ZhzJgxALytQxkZGfjzn/+Mhx56CABQXl6O1NRULF++HOPGjcO+ffvQs2dPbN68GQMHDgQArFmzBtdffz2OHz+OjIyMSP06REREpCGGSFfgbPLz81FQUIDc3Fz1WEJCAgYPHowNGzZg3Lhx2LBhA6xWqxqGACA3Nxc6nQ6bNm3CzTff3Oi1nU4nnE6n+lpRFJSWliI5ORmSJDXdL0VERERhI4RARUUFMjIyoNOF1unVYgNRQUEBACA1NdXveGpqqnquoKAAKSkpfucNBgOSkpLUMo2ZO3cunnrqqTDXmIiIiCLh2LFjaN++fUjXaLGBqCnNmDED06dPV1+Xl5ejQ4cOOHbsGOLj4yNYs9ZLVgQ8igJZEVDqdOLqJEAvSXDJCox6HWQhICsC9Tt6DXpJLWeqKaco/oUEAL2uXjlFwFNTTlEElJrr63US9DoJZ6pcMOgkpFst+Pm0HaWVHu+FAMRbDOicGotDhXbYqj2Is+jROTUOhworYKv2QJIk6PWANdqArORYnCyrhtujINZkQJt4M85UOuGWvZ+pCMCkk9Am3owTZVWQFYHMxGjkF9txptLjLQOBuCgDuqfHY8+JchRXupAUbUTvdlbsPlGG0ko3dDoJEoDEaCMubpeAvSfKcabKjcQYI3pmJGDfSRvOVLnV78QabUDPjATsPVmOM5VuJEYb0bNdAvbUvE8AftfzHU+qKee7vk9iveP1X59vOUnyfv9JMUZ0TY3DT6ftqHB4oNdJiLcY0CEpBruPl+NoaRVizQYM7dwGH+88gR9P2GB3eFDh9MDu8KBzSgweGtkd/911Etf3ycBTH/+IzT+fafDf36COiZh9U69mLReJz2wJ5T7ecQI39s3Aw+/twobDJQ3KAcD0a7pg0uWd8M9vf8Lzaw82WqaxcgadhKRoIxJjTWgbG4UOSdEY0jkZl3duC5vDgwSLEafKqlHtlhtcy2LUI91qQXm1u9nKReIzL7RyMTo3OmZ1QFxcXIPzgWqxgSgtLQ0AUFhYiPT0dPV4YWEh+vXrp5YpKirye5/H40Fpaan6/sZERUUhKiqqwfH4+HgGojBSFAG3rMDhUeDyKPAoCjyyN3AY9d4H3snyaliMBnROicP+AhtK7G74hrUlRptwcbsE/HiiHKVVHiRFm9CrnRW7T5SjtNKlfk5SjAm92yVg94lynKlTzvu+OuWiTehVU6600lPzvprr2V0QAlCEgjaxUejT3oqdx8twploPnQR4dEDvThnIK6hAeZUb1mgjuqbF4UBBBTwGM6LjABlAQZWES7q0w4GCCpypciPB4g0we0/YUFytgxA6nHYKlCsy+rZvg53Hz6DE7kZyrAldM6zYdaIcZdU66CUJkh3oU/OZFdUeJMYY0TklFvnFlYiLi4fJoqDC4cHeYjdyumdi9Y8F2F9QgY5tonFt13b4aOcJ/Fxc7f3lSzw4USVhdF/f8Sp0bBON3C6NlKuWMLpve79yjV6vkXLXhKPcjhPYf6oC6QlmDO+VjoX/O4DvDpWgwuFGRU3YGXJRMl64tT/2lx7Djb0z8ae3tuObg8UN/hvcU1yGnllluPea3nhl/WH877AdgLFBuf8dtmPQ/uYtF4nPbAnlJo/sg1fWH8am49WIj49HnNmAeLMRcWYD4swGDOqYhIlDO2LH0TLcm9sLbZKs+Ol0ZYPrdWobg7GXtMeekzbcf01v9O2UAbdHQWKsCekJZiRGmxATVfuIS6r530RrQoNr1ZVobf5ykfjMC6WczWYDgLAMd2mxgSg7OxtpaWlYt26dGoBsNhs2bdqE+++/HwCQk5ODsrIybN26FQMGDAAAfPHFF1AUBYMHD45U1S9oiiK8rS/C20rja2Fxy97Q45YVVDo9qHLJsBj16JoWh8NFdpyucECSJAgBJMea0DfTij0nbKiollHlVCAUO3qkxePwaTvsDhnxFgOy28Qgv7gSQgCJFhMggCPFlejTLgFHSqpQ4fAgzmxAVnI0fi6uhCSApJpyPxdXone7BOQXV6rlstvEqOWSo73ljpZUqdezVbthMujQJTUOGw4X42BRpfoQtjncaJ9owV2Xd8KXxUXom2nF/63Jw+4T5Q2+o97tEvDA1V3wU3ER+p1HuS/zitA9LR7/91nDcr4yX+QVoVf7eDzy3i58sb8IFU4P5DotYFd0aYMXbu2PQpsD112chnte39JoQPjPrlN44db+eHvzsRZdrrzajVsGZeK+f29ttNw3B4vx3tbjuHf4RXh781HYqt24vHObeg9XI7qnxeGq7m1xsLACdw7NRq92CThd4WxwvbZxURjUMalZy0XiM1tCuZ9O2zHp8mzk9khFhcPj1zocZ/b+A2L38XJUumTsPVWBWwZ1wK7jDf8R1Kd9AnYdK0ex3YWDRRUY1rUtqlwexJgM0Ok4FpQCF9FAZLfbcejQIfV1fn4+duzYgaSkJHTo0AFTp07FM888gy5duiA7OxszZ85ERkaGOhOtR48euO6663D33XdjyZIlcLvdmDJlCsaNG8cZZkFyeWRUOLyBpsLhhqfmL6sYkwFmox4nzlQj3WqB3eFGaaW3VcUjBGRZASQJbWJMSIg2orjCBbdH4KfTdvRpn4BjpSbYnR7ERhmQmWzB0eIq2J0elFa6cLrCgdN2J5JiTPj9ZR2xdl8hctNSMOujPfghv9TbsqQIeGRvXQZlJWHe2D5Yf+A0xl7SDvf/eyu+b6TpfchFyfjrb/vim4PF51Vu3b5C/G5QJu5asbnRhzAAmI163Dv8Iryy/jBe/eanRsts+KkEybGmsJSrX+aD7Sf8zkcZdIgzG3HiTDW+3F+Ee4dfhE93noSiCAy9KLnB9RRF4NuDxZoot25fIbKSY9C7XQLiakJOfE3QaWc1o1NKLE5XODF2QHtc2jEZdqcHoqb7URECMVF6XNQ2FnkFFSircsPlUXBpdhIO1Lz2qdvaV79ceXVtuQSLEd3S4nCgwI6yapdfubrdgb5Wwf2nbCircsPhlnFpdpJaD8DbZej7zPJqN5w119p/0oaSShcEvL9DYrS39XPn8TKU2F0or3bj0o5J3pbEShcgATpJQlK0CT3b1flMl/cz95ywoaTSCUV4B58mxZjQt70Vu06Uobju9Y6XobjSG2Kkmuv1rWklbexzJUmCTvIGkx4Z8erv5vtd956wobTK+/eDEALWGBP6+H6PShfOVLrQp723dbbC4e3qTY4xoVtaHI6UVCEmSo94SzQAoKjCgX6ZVhTYqlHtkmEx6ZEWb0GBrRoJ0Qa0S7TAGm2EXichztywZYrofEV02v1XX32Fq666qsHxCRMmYPny5RBCYPbs2Xj11VdRVlaGyy+/HC+99BK6du2qli0tLcWUKVPwySefQKfTYezYsVi0aBFiY2PPux42mw0JCQkoLy9vdV1mDrcMu9ODKqcMlywjKznG+5djhUsdl1P3Lz1btRuJ0SZ0SY1VW3N0EmDQ69Swc6ykGhUON8qq3CiwOWAy6HDtxan4+sBpDO3cBjM//BH/3V0Al6w0qM+MUd3Vh//c1fvPWu+mLLfwfwf9WhriLd7/vaRDIm69tAN2nyhD73ZWfLLzBH4uqWpwrY7J0bixb7uwlKstU44+7RPw3aFiVDplNRiYDDoIIRAT5W0pO13hRNu4KBw+bUd5lQeiZsCT7//l8RYjuqbGotDmQGq8GQcK7Ch31D7Mff+uTrAY0SU1FkUVTqTEReFQkd0vHKBOuc4pteUOFnrL+f2lImqulxaLIpsDKfHmBmGj7vW6psWp5fafsuFMpfd6vrCTGGNEr3Y1rQOVTiTH+D+89ToJbWK93a15BTbveK6a38x7/Vjv710zPqHua/961B6Ptxj8Aoz3u5LUcgdrvh9rzfdx+LQdNoen5rsXiDd7jx8sskMIoGtqrBqsAG8ISYz2ljlSUoVqtwfxZiPaJUajyOaAS1agkyQoQsCk1yEl3oyTZd5WUrNRjw5J0cgvsaOsygOlZgxcYrQJWW2icfJMNZweBbFRBqTEm1Fid8KtCPgaUUx6HRKjTThT5YLDoyDKoENStAmlVS443HJNqAFMBh3axkXhZFkVbA4PLDWfe/i03TveTAB6HWC1GNGpbSyOllbB4ZYRZzYgw+r9b9PlUaDTAUa9DmajN8y73AokHWDU6diyQwEL5/O7xaxDFEmtKRB5ZAVnqtyodLpRUumC3emB061AQCBKr0daghmdU2JxrLS6QYtOaZX3X8VOj4I4swF92lux8adiHCyshMWkx+h+GViw9gA+31uIApsDLk9t4GksmHgH65rQNi4KbeKicHnnNpg4pCP2nrLh4ox4rNtfhKJyBwx6HfQ6CUadBINeh7QEMwZkJeLEmWq0S7Rg5zHvg7A+X9fc+ZYrtDmQnmDGkZIqlFW5Idd0D8qKQILZgO4Z3qb8kkoXkmNM6N0+AbuPl+OMrym/5l/MvdolYM8JG0orXUiKMeHidvHqa5+6x0sqner7fqwzPiop2oRe7RPwY81nJkbXdBPU/CtbrX9MFPpkegc8l1W7kRTtDbD7T9lqBih7v2trtKmmhaOiThioaRmpE2KsFgO6pcUjr8D7fmu0Ed3T4rG/wNagZaXu8cRoY837vNfz3WOrxb81JKHea5+6x23VHlhjjOiSEoufiu2ocnofpPEWIzITo3GqrAoOj3egvV4nIdpkgDXa6G0lUgCzSVcTgSQYdBKCGV7Q2N+MvkO+y/muG8j4Bd9fuXWvL0nhGQNBLZ8sy3C7G/5jgBpnNBqh1+vPep6BKMxaQyASQqDY7sLR0kqU1AwgjjLoYDHpYTbqoavzl7FRLyEzKRofbDuOm/q1w9S3d+DL/UUNrukbt/L25mO4ZVDDga06CWgTG4XreqXh0eu6Y9vRMxjUMQnfHy6BrAgkx5hg1HtbOMxGPTq1jcGeEzYUVzq9XQXtE7DrmPfhL4T3oZFUpzWgtCaY9GlvrQkJteMWvMcT1fCQHGOseX2mJkxIdcpZa7oMXGgTY0KfTCv2nrCh3OGumelkQpeUWBw/UwW3LCBJ3oeZxahDujUaJ8uqUOmSEW3Uo11iNI6fqUKl06PWJSbKgPaJFhw/U41Kp6fBa/9y0ThxxttK1C4xGifKqlDtkmvui7cVrk1sFM5UuyDLAlE1/8qudskQNd+5rqY7w6jXwa0ogPC+1usk78w7ydte4vs/vk7ydlX5Xut1UoPZfpIEGHQSPDUz/Oq/9pWRUPs5AlC7VhRRGyLqXrN+KPC7FgMCXUCEECgoKEBZWVmkq6I5VqsVaWlpjf6dwEAUZhd6ICqvduNYaRUKyh2QJG+Lgv4sTdN7T9mw8H8HMHFIx7N2NRl0EqIMOpgMOvz52m64/bIsfLrzJL7MK0JqvBlp8WakJZjRNjYK1miT2o1md3pgNuqQ3SYG+07aUFjhhCy8wahvphUHCirgkhWYjXroJSDGbEBavAXFdm9Te5RB5w0DVS41mADeJv+EaCPKq9xwyQqi9DrERxthq3ntY6o57ivne59v3IhOBxh0OkQZdIg26eGu6abQ6yQ+nIkoJKdOnUJZWRlSUlIQHR3Nv1POgxACVVVVKCoqgtVq9Ztx7hPO53eLnWVGoat2yThRVoXjpdVwyQqSY6JgMjS+kqdbVvDmpqP4YPtxDO3cBuMu7YCdx8pw59BsDOqYBLvTgyiDDlEGvRqmfN1ppyucuK53Gnqmx6Os2q0OfjboJLRPsmDnUW/rC+BdL8jpkdEjIx7W8uqasRMmeGSBbmlxMOgb1i813uz3Ojm24ZIJAJAYY/J7ba33+mzlks5SzmQ4ezMtEdH5kmVZDUPJyQ0nE9DZWSwWAEBRURFSUlLO2X0WKgaiC5BbVlBQ7sCR0irYHd5B0MmmxkMEAOQXV+L5tXn4uaQKV3RpgyW3D8DRkiq4PIo6SyyvoAKllS443AoUIWC1GNE+0YIdR8vUMTV921thO1kOh0eGQSchMcaEk2XVSIwxITXBDJNBB7NRD7NBD4Neh8ykmGb8VoiIIsM3Zig6OjrCNdEm3/fmdrsZiFo778rMwjs25ByzMBRFoNjuxJHSKpRWOhFjMiIjwYK28VFwuBTY64xX8V131/EyFNgc+LmkCtddnIaF4/rhVJkDp8odkCQBh0eGrHhbbw6ftqPapSDBYkCH5BgU2hxIifN2j5n0Ojg8MvpmWuGWFRg4Y4SIyA+7yYLTXN8bA1ELZ3O4se+kDR5FQAfvqFW9zjtw1hs6vGN69DoJDreCogoHDDodUuMsateWw6X4jeMBgFPl1Vh/4DQeHtkNf3prOwZnJ+HR67rhVJkDpyucUCDQJyMBCdFG6GvG0XRL8++fzbBaGq0zu5qIiEhrGIhaMEUR+Lm4EmVVbsRbjN51WBTAI4uabSa84ca36JokSUiOiYKx3jgcu9ODYyXV6vT597YdR15BBf72u7748zs7cUmHRFzdPQV2pwwhBEqrnOjUJhZt46L4LxoiIgrIlVdeiX79+mHhwoWRrkpAGIhasKIKJwrKHWgb1zDkBMru9OBocRVSE8xIsBjxt9/1xfOfH8Btl3ZASp1By2eq3LBaTOiQzFkQRESRcvr0acyaNQv/+c9/UFhYiMTERPTt2xezZs3C0KFDI129c/rggw9gNGpv1XAGohbK4Zbxc0klogz6kMOQz9tbjiEpxrsNxPeHizF2QHu/9Ye8iy7K6JYWB7OR3V5ERJEyduxYuFwurFixAp06dUJhYSHWrVuHkpKG2w+1FC6XCyaTCUlJSb9cuAUKz5OWwu74mSqUVblgjQ5Pyt5zshz7Cypwy6BMfH+oGJdmJyG+3r4/p+0OZFgtSIk7+4w0IiJqWmVlZfjmm2/w3HPP4aqrrkJWVhYuvfRSzJgxAzfddJNa5t5770VqairMZjN69eqFTz/9VL3Gt99+iyuuuAIWiwWZmZl44IEHUFlZqZ7v2LEj5syZg0mTJiEuLg4dOnTAq6++6lePRx99FF27dkV0dDQ6deqEmTNn+q2y/eSTT6Jfv35YunQpsrOzYTZ7exuuvPJKTJ06VS135swZ3HHHHUhMTER0dDRGjRqFgwcPNsVXFxIGohboTKULx0qrkBht8mvBCVaJ3Yn1eafx93H98OrXPyE2yqCOKYqN8jYSlle7ERNlQMc2MZwdRkQUQbGxsYiNjcWHH34Ip9PZ4LyiKBg1ahS+++47/Pvf/8bevXsxb948dUr64cOHcd1112Hs2LHYtWsX3n77bXz77beYMmWK33X+9re/YeDAgdi+fTv++Mc/4v7770deXp56Pi4uDsuXL8fevXvx97//Ha+99hoWLFjgd41Dhw7h/fffxwcffIAdO3Y0+vtMnDgRW7Zswccff4wNGzZACIHrr7++xW1hwpWq0bJWqvbICn48UY5iu6vBgoTBcMsK3t1yHI+O6oZn/rMXtwzsoHaH+RZW/Pl0JQ6drsTFGfHITOI6GURE4eRwOJCfn+/XivJL3n//fdx9992orq7GJZdcguHDh2PcuHHo06cPPv/8c4waNQr79u3z2+zc5w9/+AP0ej1eeeUV9di3336L4cOHo7KyEmazGR07dsQVV1yB119/HYB3Yk5aWhqeeuop3HfffY3W6a9//StWrlyJLVu2APC2EM2ZMwcnTpxA27Zt1XJ1B1UfPHgQXbt2xXfffYchQ4YAAEpKSpCZmYkVK1bgt7/9bUjfH1eqvoAV2BwosDmRGqZuq1e+/gnZbaLxyHu78NsBmX5jg3yzzwSAtPgopCeEHsCIiCh0Y8eOxQ033IBvvvkGGzduxOrVqzF//nwsXboURUVFaN++faNhCAB27tyJXbt24Y033lCPeWcpK8jPz0ePHj0AAH369FHPS5KEtLQ0FBXV7lv59ttvY9GiRTh8+DDsdjs8Hk+D0JGVleUXhurbt28fDAYDBg8erB5LTk5Gt27dsG/fvsC+lCbGLrMWpMrlwc8lVYiNMjS6hUWgPttTgM/2FOCV9T9hyEVtkNZI4Cm0OXDiTDU6tokJy2cSEVF4mM1mXHPNNZg5cya+//57TJw4EbNnz1a3szgbu92Oe++9Fzt27FB/du7ciYMHD+Kiiy5Sy9WfCSZJEhTFu//jhg0bMH78eFx//fX49NNPsX37djz++ONwuVx+74mJuXB2HGALUQshhMCRkkrYHR5khKGlJq+gAkvWHwYA3H5ZFgZkJTYoIysCZdVudEmJhTW68f28iIioZejZsyc+/PBD9OnTB8ePH8eBAwcabSW65JJLsHfvXnTu3Dnoz/r++++RlZWFxx9/XD125MiRgK/To0cPeDwebNq0ya/LLC8vDz179gy6fk2BTQItRLHdhRNnHEiOMYW8/s+ZKhfmrt4HjyKQ0ykZvx3QvtFypZUuJMeaOG6IiKgFKSkpwYgRI/Dvf/8bu3btQn5+Pt59913Mnz8fo0ePxvDhwzFs2DCMHTsWa9euRX5+PlavXo01a9YA8M4O+/777zFlyhTs2LEDBw8exEcffdRgUPW5dOnSBUePHsXKlStx+PBhLFq0CKtWrQr4d+nSpQtGjx6Nu+++G99++y127tyJ22+/He3atcPo0aMDvl5TYiBqAVweBT+XVEInSTAb9WgTZ1Jnf9UXG2VAmzhva05j5TyygufW7EfPjHg8el03TM3t0mjAcrhlKEKgY3IMTAb+Z0BE1FLExsZi8ODBWLBgAYYNG4ZevXph5syZuPvuu/Hiiy8C8A66HjRoEG699Vb07NkTjzzyCGRZBuAdG7R+/XocOHAAV1xxBfr3749Zs2YhIyPjvOtw0003Ydq0aZgyZQr69euH77//HjNnzgzq91m2bBkGDBiAX/3qV8jJyYEQAv/9739b3OKNnGWGyM8y+7nYjv0FFUiL9+4/5pv9VXfvMQANjjdW7tWvD6Os2o0Xb+2PA4UVMBsbBishBE6WeccNdUuL44rURERNKJhZZlSruWaZsWkgwmwON46UViHebFQ3Y62795ivBaix8FO/3Bf7i1BW7cYLt/bH94dLGg1DAFBW5UZCtBFZyTEMQ0REROCg6ohSFIEjxVVwuBUkJfhPs/eFnfZJFnx3qBid2sbg1fU/Ia+gosF1uqXFYcKQjoiJ0uOFW/vjva3HMTg7udHPdMsKHB4ZXdISYDFxew4iIiKAgSiiiiqcOFVejbaxja85ZHd68OX+Ilx7cRpeWX8Y8z/La7QcdgJ6nYR7h1+Ej3acwKCOZ99H5nSFE+0SLUiNY7MtERGRDwNRE1IUAZeswC0rcMsCbllRN1Ctcskor3afc/PW2CgDLuuUjFfWH8b4y7IgAThQaG9QrmtqLG6/LAvfHy7GDb3TcazUf+yRT3m1GxaTHlnJ0dyeg4iIqA4GojATQuDw6UrYHC44XQJuRYFHUeCRBQABAUAn6WDUSTDodUiMPvtssvZJFkxavhnfHizGFZ3bYtIV2eccaB0XZcSx0upGB2R7ZAV2pxsXZ8QjztyyRvYTERFFGgNRmDk9Ck6UVcEjC5gNekQZdIjVG2DQSec9gNkXctbsLsA3B4vRMTkashDqAOpzzTKrO9C67vGSShfS4s1ITzj3CqdEREStEQNRmDk93u6x5GhT0FthmE06HCupxmd7CgAAF2ckAKgNO2aTDnZnbbn63WP1y1U6PTDoJG7PQUREdBYMRGHm9MiQFRFS8Ciu8O4Vs+eUDQBwcUbt2gp2pwd2p3+5xvjKKYLbcxAREf0SNheEmdOtAGFY6rLS6UH+6UoAtS1EwSixu5AUY0T7JHaVERERnQ0DUZhVu+SwzODad8oGASA9wYykmOBadnzbc2S3iUWUgWsOERERnQ0DUZjZXW6YwjBOZ8/Jht1lgRBCoMTuRPtEC9rEsquMiIiCc+zYMUyaNAkZGRkwmUzIysrCgw8+iJKSErXMlVdeialTpzZ47/Lly2G1Wv1eS5LU4KclbGnCMURh5JEVVLuUMAWicgDBd5eVVbkRb+H2HEREFLyffvoJOTk56Nq1K9566y1kZ2djz549ePjhh7F69Wps3LgRSUlnXwy4MfHx8cjL819ouCU8pxiIwsjpUeD2KIg1h/a1Oj0yDhZ5F2DsFUQg8m3P0ZvbcxARUQgmT54Mk8mEzz//HBaLdyxqhw4d0L9/f1x00UV4/PHH8fLLLwd0TUmSkJaW1hTVDQkDURi5aqbcn23l6fN1oKACHkUgKcaE1PjGt/U4l9MVTqRbzdyeg4ioBRJCoNotB/QenSQhyqCD06NAEaLB6/NlMerPuzWmtLQUn332GZ599lk1DPmkpaVh/PjxePvtt/HSSy8F9Lu0VAxEYeT0KBDw/ocaCt90+14Z8QE3I9pqtufIbhPD7TmIiFqgareMnrM+C/h9V3Rpgxdu7Y+3Nx/DLYMycfe/tuCbg8UBXWPv0yMRbTq/R//BgwchhECPHj0aPd+jRw+cOXMGp0+fBgC89NJLWLp0qV8Zj8fTYHxQeXk5YmNj/Y5dccUVWL169fn+Gk2CgSiMnB45HDPu1QHVPQPsLpMVAbvLjR5p3J6DiOhC883BYry9+RjuHX4RXll/OOAwFCxxni1Q48ePx+OPP+537IMPPsCcOXP8jsXFxWHbtm1+x+q3QEUCA1EY2R3eFaFD4ZEV7C+obSEKRLHdiZQ4MzKskf8Pi4iIGmcx6rH36ZEBv8/XTeaWFdwzrBMmDOkYUHeZ77PPV+fOnSFJEvbt24ebb765wfl9+/YhMTERbdu2BQAkJCSgc+fOfmVSUlIa/h46XYNyLQEDUZgIIWB3ekKeYfZTcSUcbsW7T1lSNNyyggKbA/rzyFlmkx4dk7k9BxFRSyZJ0nl3WzXGWPNAMAcQboKRnJyMa665Bi+99BKmTZvm14pTUFCAN954A3fccUeLmCEWDgxEYeKSFbhkBSZDaGHkxxO+6fbx0EkSqjwy4i1GdE2N/cWxSUadDgnR7CojIqLwePHFFzFkyBCMHDkSzzzzjN+0+3bt2uHZZ58N+JpCCBQUFDQ4npKSAp0ucv+gZyAKE6fHG4hiQkj9ALC3ZkB1z3Rvd5mnJmSlcMYYERE1sy5dumDLli2YPXs2fve736G0tBRpaWkYM2YMZs+eHfAaRABgs9mQnp7e4PipU6ciOh1fEuc7WuoCZrPZkJCQgPLycsTHB7cydLHdiW1HziA9IfjxO4oQGL90E+xOD/72277omhqHYrsTybEm9GlvDfq6REQUOQ6HA/n5+cjOzm4RKzJrzbm+v3A8v3042CRMfFPuQ3GstAp2pwdmow6d2sQAADyyQDQXVyQiImpSDERhUu3yQBfi1/ljzXT77mnx6sBoRQhuzEpERNTEGIjCxO6Q1ZH/wdp7snZAtY8kiZAHahMREdG58UkbBooiUO2SQ9qyQwihthBdXDOg2ju8Swp5KxAiIiI6Nz5pw8A7w0wOqSWn0OZEaaULBp2ErmlxAACPImDQSyG3PBERUeRxDlNwmut7YyAKA6dHDnlT1x9rusu6pMSqY4Y8soBBp2MLERGRhhmN3vXhqqqqIlwTbfJ9b77vsalwHaIwcHkUyEKBPoRtO/ao44dq9y/zKAqMOl3Iq18TEVHk6PV6WK1WFBUVAQCio6MvmNWdm5IQAlVVVSgqKoLVaoVe37QTjBiIwsDpUUK+hm9D17oDqj2yQKxFx13riYg0zrfgoC8U0fmzWq3NsmAjA1EY2J0eGKTgW3FKK104Ve6ABKBHem0gcisKzIaoMNSQiIgiSZIkpKenIyUlBW63O9LV0Qyj0djkLUM+DERhYHd6YAxhQLWvuyy7bQxiompviaxwUUYioguJXq9vtgc8BYaDU0LklhU4PUpIA5/31Jtu7yMgQgpaREREdH74tA2R06PA7ZFDGvjc2IBqL065JyIiag4MRCFyun1T7oMLLhUON46UeKcU9qwzoFpWBPSSxBlmREREzYBP2xA5PQqEQNBTKPedskEAaGe1IDHapB73KAoMOq5STURE1Bz4tA2R0y0jlOUkGptuD9QsyqhnICIiImoOfNqGqMLpCc+A6nrjh7zbdug4hoiIiKgZMBCFQAiBSmfwm7o63DIOnbYDaKyFSIHFqOdqpkRERM2AgSgETo8Ct6wE3YqTV1ABWRFoExuFlDj/BRg9XIOIiIio2TAQhcC7y70S9Eyw2un28Q1agmRFwGxkICIiImoODEQhcHpkyDVjfdrEmRAb1fjC37FRBrSJ884gq1uu/oDquuUggQOqiYiImgmfuCFwuhVAeP/scCnITLY0CEWxUQZkJlvgcCl+5cxGHfYXVgAAemUkNCgHAAYOqCYiImoW3MssBA63rO5Eb3d6cKykGpnJFhwrqYbN4YbZqEP7JAv2HLehwOZQt/k4UlKJwZ2SMTg7CTuPlaF7Wpz6PrvTA4+sQM81iIiIiJoNA1EIKpxuv/FDdqcHW/LPoEdGPD7fW4BbBmVi0vLN+OZgcYP3XtGlDV64tT++OViMDm2i1TAEeAdUG3VcpZqIiKi5MBAFySMrqHY1HFD9VV4Rdh4vw73DL8Ir6w/jm4PF0NeEG5Oh5kevw/Ez1Vi3rwhjB7TH6QqnGoa81+YaRERERM2pRQciWZbx5JNP4t///jcKCgqQkZGBiRMn4oknnlBnZQkhMHv2bLz22msoKyvD0KFD8fLLL6NLly5NWjeX7J1yX3/MUGZSNG7ok45Pd57EXZdnI7dHKqpccoP3+8YMna5wIjHGCLvDo4Yit6LAYtLDwBYiIiKiZtGin7jPPfccXn75Zbz44ovYt28fnnvuOcyfPx8vvPCCWmb+/PlYtGgRlixZgk2bNiEmJgYjR46Ew+Fo0ro53QrcHuE3zic2yoCbL2mHP721Hau2n8Cx0mpktYk+60DrYyXVKCh3qGOPfOU8soDF2KJvDRER0QWlRT91v//+e4wePRo33HADOnbsiN/85je49tpr8cMPPwDwtg4tXLgQTzzxBEaPHo0+ffrgX//6F06ePIkPP/ywSevm9CgQENDVtFT5Qs47m4/hm4PFMOh1fgOtfWGnbhjytQjVL+dRFESbWnTjHRER0QWlRQeiIUOGYN26dThw4AAAYOfOnfj2228xatQoAEB+fj4KCgqQm5urvichIQGDBw/Ghg0bznpdp9MJm83m9xMop0f2zbgHAJhNOhwrqca+Au9UemO92Wdmk86vXN0xQ/XLCQGYDC361hAREV1QWnQzxGOPPQabzYbu3btDr9dDlmU8++yzGD9+PACgoKAAAJCamur3vtTUVPVcY+bOnYunnnoqpLpVOj0w6GoHPRdXuAB4u7sA/zWE7E4P7E7/co3xlZMkwRlmREREzahFP3XfeecdvPHGG3jzzTexbds2rFixAn/961+xYsWKkK47Y8YMlJeXqz/Hjh0L6P1CCFQ4PI2GFo/sXVhRrwvuqxVCAOAaRERERM2pRbcQPfzww3jssccwbtw4AEDv3r1x5MgRzJ07FxMmTEBaWhoAoLCwEOnp6er7CgsL0a9fv7NeNyoqClFRUWc9/0tccs0eZo10a8lKwxaiQHgUAYNegpFdZkRERM2mRT91q6qqoKvX0qLX66Eo3laY7OxspKWlYd26dep5m82GTZs2IScnp8nq5VJ3uW/49blrApFRF1wgcssKDDquQURERNScWnQL0Y033ohnn30WHTp0wMUXX4zt27fj+eefx6RJkwAAkiRh6tSpeOaZZ9ClSxdkZ2dj5syZyMjIwJgxY5qsXk6PAo8sGg1EoXaZeWQBo04HY5DvJyIiosC16ED0wgsvYObMmfjjH/+IoqIiZGRk4N5778WsWbPUMo888ggqKytxzz33oKysDJdffjnWrFkDs9ncZPXyTblvTDi6zOIsOnWPNCIiImp6kvCO4m3VbDYbEhISUF5ejvj4+F8sf6ioAvmnq5CW0DB0zVuzH98dKsZ9wzrhhj4ZAdelyOZARqIFPdJ/uR5EREStWaDP73Nhv0wQKp3yWcf4+LrMgt12wyMEok36oOtGREREgWMgCpCiCFQ55bNOi/d1melD6PLilHsiIqLmxSdvgJweBS5ZPutK0h7fGKJgA5FofLA2ERERNR0+eQPk9Mhwn2WGGeCdNg8E18ojKwJ6nY6rVBMRETUzPnkD5PIokIU4a5eYb+uOYLrMPIoCg06C0cAZZkRERM2JgShATo8CnGXKPRDatHuPXLNKNVuIiIiImhWfvAGyOz0wSGf/2jw1q2gHs7Cid9sOXfDjj4iIiCgoDEQBqnR6zrnPmLuR3e7Pl0dWYDHqIUkMRERERM2JgSgAblmBw9P4HmY+oUy7dytcg4iIiCgSGIgC4PQocHvkc84C83WZGYLoMlOEArORgYiIiKi5MRAFwOn2Tbk/e+uPb5ZZMLvVS+CAaiIiokjg0zcALlmBAM45xset+Ha7DywQ+baUCyZIERERUWgYiALgcMn4pbhSO+0+sK9WVgT0eumcA7aJiIioafDpG4AKp+cXu7TULrMAW4g8ioBBJ3GVaiIiogjg0zcA1S75nGsECSHUvcwC7TLzyAJGnY5jiIiIiCKAT98A/NL4IV93GRB4l5lbUWAy6IKark9EREShYSAKI0/dQBREC5GFaxARERFFBANRGPnGDwGB73bvURREcw0iIiKiiGAgCiPflHsACLTnSwCcYUZERBQhfAKHkTrlXicFtR8ZZ5gRERFFBp/AYVS7SnVgX6siBHRcpZqIiChi+AQOo2BXqfbIAgY9u8yIiIgihU/gMJJl3yrVgS7KqMCg13HbDiIioghhIAojjzqGKMAZZrKAQafjGCIiIqII4RM4jDyyt8ss0JYejyJgMeqDGohNREREoWMgCiN30Nt2KLCYeCuIiIgihU/hMKo77T4QHiFgMRqaokpERER0HhiIwsjXZRboPmYAYDSwu4yIiChSGIjCyB1kCxGE4BpEREREEcSncBgF02UmKwJ6nQ7GAGemERERUfjwKRxGwXSZuWUFBr3ELjMiIqIIYiAKI9/WHYG0EHkUUbMoI28FERFRpPApHEa+rTsCWanaIysw6riPGRERUSTxKRxGchArVXsUAYtJ31RVIiIiovPAQBRGniD2MvPIAtEMRERERBHFQBRGapdZAGOIFCiIMjAQERERRRIDURgF02UmQYLJwNtAREQUSXwSh1GgXWZCCAgBDqgmIiKKMD6Jw8gTYJeZRxEwGCQYAxhzREREROEXdCCaNGkSKioqGhyvrKzEpEmTQqqUVrnlwLrMPLKAgVPuiYiIIi7oJ/GKFStQXV3d4Hh1dTX+9a9/hVQprVLHEJ1ni49HUWDUcVFGIiKiSDME+gabzVYz9kWgoqICZrNZPSfLMv773/8iJSUlrJXUikC37vDIAtFReugD3QyWiIiIwirgQGS1WiFJEiRJQteuXRuclyQJTz31VFgqpzWB7nbvVhREm0xNWSUiIiI6DwEHoi+//BJCCIwYMQLvv/8+kpKS1HMmkwlZWVnIyMgIayW1ItDd7mVFwGLkGkRERESRFnAgGj58OAAgPz8fHTp0gCSxu8cn0C4zAQETAxEREVHEBT2ad9++ffjuu+/U14sXL0a/fv1w22234cyZM2GpnNZ4alqIJABuWYEQ4hfewSn3RERELUHQgejhhx+GzWYDAOzevRvTp0/H9ddfj/z8fEyfPj1sFdQS37T7SqcbZ6pdKLQ5cbK8GqfKq3GyvAoF5Q4UVThQWulCebUbOkgwcYYZERFRxAXcZeaTn5+Pnj17AgDef/993HjjjZgzZw62bduG66+/PmwV1BK5ZmHGKKMeF6cnIMqgg1tRICsCHlnALStwuGW4PAIOjwxrjAFmdpkRERFFXNCByGQyoaqqCgDwv//9D3fccQcAICkpSW05am086jpEOlhMeiRYjOcsrygCOk65JyIiirigA9Hll1+O6dOnY+jQofjhhx/w9ttvAwAOHDiA9u3bh62CWuLby0wvSTifseYMQ0RERC1D0ANYXnzxRRgMBrz33nt4+eWX0a5dOwDA6tWrcd1114Wtglqi7mXGgdJERESaEnQLUYcOHfDpp582OL5gwYKQKqRldXe7ZyQiIiLSjpCmOB0+fBhPPPEEbr31VhQVFQHwthDt2bMnLJXTGt8YIm7FQUREpC1BB6L169ejd+/e2LRpEz744APY7XYAwM6dOzF79uywVVBL3L6FGRmIiIiINCXoQPTYY4/hmWeewdq1a2Gqsx/XiBEjsHHjxrBUTmtqt+7QcQVvIiIiDQk6EO3evRs333xzg+MpKSkoLi4OqVJa5esyM7KFiIiISFOCDkRWqxWnTp1qcHz79u3qjLPWxreXmV7HQdVERERaEnQgGjduHB599FEUFBRAkiQoioLvvvsODz30kLpIY2vjqdNlRkRERNoR9JN7zpw56N69OzIzM2G329GzZ08MGzYMQ4YMwRNPPBHOOmpG7UrV57cwIxEREbUMIW3d8dprr2HWrFnYvXs37HY7+vfvjy5duoSzfpohhFAHVXPaPRERkbYEHYh8MjMzkZmZGY66aJqvdQjwLczIUERERKQVQXWZHTx4EO+//z7y8/MBAP/5z38wbNgwDBo0CM8++yyEEL9whQuPb5VqgGOIiIiItCbgFqJVq1bhd7/7HXQ1a+28+uqruPfee3HllVciPj4eTz75JAwGAx599NGmqG+L5dvHDODCjERERFoTcFPGs88+i0ceeQQOhwMvv/wy7rvvPsydOxerV6/Gp59+isWLF2P58uVhq+CJEydw++23Izk5GRaLBb1798aWLVvU80IIzJo1C+np6bBYLMjNzcXBgwfD9vnny9dCJAHQSeCgaiIiIg0JOBDl5eVh0qRJkCQJEyZMgMvlQm5urnr+2muvxZEjR8JSuTNnzmDo0KEwGo1YvXo19u7di7/97W9ITExUy8yfPx+LFi3CkiVLsGnTJsTExGDkyJFwOBxhqcP58pthxhYiIiIiTQm4y6yyshJxcXEAAJ1OB4vFgujoaPW8xWKB0+kMS+Wee+45ZGZmYtmyZeqx7Oxs9c9CCCxcuBBPPPEERo8eDQD417/+hdTUVHz44YcYN25cWOpxPnxdZhw/REREpD0BP70lSfLbp6v+63D6+OOPMXDgQPz2t79FSkoK+vfvj9dee009n5+fj4KCAr8WqoSEBAwePBgbNmw463WdTidsNpvfT6h8XWbeVarZQkRERKQlAQciIQS6du2KpKQkJCUlqesP+V537949bJX76aef8PLLL6NLly747LPPcP/99+OBBx7AihUrAAAFBQUAgNTUVL/3paamqucaM3fuXCQkJKg/4Vg2oHaVam8Y4hgiIiIi7Qi4y6xu91VTUxQFAwcOxJw5cwAA/fv3x48//oglS5ZgwoQJQV93xowZmD59uvraZrOFHIp8+5gZ9ExCREREWhNwIAoliAQqPT0dPXv29DvWo0cPvP/++wCAtLQ0AEBhYSHS09PVMoWFhejXr99ZrxsVFYWoqKiw1tVTZ5VqSQK7zYiIiDQkLCOA7XZ72MfkAMDQoUORl5fnd+zAgQPIysoC4B1gnZaWhnXr1qnnbTYbNm3ahJycnLDU4XypLUQcVE1ERKQ5QT+98/PzccMNNyAmJgYJCQlITExEYmIirFar37T4UEybNg0bN27EnDlzcOjQIbz55pt49dVXMXnyZADeAd1Tp07FM888g48//hi7d+/GHXfcgYyMDIwZMyYsdThfftPum/WTiYiIKFRB72V2++23QwiBf/7zn0hNTW2SmWaDBg3CqlWrMGPGDDz99NPIzs7GwoULMX78eLXMI488gsrKStxzzz0oKyvD5ZdfjjVr1sBsNoe9PufCQdVERETaJYkgNx6LjY3F1q1b0a1bt3DXqdnZbDYkJCSgvLwc8fHxZy238acSeGSBBIuxwbkNh4sxZ/V+dE2NxawbL8bg7CQY9ew+IyIiairn+/w+H0E/sQcNGoRjx46F9OEXktoWIu9XygYiIiIi7Qi6y2zp0qW47777cOLECfTq1QtGo3+rSZ8+fUKunJbU7TJjGCIiItKWoAPR6dOncfjwYdx5553qMUmSIISAJEmQZTksFdQK3ywzvTqGiLGIiIhIK4IORJMmTUL//v3x1ltvNdmgai2pP6iaiIiItCPoQHTkyBF8/PHH6Ny5czjro1nqXmY10+4Zi4iIiLQj6EHVI0aMwM6dO8NZF02r3e2eUYiIiEhrgm4huvHGGzFt2jTs3r0bvXv3bjCo+qabbgq5clriayEy6HTctoOIiEhjgg5E9913HwDg6aefbnCuVQ6qrrOXGcCFGYmIiLQk6ECk1HQRkZffoGqGISIiIk3hUsphwmn3RERE2hV0C1FjXWV1zZo1K9hLa5LaZabXsbuMiIhIY4IORKtWrfJ77Xa7kZ+fD4PBgIsuuqjVBiLOMiMiItKeoAPR9u3bGxyz2WyYOHEibr755pAqpUW+LjMGIiIiIu0J6xii+Ph4PPXUU5g5c2Y4L6sJ6sKM3MuMiIhIc8I+qLq8vBzl5eXhvmyL57e5KxMRERGRpgTdZbZo0SK/10IInDp1Cq+//jpGjRoVcsW0xrdStV4ncYYZERGRxgQdiBYsWOD3WqfToW3btpgwYQJmzJgRcsW0hl1mRERE2hV0IMrPzw9nPTSvdi8zLu1ERESkNQE/vWVZxq5du1BdXd3gXHV1NXbt2tUqV7HmGCIiIiLtCjgQvf7665g0aRJMJlODc0ajEZMmTcKbb74ZlsppiV+XGQMRERGRpgQciP7xj3/goYcegl6vb3DOYDDgkUcewauvvhqWymlJ3UHVREREpC0BB6K8vDxcdtllZz0/aNAg7Nu3L6RKaZHaZaaXwGHVRERE2hJwIKqsrITNZjvr+YqKClRVVYVUKS1Su8wkBiIiIiKtCTgQdenSBd9///1Zz3/77bfo0qVLSJXSorq73XMMERERkbYEHIhuu+02PPHEE9i1a1eDczt37sSsWbNw2223haVyWsLNXYmIiLQr4HWIpk2bhtWrV2PAgAHIzc1F9+7dAQD79+/H//73PwwdOhTTpk0Le0VbOl8g0ut0bCEiIiLSmIADkdFoxOeff44FCxbgzTffxNdffw0hBLp27Ypnn30WU6dOhdFobIq6tmjc7Z6IiEi7glqp2mg04pFHHsEjjzzyi2Xfeust3HTTTYiJiQnmozTD10Kk03NINRERkdY0+T4T9957LwoLC5v6YyKOK1UTERFpV5MHIiFEU39Ei+DrMtMxDREREWkOdyINA1kRqGkgqmkhYigiIiLSEgaiMJCV2lYwvY5jiIiIiLSGgSgMfPuYAd6tO8BIREREpCkMRGHg27YDqNm6g3mIiIhIU5o8EGVlZV3w6xKpU+4l76BqBiIiIiJtCToQTZgwAV9//fUvlvvxxx+RmZkZ7Mdogq/LzKDzfp3MQ0RERNoSdCAqLy9Hbm4uunTpgjlz5uDEiRPhrJemqDvd6yQIMBARERFpTdCB6MMPP8SJEydw//334+2330bHjh0xatQovPfee3C73eGsY4unLsqo90YhTrsnIiLSlpDGELVt2xbTp0/Hzp07sWnTJnTu3Bm///3vkZGRgWnTpuHgwYPhqmeL5luU0ajToXUsQ0lERHRhCcug6lOnTmHt2rVYu3Yt9Ho9rr/+euzevRs9e/bEggULwvERLVrDFqJI1oaIiIgCFXQgcrvdeP/99/GrX/0KWVlZePfddzF16lScPHkSK1aswP/+9z+88847ePrpp8NZ3xbJF4j03OmeiIhIk4La7R4A0tPToSgKbr31Vvzwww/o169fgzJXXXUVrFZrCNXTBl+XmUGvAwTAtaqJiIi0JehAtGDBAvz2t7+F2Ww+axmr1Yr8/PxgP0IzfC1ERh27zIiIiLQo6C6zm266CVVVVQ2Ol5aWwmazhVQprfGfdi/YPkRERKQxQQeicePGYeXKlQ2Ov/POOxg3blxIldIadWFGfc3CjGwiIiIi0pSgA9GmTZtw1VVXNTh+5ZVXYtOmTSFVSmvkOl1mQrDLjIiISGuCDkROpxMej6fBcbfbjerq6pAqpTVu2X/aPREREWlL0IHo0ksvxauvvtrg+JIlSzBgwICQKqU1vi4zvU7ivh1EREQaFPQss2eeeQa5ubnYuXMnrr76agDAunXrsHnzZnz++edhq6AW+AZV127uylRERESkJUG3EA0dOhQbNmxAZmYm3nnnHXzyySfo3Lkzdu3ahSuuuCKcdWzx1Gn37DIjIiLSpKBbiACgX79+eOONN8JVF83yLcyo10nehRmZi4iIiDQlpECkKAoOHTqEoqIiKDXjaHyGDRsWUsW0pHYvMx3DEBERkQYFHYg2btyI2267DUeOHIEQ/nu8S5IEWZZDrpxW+KbdG2oWZiQiIiJtCToQ3XfffRg4cCD+85//ID09vVUvRuj27WXGzV2JiIg0KehAdPDgQbz33nvo3LlzOOujSXW7zCAkdpsRERFpTNCzzAYPHoxDhw6Fsy6a5WELERERkaYF3UL0pz/9CX/+859RUFCA3r17w2g0+p3v06dPyJXTitpp9zouzEhERKRBQQeisWPHAgAmTZqkHpMkCUKIVjeo2heI9DUtRK15PBUREZEWBR2I8vPzw1kPTavbZcYsREREpD1BB6KsrKxw1kPT5DqDqoUQ7DUjIiLSmKAHVQPA66+/jqFDhyIjIwNHjhwBACxcuBAfffRRWCqnFepu9zqJ+5gRERFpUNCB6OWXX8b06dNx/fXXo6ysTB0zZLVasXDhwnDVTxN8u90b9BIEuHUHERGR1gQdiF544QW89tprePzxx6HX69XjAwcOxO7du8NSOa2ov9s9ERERaUvQT/D8/Hz079+/wfGoqChUVlaGVKmzmTdvHiRJwtSpU9VjDocDkydPRnJyMmJjYzF27FgUFhY2yeefjczd7omIiDQt6ECUnZ2NHTt2NDi+Zs0a9OjRI5Q6NWrz5s145ZVXGqxvNG3aNHzyySd49913sX79epw8eRK//vWvw/755+KuP+2e44iIiIg0JehZZtOnT8fkyZPhcDgghMAPP/yAt956C3PnzsXSpUvDWUfY7XaMHz8er732Gp555hn1eHl5Of7xj3/gzTffxIgRIwAAy5YtQ48ePbBx40ZcdtllYa3H2dROu9cxChEREWlQ0IHoD3/4AywWC5544glUVVXhtttuQ0ZGBv7+979j3Lhx4awjJk+ejBtuuAG5ubl+gWjr1q1wu93Izc1Vj3Xv3h0dOnTAhg0bzhqInE4nnE6n+tpms4VUv9pp976FGUO6HBERETWzoAMRAIwfPx7jx49HVVUV7HY7UlJSwlUv1cqVK7Ft2zZs3ry5wbmCggKYTCZYrVa/46mpqSgoKDjrNefOnYunnnoqbHX0dZlxLzMiIiJtCsu0qOjo6CYJQ8eOHcODDz6IN954A2azOWzXnTFjBsrLy9WfY8eOhXQ9tctMrwPAhRmJiIi0JqAWoksuuQTr1q1DYmIi+vfvf849u7Zt2xZy5bZu3YqioiJccskl6jFZlvH111/jxRdfxGeffQaXy4WysjK/VqLCwkKkpaWd9bpRUVGIiooKuX4+Hr8WIsYhIiIirQkoEI0ePVoNEmPGjGmK+vi5+uqrG6xpdOedd6J79+549NFHkZmZCaPRiHXr1qmbzebl5eHo0aPIyclp8vr5yHLttHsBMBMRERFpTECBaPbs2Y3+uanExcWhV69efsdiYmKQnJysHr/rrrswffp0JCUlIT4+Hn/605+Qk5PTbDPMAMBds1K1ngszEhERaVLQg6o3b94MRVEwePBgv+ObNm2CXq/HwIEDQ67c+ViwYAF0Oh3Gjh0Lp9OJkSNH4qWXXmqWz/bxyBxUTUREpGVBN2lMnjy50cHIJ06cwOTJk0Oq1Ll89dVXfnulmc1mLF68GKWlpaisrMQHH3xwzvFDTaHBtHv2mREREWlK0IFo7969foOdffr374+9e/eGVCmtUTd31ekAISJcGyIiIgpU0IEoKiqq0T3DTp06BYMhpOWNNEVWBGoaiNQuMy7MSEREpC1BB6Jrr71WXc/Hp6ysDP/v//0/XHPNNWGpnBb4WocAb5fZuZYiICIiopYp6Kacv/71rxg2bBiysrLUXe937NiB1NRUvP7662GrYEvnGz8EeLvMBDjrnoiISGuCDkTt2rXDrl278MYbb2Dnzp2wWCy48847ceutt8JoNIazji2aW64NRHodh1MTERFpUUiDfWJiYnDPPfeEqy6a5Nu2Qyd5A5EQYLcZERGRxgQUiD7++GOMGjUKRqMRH3/88TnL3nTTTSFVTCtqp9xzUUYiIiKtCigQjRkzBgUFBUhJSTnn1h2SJEGW5VDrpgmeejvds3GIiIhIewIKREqdGVV1/9yauX073eskiJo1iJiJiIiItCWgfp6kpCQUFxcDACZNmoSKioomqZSWeOp1mXFYNRERkfYEFIhcLhdsNhsAYMWKFXA4HE1SKS2R63SZ+eabsduMiIhIWwLqMsvJycGYMWMwYMAACCHwwAMPwGKxNFr2n//8Z1gq2NLV7TIDGIaIiIi0KKBA9O9//xsLFizA4cOHAQDl5eWtvpWobpeZbxszdpsRERFpS0CBKDU1FfPmzQMAZGdn4/XXX0dycnKTVEwrZNl/p3siIiLSnqAHVV911VUwmUxNUiktqd3pvk4gYjYiIiLSFA6qDpFv6w6DjgszEhERaRUHVYeodgxRTbMQW4eIiIg0J+hB1ZIkcVA1AFlpZGFGhiIiIiJN4aDqENXvMmMYIiIi0p6AB75cf/31KC8vR35+PpKTkzFv3jyUlZWp50tKStCzZ89w1rFFq9tlpi7MGLnqEBERURACDkRr1qyB0+lUX8+ZMwelpaXqa4/Hg7y8vPDUTgNqu8x8W3cQERGR1oQ8Nco3bqa18sj+u90DgMR+MyIiIk3hXPEQuevNMmMUIiIi0p6AA5EkSQ1aQFpzi4jHt5eZ39YdREREpCUBzTIDvF1kEydORFRUFADA4XDgvvvuQ0xMDAD4jS9qDerudk9ERETaFHAgmjBhgt/r22+/vUGZO+64I/gaaYy73hgibuxKRESkPQEHomXLljVFPTRL3ctMr4MAF2YkIiLSIg6qDlGDLjOGISIiIs1hIApR3Wn3tYOqmYqIiIi0hIEoRG61y4zT7omIiLSKgShEtV1mtV8lxxARERFpCwNRiNQuMz3HEBEREWkVA1GI3L6FGeuMISIiIiJtYSAKUe1u9/wqiYiItIpP8RDVn3bPGWZERETaw0AUIk/dLjMuzEhERKRJDEQhctfrMmMYIiIi0h4GohA1trkru82IiIi0hYEoRHW7zADOuiciItIiBqIQ1Z1lpm7dwVRERESkKQxEIXLL9Td3ZRoiIiLSGgaiEMl19jLzrcvISERERKQtDEQhqt3tnl8lERGRVvEpHqLaMUQcVE1ERKRVDEQh8vi6zHQ6QB1UzVhERESkJQxEIRBC1OkyYwsRERGRVjEQhUARaqNQzaDqmq07IlclIiIiCgIDUQjcNYsyArWDqrlKNRERkfYwEIXAt20HUNNCxIUZiYiINImBKASeOoFIry7MGKHKEBERUdAYiELg28dMr5Ogk+oszMgmIiIiIk1hIAqBr4VIr2MAIiIi0jIGohD4ptwb6wQiNg4RERFpDwNRCNRFGfX8GomIiLSMT/IQNNjpHhxTTUREpEUMRCGQ640hEkKwy4yIiEiDGIhC4OsyM9bpMuMMMyIiIu1hIApB/X3MxLkKExERUYvFQBQCddq9nmOIiIiItIyBKARql1nNPmZsIiIiItImBqIQqF1meq5DREREpGUMRCHw7XZv4MKMREREmsZAFILaaffer1EAkDiKiIiISHNafCCaO3cuBg0ahLi4OKSkpGDMmDHIy8vzK+NwODB58mQkJycjNjYWY8eORWFhYZPXzTeo2ug3qJqBiIiISGtafCBav349Jk+ejI0bN2Lt2rVwu9249tprUVlZqZaZNm0aPvnkE7z77rtYv349Tp48iV//+tdNXjdPvS4zLsxIRESkTYZIV+CXrFmzxu/18uXLkZKSgq1bt2LYsGEoLy/HP/7xD7z55psYMWIEAGDZsmXo0aMHNm7ciMsuu6zJ6uap12VGRERE2qS5J3l5eTkAICkpCQCwdetWuN1u5ObmqmW6d++ODh06YMOGDY1ew+l0wmaz+f0EwxeI6s4yIyIiIu3RVCBSFAVTp07F0KFD0atXLwBAQUEBTCYTrFarX9nU1FQUFBQ0ep25c+ciISFB/cnMzAyqPr4uMyNnmREREWmapgLR5MmT8eOPP2LlypUhXWfGjBkoLy9Xf44dOxbUddxqC1HtLDMiIiLSnhY/hshnypQp+PTTT/H111+jffv26vG0tDS4XC6UlZX5tRIVFhYiLS2t0WtFRUUhKioq5DrJsv9u9wC37iAiItKiFt9CJITAlClTsGrVKnzxxRfIzs72Oz9gwAAYjUasW7dOPZaXl4ejR48iJyenSetWu9s9u8yIiIi0rMW3EE2ePBlvvvkmPvroI8TFxanjghISEmCxWJCQkIC77roL06dPR1JSEuLj4/GnP/0JOTk5TTrDDKi7231Nl5kAJCYiIiIizWnxgejll18GAFx55ZV+x5ctW4aJEycCABYsWACdToexY8fC6XRi5MiReOmll5q8brXT7tllRkREpGUtPhAJ8ctDlc1mMxYvXozFixc3Q41q+brMfNPuRc3mHURERKQtLX4MUUvm6zIz1lmYkT1mRERE2sNAFAJ3/S4zzrsnIiLSJAaiEMj1uswAQMcWIiIiIs1hIApB/S4zNhARERFpEwNRCBrby4wNRERERNrDQBQC315mftPuOaqaiIhIcxiIQuBpZC8z5iEiIiLtYSAKQe0YIqYgIiIiLWMgCoFvYca60+4ljiIiIiLSHAaiENTvMgPYZUZERKRFDEQhqN9lJjjxnoiISJMYiEJQu5dZnRaiSFWGiIiIgsZAFIL6u90LwWn3REREWsRAFAJfl5nfwozMQ0RERJrDQBQCX5eZb+sOhiEiIiJtYiAKga+FSO0yA6fdExERaREDUZCEEI3uZUZERETaw0AUJFmpnWLv6zKDYLcZERGRFjEQBclTJxCxhYiIiEjbGIiCVDcQqVt3SFyYkYiISIsYiILkkRX1zwZu7kpERKRpDERBUgdU66TaxRgFgxEREZEWMRAFqf4q1T4cVE1ERKQ9DERB8nWZcZVqIiIi7WMgClLtTve1X6EA9zIjIiLSIgaiIDXWZcYsREREpE0MREHy7WNWt8tMCMGNO4iIiDSIgShI6k73On6FREREWseneZB8XWZGv1Wq2T5ERESkRQxEQfJ1mXHaPRERkfYxEAWJXWZEREQXDj7Ng6SuVF1vY1eJ3WZERESaw0AUJHVhxrrT7iNVGSIiIgoJA1GQaluI/L9CjiEiIiLSHgaiINWOIWICIiIi0joGoiDVLsxY9yvkwoxERERaxEAUJLXLjC1EREREmsdAFKTGuszYPkRERKRNDERBarzLDJxqRkREpEEMREHioGoiIqILBwNRkM42hogLMxIREWkPA1GQ1IUZ63SZMQoRERFpEwNRkBrbukMIwYUZiYiINIiBKEicdk9ERHThYCAKUu1eZnW+QokjiIiIiLSIgShIZ9vtnoiIiLSHgShIje12DxGhyhAREVFIGIiCVDuGqP5u92wxIiIi0hoGoiA11mXGLERERKRNDERBqt9lJoQ3IDETERERaQ8DUZBqW4jqLszIOERERKRFDERBqr+XmW88NbvNiIiItIeBKEi1u90zAREREWkdA1GQaluIvF+hEGwdIiIi0ioGoiBxt3siIqILBwNRkNhlRkREdOFgIApS/S4zFfMRERGR5jAQBUlurMuMYYiIiEiTGIiC5K7XZaYuzMhQREREpDkMREFSu8zqLszIMERERKRJDERBqj/LTF2YMUL1ISIiouAxEAVBCNH4GCIiIiLSJAaiIPhah4D6e5kRERGRFl0wgWjx4sXo2LEjzGYzBg8ejB9++KHJPss3fghoZGFGDiQiIiLSnAsiEL399tuYPn06Zs+ejW3btqFv374YOXIkioqKmuTzZKXxQMQoREREpE0XRCB6/vnncffdd+POO+9Ez549sWTJEkRHR+Of//xnk3yeb8o9AOh9g6prMhJDERERkfYYIl2BULlcLmzduhUzZsxQj+l0OuTm5mLDhg2NvsfpdMLpdKqvy8vLAQA2m+2cn1VZUQGPIuDyKFCcVTDoJFTaK7z18CiocnpgsxkhR2n+ayUiImrxfM9t31qAodD8k7u4uBiyLCM1NdXveGpqKvbv39/oe+bOnYunnnqqwfHMzMyAP3/I8wG/hYiIiMKopKQECQkJIV1D84EoGDNmzMD06dPV12VlZcjKysLRo0dD/kIpNDabDZmZmTh27Bji4+MjXZ1Wjfei5eC9aFl4P1qO8vJydOjQAUlJSSFfS/OBqE2bNtDr9SgsLPQ7XlhYiLS0tEbfExUVhaioqAbHExIS+B93CxEfH8970ULwXrQcvBctC+9Hy6Grv9F6MNcIQz0iymQyYcCAAVi3bp16TFEUrFu3Djk5ORGsGREREWmF5luIAGD69OmYMGECBg4ciEsvvRQLFy5EZWUl7rzzzkhXjYiIiDTggghEt9xyC06fPo1Zs2ahoKAA/fr1w5o1axoMtD6bqKgozJ49u9FuNGpevBctB+9Fy8F70bLwfrQc4bwXkgjHXDUiIiIiDdP8GCIiIiKiUDEQERERUavHQEREREStHgMRERERtXqtPhAtXrwYHTt2hNlsxuDBg/HDDz9Eukqtwtdff40bb7wRGRkZkCQJH374od95IQRmzZqF9PR0WCwW5Obm4uDBg5Gp7AVs7ty5GDRoEOLi4pCSkoIxY8YgLy/Pr4zD4cDkyZORnJyM2NhYjB07tsFCqBQeL7/8Mvr06aMu+JeTk4PVq1er53kvImfevHmQJAlTp05Vj/F+NI8nn3wSkiT5/XTv3l09H6770KoD0dtvv43p06dj9uzZ2LZtG/r27YuRI0eiqKgo0lW74FVWVqJv375YvHhxo+fnz5+PRYsWYcmSJdi0aRNiYmIwcuRIOByOZq7phW39+vWYPHkyNm7ciLVr18LtduPaa69FZWWlWmbatGn45JNP8O6772L9+vU4efIkfv3rX0ew1heu9u3bY968edi6dSu2bNmCESNGYPTo0dizZw8A3otI2bx5M1555RX06dPH7zjvR/O5+OKLcerUKfXn22+/Vc+F7T6IVuzSSy8VkydPVl/LsiwyMjLE3LlzI1ir1geAWLVqlfpaURSRlpYm/u///k89VlZWJqKiosRbb70VgRq2HkVFRQKAWL9+vRDC+70bjUbx7rvvqmX27dsnAIgNGzZEqpqtSmJioli6dCnvRYRUVFSILl26iLVr14rhw4eLBx98UAjB/280p9mzZ4u+ffs2ei6c96HVthC5XC5s3boVubm56jGdTofc3Fxs2LAhgjWj/Px8FBQU+N2bhIQEDB48mPemiZWXlwOAulHi1q1b4Xa7/e5F9+7d0aFDB96LJibLMlauXInKykrk5OTwXkTI5MmTccMNN/h97wD/v9HcDh48iIyMDHTq1Anjx4/H0aNHAYT3PlwQK1UHo7i4GLIsN1jNOjU1Ffv3749QrQgACgoKAKDRe+M7R+GnKAqmTp2KoUOHolevXgC898JkMsFqtfqV5b1oOrt370ZOTg4cDgdiY2OxatUq9OzZEzt27OC9aGYrV67Etm3bsHnz5gbn+P+N5jN48GAsX74c3bp1w6lTp/DUU0/hiiuuwI8//hjW+9BqAxER+Zs8eTJ+/PFHv755an7dunXDjh07UF5ejvfeew8TJkzA+vXrI12tVufYsWN48MEHsXbtWpjN5khXp1UbNWqU+uc+ffpg8ODByMrKwjvvvAOLxRK2z2m1XWZt2rSBXq9vMBK9sLAQaWlpEaoVAVC/f96b5jNlyhR8+umn+PLLL9G+fXv1eFpaGlwuF8rKyvzK8140HZPJhM6dO2PAgAGYO3cu+vbti7///e+8F81s69atKCoqwiWXXAKDwQCDwYD169dj0aJFMBgMSE1N5f2IEKvViq5du+LQoUNh/f9Fqw1EJpMJAwYMwLp169RjiqJg3bp1yMnJiWDNKDs7G2lpaX73xmazYdOmTbw3YSaEwJQpU7Bq1Sp88cUXyM7O9js/YMAAGI1Gv3uRl5eHo0eP8l40E0VR4HQ6eS+a2dVXX43du3djx44d6s/AgQMxfvx49c+8H5Fht9tx+PBhpKenh/f/FyEM/Na8lStXiqioKLF8+XKxd+9ecc899wir1SoKCgoiXbULXkVFhdi+fbvYvn27ACCef/55sX37dnHkyBEhhBDz5s0TVqtVfPTRR2LXrl1i9OjRIjs7W1RXV0e45heW+++/XyQkJIivvvpKnDp1Sv2pqqpSy9x3332iQ4cO4osvvhBbtmwROTk5IicnJ4K1vnA99thjYv369SI/P1/s2rVLPPbYY0KSJPH5558LIXgvIq3uLDMheD+ay5///Gfx1Vdfifz8fPHdd9+J3Nxc0aZNG1FUVCSECN99aNWBSAghXnjhBdGhQwdhMpnEpZdeKjZu3BjpKrUKX375pQDQ4GfChAlCCO/U+5kzZ4rU1FQRFRUlrr76apGXlxfZSl+AGrsHAMSyZcvUMtXV1eKPf/yjSExMFNHR0eLmm28Wp06dilylL2CTJk0SWVlZwmQyibZt24qrr75aDUNC8F5EWv1AxPvRPG655RaRnp4uTCaTaNeunbjlllvEoUOH1PPhug+SEEKEoQWLiIiISLNa7RgiIiIiIh8GIiIiImr1GIiIiIio1WMgIiIiolaPgYiIiIhaPQYiIiIiavUYiIiIiKjVYyAiIiKiVo+BiIjoPEiShA8//DDS1SCiJsJARNSKTJw4EZIkYd68eX7HP/zwQ0iSFKFaeUmS1OjPypUrI1ovn1OnTmHUqFGRrgaWL18Oq9Ua6WoQXXAYiIhaGbPZjOeeew5nzpyJdFUaWLZsGU6dOuX3M2bMmIjWyeVyAQDS0tIQFRUV0boQUdNhICJqZXJzc5GWloa5c+c2ev7JJ59Ev379/I4tXLgQHTt2VF9PnDgRY8aMwZw5c5Camgqr1Yqnn34aHo8HDz/8MJKSktC+fXssW7YsoLpZrVakpaX5/ZjNZgDApEmT0KdPHzidTgDeoNK/f3/ccccdAICff/5ZbVEaMmQIzGYzevXqhfXr1/t9xo8//ohRo0YhNjYWqamp+P3vf4/i4mL1/JVXXokpU6Zg6tSpaNOmDUaOHAnAv8vM91nvvPMOrrjiClgsFgwaNAgHDhzA5s2bMXDgQMTGxmLUqFE4ffq03+cvXboUPXr0gNlsRvfu3fHSSy+p53zX/eCDD3DVVVchOjoaffv2xYYNGwAAX331Fe68806Ul5erLWhPPvkkAOCll15Cly5dYDabkZqait/85jcBffdErR0DEVEro9frMWfOHLzwwgs4fvx40Nf54osvcPLkSXz99dd4/vnnMXv2bPzqV79CYmIiNm3ahPvuuw/33ntvSJ9R16JFi1BZWYnHHnsMAPD444+jrKwML774ol+5hx9+GH/+85+xfft25OTk4MYbb0RJSQkAoKysDCNGjED//v2xZcsWrFmzBoWFhfjd737nd40VK1bAZDLhu+++w5IlS85ap9mzZ+OJJ57Atm3bYDAYcNttt+GRRx7B3//+d3zzzTc4dOgQZs2apZZ/4403MGvWLDz77LPYt28f5syZg5kzZ2LFihV+13388cfx0EMPYceOHejatStuvfVWeDweDBkyBAsXLkR8fLzagvbQQw9hy5YteOCBB/D0008jLy8Pa9aswbBhw0L6volaHUFErcaECRPE6NGjhRBCXHbZZWLSpElCCCFWrVolfH8dzJ49W/Tt29fvfQsWLBBZWVl+18nKyhKyLKvHunXrJq644gr1tcfjETExMeKtt946r7oBEGazWcTExPj9HDlyRC3z/fffC6PRKGbOnCkMBoP45ptv1HP5+fkCgJg3b556zO12i/bt24vnnntOCCHEX/7yF3Httdf6fe6xY8cEAJGXlyeEEGL48OGif//+jdZv1apVfp+1dOlS9fxbb70lAIh169apx+bOnSu6deumvr7ooovEm2++6Xfdv/zlLyInJ+es192zZ48AIPbt2yeEEGLZsmUiISHB7xrvv/++iI+PFzabrUG9iej8GCKWxIgoop577jmMGDECDz30UFDvv/jii6HT1TYyp6amolevXuprvV6P5ORkFBUVnfc1FyxYgNzcXL9jGRkZ6p9zcnLw0EMP4S9/+QseffRRXH755Q2ukZOTo/7ZYDBg4MCB2LdvHwBg586d+PLLLxEbG9vgfYcPH0bXrl0BAAMGDDiv+vbp00f9c2pqKgCgd+/efsd8v39lZSUOHz6Mu+66C3fffbdaxuPxICEh4azXTU9PBwAUFRWhe/fujdbjmmuuQVZWFjp16oTrrrsO1113HW6++WZER0ef1+9BRAADEVErNWzYMIwcORIzZszAxIkT1eM6nQ5CCL+ybre7wfuNRqPfa0mSGj2mKMp51yktLQ2dO3c+63lFUfDdd99Br9fj0KFD531dH7vdjhtvvBHPPfdcg3O+4AEAMTEx53W9ur+vb5Ze/WO+399utwMAXnvtNQwePNjvOnq9/heve67vMS4uDtu2bcNXX32Fzz//HLNmzcKTTz6JzZs3c0Ya0XniGCKiVmzevHn45JNP1EG7ANC2bVsUFBT4haIdO3ZEoHYN/d///R/279+P9evXY82aNY0O2t64caP6Z4/Hg61bt6JHjx4AgEsuuQR79uxBx44d0blzZ7+f8w1BwUpNTUVGRgZ++umnBp+dnZ193tcxmUyQZbnBcYPBgNzcXMyfPx+7du3Czz//jC+++CKcvwLRBY0tREStWO/evTF+/HgsWrRIPXbllVfi9OnTmD9/Pn7zm99gzZo1WL16NeLj45u8PmVlZSgoKPA7FhcXh5iYGGzfvh2zZs3Ce++9h6FDh+L555/Hgw8+iOHDh6NTp05q+cWLF6NLly7o0aMHFixYgDNnzmDSpEkAgMmTJ+O1117DrbfeikceeQRJSUk4dOgQVq5ciaVLlzZoqQm3p556Cg888AASEhJw3XXXwel0YsuWLThz5gymT59+Xtfo2LEj7HY71q1bh759+yI6OhpffPEFfvrpJwwbNgyJiYn473//C0VR0K1btyb9fYguJGwhImrlnn76ab/umB49euCll17C4sWL0bdvX/zwww9BjzMK1J133on09HS/nxdeeAEOhwO33347Jk6ciBtvvBEAcM899+Cqq67C73//e78Wk3nz5mHevHno27cvvv32W3z88cdo06YNAO94pO+++w6yLOPaa69F7969MXXqVFitVr/xUE3lD3/4A5YuXYply5ahd+/eGD58OJYvXx5QC9GQIUNw33334ZZbbkHbtm0xf/58WK1WfPDBBxgxYgR69OiBJUuW4K233sLFF1/chL8N0YVFEvUHCxARadDPP/+M7OxsbN++vcE6SkREv4QtRERERNTqMRARUZObM2cOYmNjG/1pCfuDERGxy4yImlxpaSlKS0sbPWexWNCuXbtmrhERkT8GIiIiImr12GVGRERErR4DEREREbV6DERERETU6jEQERERUavHQEREREStHgMRERERtXoMRERERNTq/X+x2T6L9PsrvQAAAABJRU5ErkJggg==",
- "text/plain": [
- "
"
- ]
- },
- "metadata": {},
- "output_type": "display_data"
- }
- ],
- "source": [
- "sns.lineplot(\n",
- " data=results,\n",
- " x=\"Num_Experiments\",\n",
- " y=\"Efficiency_CumBest\",\n",
- " hue=\"Scenario\",\n",
- " marker=\"x\",\n",
- ")\n",
- "\n",
- "plt.xlim(0, N_DOE_ITERATIONS)\n",
- "plt.ylim(0, 100)\n",
- "\n",
- "plt.savefig(\"Scenarios\")"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "# Evalute best results"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 19,
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "Index(['Scenario', 'Random_Seed', 'Iteration', 'Num_Experiments',\n",
- " 'Efficiency_Measurements', 'Efficiency_IterBest', 'Efficiency_CumBest'],\n",
- " dtype='object')\n"
- ]
- }
- ],
- "source": [
- "print(results.columns)"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "## Use transfer learning on other metals"
- ]
- },
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "Define the training function (i.e. the previously investigated larger data set) and the yet to be optimized data sets."
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "metadata": {},
- "outputs": [],
- "source": [
- "from baybe.parameters import TaskParameter\n",
- "\n",
- "taskparam = TaskParameter(\n",
- " name=\"Al_alloys\",\n",
- " values=[\"AA1000\", \"AA2024\"],\n",
- " active_values=[\"AA2024\"],\n",
- ")"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 21,
- "metadata": {},
- "outputs": [],
- "source": [
- "unique_SMILES_transfer = df_transfer[\"SMILES\"].unique()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 59,
- "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": 60,
- "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": 61,
- "metadata": {},
- "outputs": [],
- "source": [
- "df_features = df.drop(\"Efficiency\", axis = 1)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 62,
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- " 0%| | 0/1 [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"
- ]
- },
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "100%|##########| 1/1 [00:06<00:00, 6.61s/it]\n"
- ]
- }
- ],
- "source": [
- "results_transfer: list[pd.DataFrame] = []\n",
- "fractions = (0.01, 0.2)\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": 63,
- "metadata": {},
- "outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- " 0%| | 0/10 [00:00, ?it/s]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- " 10%|# | 1/10 [00:25<03:51, 25.67s/it]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- " 20%|## | 2/10 [00:50<03:23, 25.49s/it]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- " 30%|### | 3/10 [01:18<03:02, 26.13s/it]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- " 40%|#### | 4/10 [01:43<02:34, 25.77s/it]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- " 50%|##### | 5/10 [02:08<02:08, 25.61s/it]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- " 60%|###### | 6/10 [02:32<01:41, 25.44s/it]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- " 70%|####### | 7/10 [02:57<01:16, 25.40s/it]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- " 80%|######## | 8/10 [03:23<00:50, 25.39s/it]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- " 90%|######### | 9/10 [03:48<00:25, 25.36s/it]Input row with index 350 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 304 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 256 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 167 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 339 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 317 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 181 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 345 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 24 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 399 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 180 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 443 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 67 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 173 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 380 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 95 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 47 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 335 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 315 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 273 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 15 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 27 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 460 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 12 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 213 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 278 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 512 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 240 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 432 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 445 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 114 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 34 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 223 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 69 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 383 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 125 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 503 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 13 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 302 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 279 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 218 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 9 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 11 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 323 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 244 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 136 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 71 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 96 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 3 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 405 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 106 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 219 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 49 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 100 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 468 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 319 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 210 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 391 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 406 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 157 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 417 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 229 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 83 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 91 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 455 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 374 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 89 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 411 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 195 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 248 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 102 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 430 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 23 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 482 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 408 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 500 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 332 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 46 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 17 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 505 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 209 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 176 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 56 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 387 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 22 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 320 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 480 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 419 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 151 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 465 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 509 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 226 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 303 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 70 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 414 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 404 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 487 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 117 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 77 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 259 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 25 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 120 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 115 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 272 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 199 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 400 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 428 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 19 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 217 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 439 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 312 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 161 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 175 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 266 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 485 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 33 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 247 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 447 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 294 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 30 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 170 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 147 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 65 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 32 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 416 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 37 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 454 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 140 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 108 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 2 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 202 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 394 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 477 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 225 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 437 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 451 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 292 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 14 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 187 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 40 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 204 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 305 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 174 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 269 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 126 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 72 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 239 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 495 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 449 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 333 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 4 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 435 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 241 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 415 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 368 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 93 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 381 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 338 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 28 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 351 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 507 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 288 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 211 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 277 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 376 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 75 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 8 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 386 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 340 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 474 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 489 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 236 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 506 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 366 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 166 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 452 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 486 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 499 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 352 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 431 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 105 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 324 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 123 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 421 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 99 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 121 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 198 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 124 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 200 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 129 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 154 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 393 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 148 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 398 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 357 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 492 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 479 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 344 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 82 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 307 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 107 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 135 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 263 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 20 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 35 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 227 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 92 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 45 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 0 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 94 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 169 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 233 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 164 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 377 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 418 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 444 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 407 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 104 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 152 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 191 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 172 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 116 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 371 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 346 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 196 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 513 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 7 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 301 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 53 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 205 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 237 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 127 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 401 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 112 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 134 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 502 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 403 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 504 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 76 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 342 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 141 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 336 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 62 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 5 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 322 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 177 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 276 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 171 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 133 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 254 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 281 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 222 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 434 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 243 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 128 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 438 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 119 could not be matched to the search space. This could indicate that something went wrong.\n",
- "Input row with index 59 could not be matched to the search space. This could indicate that something went wrong.\n",
- "100%|##########| 10/10 [04:13<00:00, 25.35s/it]\n"
- ]
- }
- ],
- "source": [
- "fraction_df = df.sample(frac=0.5)\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": 66,
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "