
.. DO NOT EDIT.
.. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY.
.. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE:
.. "examples/examples_bbo/plot_transfer_learning_for_hpo.py"
.. LINE NUMBERS ARE GIVEN BELOW.

.. only:: html

    .. note::
        :class: sphx-glr-download-link-note

        :ref:`Go to the end <sphx_glr_download_examples_examples_bbo_plot_transfer_learning_for_hpo.py>`
        to download the full example code.

.. rst-class:: sphx-glr-example-title

.. _sphx_glr_examples_examples_bbo_plot_transfer_learning_for_hpo.py:


Using Transfer Learning to Speed-up Bayesian Optimization
=========================================================

**Author(s)**: Romain Egele.

In this example, we demonstrate how to leverage transfer learning for hyperparameter optimization. Imagine you are working on multiple related tasks, such as optimizing the hyperparameters of neural networks for various datasets. It's reasonable to expect that similar hyperparameter configurations might perform well across these datasets, even if some minor adjustments are needed to fine-tune performance.

By conducting a thorough (and potentially expensive) search on one task, you can reuse the resulting hyperparameter set to guide and accelerate optimization for subsequent tasks. This approach reduces computational costs while maintaining high performance.

To illustrate, we will use a simple and computationally inexpensive example: minimizing the function :math:`f(x) = \sum_{i=0}^
{n-1}`. Here, the difficulty of the problem is defined by the number of variables :math:`n`. We will start by optimizing the small problem where :math:`n=5`. Then, we will apply transfer learning to optimize a larger problem where :math:`n=10`, comparing the results with and without transfer learning to highlight the benefits.

Let's begin by defining the run-functions for both the small-scale and large-scale problems:

.. GENERATED FROM PYTHON SOURCE LINES 18-32

.. dropdown:: Code (Import statements)

    .. code-block:: Python


        import functools

        import matplotlib.pyplot as plt

        from deephyper.analysis.hpo import plot_search_trajectory_single_objective_hpo
        from deephyper.evaluator import Evaluator
        from deephyper.evaluator.callback import TqdmCallback
        from deephyper.hpo import CBO, HpProblem

        WIDTH_PLOTS = 8
        HEIGHT_PLOTS = WIDTH_PLOTS / 1.618








.. GENERATED FROM PYTHON SOURCE LINES 33-44

.. code-block:: Python

    def run(job, N: int) -> float:
        # Definition of the function to minimize
        y = sum([job.parameters[f"x{i}"] ** 2 for i in range(N)])
        return -y  # Use the `-` sign to perform minimization


    n_small = 5
    n_large = 10
    run_small = functools.partial(run, N=n_small)
    run_large = functools.partial(run, N=n_large)








.. GENERATED FROM PYTHON SOURCE LINES 45-46

Then, we can define the hyperparameter problem space based on :math:`n`

.. GENERATED FROM PYTHON SOURCE LINES 46-53

.. code-block:: Python


    def create_problem(n):
        problem = HpProblem()
        for i in range(n):
            problem.add_hyperparameter((-10.0, 10.0), f"x{i}")
        return problem








.. GENERATED FROM PYTHON SOURCE LINES 54-56

.. code-block:: Python

    problem_small = create_problem(n_small)








.. GENERATED FROM PYTHON SOURCE LINES 57-59

.. code-block:: Python

    problem_large = create_problem(n_large)








.. GENERATED FROM PYTHON SOURCE LINES 60-61

We define the parameters of the search:

.. GENERATED FROM PYTHON SOURCE LINES 61-66

.. code-block:: Python

    search_kwargs = {
        "acq_optimizer": "ga", # Optimizing the acquisition function with countinuous genetic algorithm
        "random_state": 42,
    }








.. GENERATED FROM PYTHON SOURCE LINES 67-69

We create a dictionnary that will store the results of each experiment and also fix the number of
evaluation of the search to 200.

.. GENERATED FROM PYTHON SOURCE LINES 69-72

.. code-block:: Python

    results = {}
    max_evals = 200








.. GENERATED FROM PYTHON SOURCE LINES 73-74

Then, we run the search for each problem. We start with the small problem:

.. GENERATED FROM PYTHON SOURCE LINES 74-86

.. code-block:: Python

    evaluator_small = Evaluator.create(
        run_small, 
        method="thread", 
        method_kwargs={"callbacks": [TqdmCallback("HPO - Small Problem")]},
    )

    search_small = CBO(
        problem_small, 
        **search_kwargs,
    )
    results_small = search_small.search(evaluator_small, max_evals)





.. rst-class:: sphx-glr-script-out

 .. code-block:: none

      0%|          | 0/200 [00:00<?, ?it/s]    HPO - Small Problem:   0%|          | 0/200 [00:00<?, ?it/s]    HPO - Small Problem:   0%|          | 1/200 [00:00<00:00, 19972.88it/s, failures=0, objective=-125]    HPO - Small Problem:   1%|          | 2/200 [00:00<00:01, 127.17it/s, failures=0, objective=-125]      HPO - Small Problem:   2%|▏         | 3/200 [00:00<00:01, 102.85it/s, failures=0, objective=-125]    HPO - Small Problem:   2%|▏         | 4/200 [00:00<00:02, 93.59it/s, failures=0, objective=-102]     HPO - Small Problem:   2%|▎         | 5/200 [00:00<00:02, 88.83it/s, failures=0, objective=-102]    HPO - Small Problem:   3%|▎         | 6/200 [00:00<00:02, 85.24it/s, failures=0, objective=-74]     HPO - Small Problem:   4%|▎         | 7/200 [00:00<00:02, 83.55it/s, failures=0, objective=-68.1]    HPO - Small Problem:   4%|▍         | 8/200 [00:00<00:02, 82.16it/s, failures=0, objective=-68.1]    HPO - Small Problem:   4%|▍         | 9/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   4%|▍         | 9/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   5%|▌         | 10/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   6%|▌         | 11/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   6%|▌         | 12/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   6%|▋         | 13/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   7%|▋         | 14/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   8%|▊         | 15/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   8%|▊         | 16/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   8%|▊         | 17/200 [00:00<00:02, 81.41it/s, failures=0, objective=-68.1]    HPO - Small Problem:   9%|▉         | 18/200 [00:01<00:11, 15.66it/s, failures=0, objective=-68.1]    HPO - Small Problem:   9%|▉         | 18/200 [00:01<00:11, 15.66it/s, failures=0, objective=-68.1]    HPO - Small Problem:  10%|▉         | 19/200 [00:01<00:11, 15.66it/s, failures=0, objective=-68.1]    HPO - Small Problem:  10%|█         | 20/200 [00:01<00:11, 15.66it/s, failures=0, objective=-68.1]    HPO - Small Problem:  10%|█         | 21/200 [00:01<00:11, 15.66it/s, failures=0, objective=-68.1]    HPO - Small Problem:  11%|█         | 22/200 [00:01<00:14, 12.05it/s, failures=0, objective=-68.1]    HPO - Small Problem:  11%|█         | 22/200 [00:01<00:14, 12.05it/s, failures=0, objective=-68.1]    HPO - Small Problem:  12%|█▏        | 23/200 [00:01<00:14, 12.05it/s, failures=0, objective=-68.1]    HPO - Small Problem:  12%|█▏        | 24/200 [00:01<00:14, 12.05it/s, failures=0, objective=-65.5]    HPO - Small Problem:  12%|█▎        | 25/200 [00:01<00:16, 10.90it/s, failures=0, objective=-65.5]    HPO - Small Problem:  12%|█▎        | 25/200 [00:01<00:16, 10.90it/s, failures=0, objective=-65.5]    HPO - Small Problem:  13%|█▎        | 26/200 [00:02<00:15, 10.90it/s, failures=0, objective=-65.5]    HPO - Small Problem:  14%|█▎        | 27/200 [00:02<00:16, 10.32it/s, failures=0, objective=-65.5]    HPO - Small Problem:  14%|█▎        | 27/200 [00:02<00:16, 10.32it/s, failures=0, objective=-65.5]    HPO - Small Problem:  14%|█▍        | 28/200 [00:02<00:16, 10.32it/s, failures=0, objective=-65.5]    HPO - Small Problem:  14%|█▍        | 29/200 [00:02<00:17,  9.88it/s, failures=0, objective=-65.5]    HPO - Small Problem:  14%|█▍        | 29/200 [00:02<00:17,  9.88it/s, failures=0, objective=-65.5]    HPO - Small Problem:  15%|█▌        | 30/200 [00:02<00:17,  9.88it/s, failures=0, objective=-65.5]    HPO - Small Problem:  16%|█▌        | 31/200 [00:02<00:18,  8.93it/s, failures=0, objective=-65.5]    HPO - Small Problem:  16%|█▌        | 31/200 [00:02<00:18,  8.93it/s, failures=0, objective=-65.5]    HPO - Small Problem:  16%|█▌        | 32/200 [00:02<00:18,  8.93it/s, failures=0, objective=-65.5]    HPO - Small Problem:  16%|█▋        | 33/200 [00:02<00:19,  8.62it/s, failures=0, objective=-65.5]    HPO - Small Problem:  16%|█▋        | 33/200 [00:02<00:19,  8.62it/s, failures=0, objective=-65.5]    HPO - Small Problem:  17%|█▋        | 34/200 [00:03<00:19,  8.59it/s, failures=0, objective=-65.5]    HPO - Small Problem:  17%|█▋        | 34/200 [00:03<00:19,  8.59it/s, failures=0, objective=-65.5]    HPO - Small Problem:  18%|█▊        | 35/200 [00:03<00:20,  8.25it/s, failures=0, objective=-65.5]    HPO - Small Problem:  18%|█▊        | 35/200 [00:03<00:20,  8.25it/s, failures=0, objective=-38.8]    HPO - Small Problem:  18%|█▊        | 36/200 [00:03<00:20,  8.17it/s, failures=0, objective=-38.8]    HPO - Small Problem:  18%|█▊        | 36/200 [00:03<00:20,  8.17it/s, failures=0, objective=-38.8]    HPO - Small Problem:  18%|█▊        | 37/200 [00:03<00:20,  7.95it/s, failures=0, objective=-38.8]    HPO - Small Problem:  18%|█▊        | 37/200 [00:03<00:20,  7.95it/s, failures=0, objective=-38.8]    HPO - Small Problem:  19%|█▉        | 38/200 [00:03<00:20,  7.83it/s, failures=0, objective=-38.8]    HPO - Small Problem:  19%|█▉        | 38/200 [00:03<00:20,  7.83it/s, failures=0, objective=-37]      HPO - Small Problem:  20%|█▉        | 39/200 [00:03<00:20,  7.88it/s, failures=0, objective=-37]    HPO - Small Problem:  20%|█▉        | 39/200 [00:03<00:20,  7.88it/s, failures=0, objective=-37]    HPO - Small Problem:  20%|██        | 40/200 [00:03<00:23,  6.92it/s, failures=0, objective=-37]    HPO - Small Problem:  20%|██        | 40/200 [00:03<00:23,  6.92it/s, failures=0, objective=-37]    HPO - Small Problem:  20%|██        | 41/200 [00:04<00:22,  7.11it/s, failures=0, objective=-37]    HPO - Small Problem:  20%|██        | 41/200 [00:04<00:22,  7.11it/s, failures=0, objective=-37]    HPO - Small Problem:  21%|██        | 42/200 [00:04<00:21,  7.37it/s, failures=0, objective=-37]    HPO - Small Problem:  21%|██        | 42/200 [00:04<00:21,  7.37it/s, failures=0, objective=-37]    HPO - Small Problem:  22%|██▏       | 43/200 [00:04<00:20,  7.64it/s, failures=0, objective=-37]    HPO - Small Problem:  22%|██▏       | 43/200 [00:04<00:20,  7.64it/s, failures=0, objective=-37]    HPO - Small Problem:  22%|██▏       | 44/200 [00:04<00:19,  7.83it/s, failures=0, objective=-37]    HPO - Small Problem:  22%|██▏       | 44/200 [00:04<00:19,  7.83it/s, failures=0, objective=-37]    HPO - Small Problem:  22%|██▎       | 45/200 [00:04<00:19,  7.75it/s, failures=0, objective=-37]    HPO - Small Problem:  22%|██▎       | 45/200 [00:04<00:19,  7.75it/s, failures=0, objective=-37]    HPO - Small Problem:  23%|██▎       | 46/200 [00:04<00:19,  7.73it/s, failures=0, objective=-37]    HPO - Small Problem:  23%|██▎       | 46/200 [00:04<00:19,  7.73it/s, failures=0, objective=-37]    HPO - Small Problem:  24%|██▎       | 47/200 [00:04<00:19,  7.87it/s, failures=0, objective=-37]    HPO - Small Problem:  24%|██▎       | 47/200 [00:04<00:19,  7.87it/s, failures=0, objective=-28.4]    HPO - Small Problem:  24%|██▍       | 48/200 [00:04<00:19,  7.97it/s, failures=0, objective=-28.4]    HPO - Small Problem:  24%|██▍       | 48/200 [00:04<00:19,  7.97it/s, failures=0, objective=-28.4]    HPO - Small Problem:  24%|██▍       | 49/200 [00:05<00:18,  8.01it/s, failures=0, objective=-28.4]    HPO - Small Problem:  24%|██▍       | 49/200 [00:05<00:18,  8.01it/s, failures=0, objective=-28.4]    HPO - Small Problem:  25%|██▌       | 50/200 [00:05<00:21,  7.08it/s, failures=0, objective=-28.4]    HPO - Small Problem:  25%|██▌       | 50/200 [00:05<00:21,  7.08it/s, failures=0, objective=-28.4]    HPO - Small Problem:  26%|██▌       | 51/200 [00:05<00:20,  7.31it/s, failures=0, objective=-28.4]    HPO - Small Problem:  26%|██▌       | 51/200 [00:05<00:20,  7.31it/s, failures=0, objective=-28.4]    HPO - Small Problem:  26%|██▌       | 52/200 [00:05<00:19,  7.41it/s, failures=0, objective=-28.4]    HPO - Small Problem:  26%|██▌       | 52/200 [00:05<00:19,  7.41it/s, failures=0, objective=-28.4]    HPO - Small Problem:  26%|██▋       | 53/200 [00:05<00:19,  7.50it/s, failures=0, objective=-28.4]    HPO - Small Problem:  26%|██▋       | 53/200 [00:05<00:19,  7.50it/s, failures=0, objective=-28.4]    HPO - Small Problem:  27%|██▋       | 54/200 [00:05<00:19,  7.40it/s, failures=0, objective=-28.4]    HPO - Small Problem:  27%|██▋       | 54/200 [00:05<00:19,  7.40it/s, failures=0, objective=-28.4]    HPO - Small Problem:  28%|██▊       | 55/200 [00:05<00:19,  7.61it/s, failures=0, objective=-28.4]    HPO - Small Problem:  28%|██▊       | 55/200 [00:05<00:19,  7.61it/s, failures=0, objective=-28.4]    HPO - Small Problem:  28%|██▊       | 56/200 [00:05<00:18,  7.77it/s, failures=0, objective=-28.4]    HPO - Small Problem:  28%|██▊       | 56/200 [00:05<00:18,  7.77it/s, failures=0, objective=-28.4]    HPO - Small Problem:  28%|██▊       | 57/200 [00:06<00:18,  7.92it/s, failures=0, objective=-28.4]    HPO - Small Problem:  28%|██▊       | 57/200 [00:06<00:18,  7.92it/s, failures=0, objective=-28.4]    HPO - Small Problem:  29%|██▉       | 58/200 [00:06<00:18,  7.60it/s, failures=0, objective=-28.4]    HPO - Small Problem:  29%|██▉       | 58/200 [00:06<00:18,  7.60it/s, failures=0, objective=-24.5]    HPO - Small Problem:  30%|██▉       | 59/200 [00:06<00:20,  6.84it/s, failures=0, objective=-24.5]    HPO - Small Problem:  30%|██▉       | 59/200 [00:06<00:20,  6.84it/s, failures=0, objective=-24.5]    HPO - Small Problem:  30%|███       | 60/200 [00:06<00:19,  7.17it/s, failures=0, objective=-24.5]    HPO - Small Problem:  30%|███       | 60/200 [00:06<00:19,  7.17it/s, failures=0, objective=-24.5]    HPO - Small Problem:  30%|███       | 61/200 [00:06<00:19,  7.24it/s, failures=0, objective=-24.5]    HPO - Small Problem:  30%|███       | 61/200 [00:06<00:19,  7.24it/s, failures=0, objective=-24.5]    HPO - Small Problem:  31%|███       | 62/200 [00:06<00:18,  7.45it/s, failures=0, objective=-24.5]    HPO - Small Problem:  31%|███       | 62/200 [00:06<00:18,  7.45it/s, failures=0, objective=-24.5]    HPO - Small Problem:  32%|███▏      | 63/200 [00:07<00:20,  6.73it/s, failures=0, objective=-24.5]    HPO - Small Problem:  32%|███▏      | 63/200 [00:07<00:20,  6.73it/s, failures=0, objective=-24.5]    HPO - Small Problem:  32%|███▏      | 64/200 [00:07<00:19,  7.05it/s, failures=0, objective=-24.5]    HPO - Small Problem:  32%|███▏      | 64/200 [00:07<00:19,  7.05it/s, failures=0, objective=-24.5]    HPO - Small Problem:  32%|███▎      | 65/200 [00:07<00:20,  6.56it/s, failures=0, objective=-24.5]    HPO - Small Problem:  32%|███▎      | 65/200 [00:07<00:20,  6.56it/s, failures=0, objective=-24.5]    HPO - Small Problem:  33%|███▎      | 66/200 [00:07<00:19,  6.82it/s, failures=0, objective=-24.5]    HPO - Small Problem:  33%|███▎      | 66/200 [00:07<00:19,  6.82it/s, failures=0, objective=-24.5]    HPO - Small Problem:  34%|███▎      | 67/200 [00:07<00:18,  7.14it/s, failures=0, objective=-24.5]    HPO - Small Problem:  34%|███▎      | 67/200 [00:07<00:18,  7.14it/s, failures=0, objective=-24.5]    HPO - Small Problem:  34%|███▍      | 68/200 [00:07<00:20,  6.48it/s, failures=0, objective=-24.5]    HPO - Small Problem:  34%|███▍      | 68/200 [00:07<00:20,  6.48it/s, failures=0, objective=-24.5]    HPO - Small Problem:  34%|███▍      | 69/200 [00:07<00:19,  6.79it/s, failures=0, objective=-24.5]    HPO - Small Problem:  34%|███▍      | 69/200 [00:07<00:19,  6.79it/s, failures=0, objective=-24.5]    HPO - Small Problem:  35%|███▌      | 70/200 [00:08<00:19,  6.77it/s, failures=0, objective=-24.5]    HPO - Small Problem:  35%|███▌      | 70/200 [00:08<00:19,  6.77it/s, failures=0, objective=-24.5]    HPO - Small Problem:  36%|███▌      | 71/200 [00:08<00:18,  6.99it/s, failures=0, objective=-24.5]    HPO - Small Problem:  36%|███▌      | 71/200 [00:08<00:18,  6.99it/s, failures=0, objective=-24.5]    HPO - Small Problem:  36%|███▌      | 72/200 [00:08<00:18,  7.02it/s, failures=0, objective=-24.5]    HPO - Small Problem:  36%|███▌      | 72/200 [00:08<00:18,  7.02it/s, failures=0, objective=-24.1]    HPO - Small Problem:  36%|███▋      | 73/200 [00:08<00:17,  7.23it/s, failures=0, objective=-24.1]    HPO - Small Problem:  36%|███▋      | 73/200 [00:08<00:17,  7.23it/s, failures=0, objective=-24.1]    HPO - Small Problem:  37%|███▋      | 74/200 [00:08<00:18,  6.67it/s, failures=0, objective=-24.1]    HPO - Small Problem:  37%|███▋      | 74/200 [00:08<00:18,  6.67it/s, failures=0, objective=-24.1]    HPO - Small Problem:  38%|███▊      | 75/200 [00:08<00:18,  6.91it/s, failures=0, objective=-24.1]    HPO - Small Problem:  38%|███▊      | 75/200 [00:08<00:18,  6.91it/s, failures=0, objective=-24.1]    HPO - Small Problem:  38%|███▊      | 76/200 [00:08<00:17,  6.92it/s, failures=0, objective=-24.1]    HPO - Small Problem:  38%|███▊      | 76/200 [00:08<00:17,  6.92it/s, failures=0, objective=-24.1]    HPO - Small Problem:  38%|███▊      | 77/200 [00:09<00:20,  6.14it/s, failures=0, objective=-24.1]    HPO - Small Problem:  38%|███▊      | 77/200 [00:09<00:20,  6.14it/s, failures=0, objective=-24.1]    HPO - Small Problem:  39%|███▉      | 78/200 [00:09<00:19,  6.33it/s, failures=0, objective=-24.1]    HPO - Small Problem:  39%|███▉      | 78/200 [00:09<00:19,  6.33it/s, failures=0, objective=-24.1]    HPO - Small Problem:  40%|███▉      | 79/200 [00:09<00:18,  6.55it/s, failures=0, objective=-24.1]    HPO - Small Problem:  40%|███▉      | 79/200 [00:09<00:18,  6.55it/s, failures=0, objective=-24.1]    HPO - Small Problem:  40%|████      | 80/200 [00:09<00:17,  6.69it/s, failures=0, objective=-24.1]    HPO - Small Problem:  40%|████      | 80/200 [00:09<00:17,  6.69it/s, failures=0, objective=-24.1]    HPO - Small Problem:  40%|████      | 81/200 [00:09<00:17,  6.70it/s, failures=0, objective=-24.1]    HPO - Small Problem:  40%|████      | 81/200 [00:09<00:17,  6.70it/s, failures=0, objective=-24.1]    HPO - Small Problem:  41%|████      | 82/200 [00:09<00:17,  6.86it/s, failures=0, objective=-24.1]    HPO - Small Problem:  41%|████      | 82/200 [00:09<00:17,  6.86it/s, failures=0, objective=-21.5]    HPO - Small Problem:  42%|████▏     | 83/200 [00:09<00:17,  6.77it/s, failures=0, objective=-21.5]    HPO - Small Problem:  42%|████▏     | 83/200 [00:09<00:17,  6.77it/s, failures=0, objective=-21.5]    HPO - Small Problem:  42%|████▏     | 84/200 [00:10<00:17,  6.55it/s, failures=0, objective=-21.5]    HPO - Small Problem:  42%|████▏     | 84/200 [00:10<00:17,  6.55it/s, failures=0, objective=-21.5]    HPO - Small Problem:  42%|████▎     | 85/200 [00:10<00:19,  5.93it/s, failures=0, objective=-21.5]    HPO - Small Problem:  42%|████▎     | 85/200 [00:10<00:19,  5.93it/s, failures=0, objective=-21.5]    HPO - Small Problem:  43%|████▎     | 86/200 [00:10<00:18,  6.18it/s, failures=0, objective=-21.5]    HPO - Small Problem:  43%|████▎     | 86/200 [00:10<00:18,  6.18it/s, failures=0, objective=-21.5]    HPO - Small Problem:  44%|████▎     | 87/200 [00:10<00:17,  6.49it/s, failures=0, objective=-21.5]    HPO - Small Problem:  44%|████▎     | 87/200 [00:10<00:17,  6.49it/s, failures=0, objective=-21.5]    HPO - Small Problem:  44%|████▍     | 88/200 [00:10<00:16,  6.79it/s, failures=0, objective=-21.5]    HPO - Small Problem:  44%|████▍     | 88/200 [00:10<00:16,  6.79it/s, failures=0, objective=-21.5]    HPO - Small Problem:  44%|████▍     | 89/200 [00:10<00:16,  6.90it/s, failures=0, objective=-21.5]    HPO - Small Problem:  44%|████▍     | 89/200 [00:10<00:16,  6.90it/s, failures=0, objective=-21.5]    HPO - Small Problem:  45%|████▌     | 90/200 [00:11<00:15,  6.97it/s, failures=0, objective=-21.5]    HPO - Small Problem:  45%|████▌     | 90/200 [00:11<00:15,  6.97it/s, failures=0, objective=-21.5]    HPO - Small Problem:  46%|████▌     | 91/200 [00:11<00:15,  7.25it/s, failures=0, objective=-21.5]    HPO - Small Problem:  46%|████▌     | 91/200 [00:11<00:15,  7.25it/s, failures=0, objective=-21.5]    HPO - Small Problem:  46%|████▌     | 92/200 [00:11<00:14,  7.26it/s, failures=0, objective=-21.5]    HPO - Small Problem:  46%|████▌     | 92/200 [00:11<00:14,  7.26it/s, failures=0, objective=-21.5]    HPO - Small Problem:  46%|████▋     | 93/200 [00:11<00:16,  6.37it/s, failures=0, objective=-21.5]    HPO - Small Problem:  46%|████▋     | 93/200 [00:11<00:16,  6.37it/s, failures=0, objective=-21.5]    HPO - Small Problem:  47%|████▋     | 94/200 [00:11<00:18,  5.83it/s, failures=0, objective=-21.5]    HPO - Small Problem:  47%|████▋     | 94/200 [00:11<00:18,  5.83it/s, failures=0, objective=-21.5]    HPO - Small Problem:  48%|████▊     | 95/200 [00:11<00:18,  5.67it/s, failures=0, objective=-21.5]    HPO - Small Problem:  48%|████▊     | 95/200 [00:11<00:18,  5.67it/s, failures=0, objective=-21.5]    HPO - Small Problem:  48%|████▊     | 96/200 [00:12<00:16,  6.21it/s, failures=0, objective=-21.5]    HPO - Small Problem:  48%|████▊     | 96/200 [00:12<00:16,  6.21it/s, failures=0, objective=-21.5]    HPO - Small Problem:  48%|████▊     | 97/200 [00:12<00:16,  6.43it/s, failures=0, objective=-21.5]    HPO - Small Problem:  48%|████▊     | 97/200 [00:12<00:16,  6.43it/s, failures=0, objective=-16.1]    HPO - Small Problem:  49%|████▉     | 98/200 [00:12<00:15,  6.66it/s, failures=0, objective=-16.1]    HPO - Small Problem:  49%|████▉     | 98/200 [00:12<00:15,  6.66it/s, failures=0, objective=-11.5]    HPO - Small Problem:  50%|████▉     | 99/200 [00:12<00:14,  6.78it/s, failures=0, objective=-11.5]    HPO - Small Problem:  50%|████▉     | 99/200 [00:12<00:14,  6.78it/s, failures=0, objective=-10.5]    HPO - Small Problem:  50%|█████     | 100/200 [00:12<00:14,  6.89it/s, failures=0, objective=-10.5]    HPO - Small Problem:  50%|█████     | 100/200 [00:12<00:14,  6.89it/s, failures=0, objective=-10.5]    HPO - Small Problem:  50%|█████     | 101/200 [00:12<00:13,  7.11it/s, failures=0, objective=-10.5]    HPO - Small Problem:  50%|█████     | 101/200 [00:12<00:13,  7.11it/s, failures=0, objective=-10.5]    HPO - Small Problem:  51%|█████     | 102/200 [00:12<00:13,  7.16it/s, failures=0, objective=-10.5]    HPO - Small Problem:  51%|█████     | 102/200 [00:12<00:13,  7.16it/s, failures=0, objective=-7.31]    HPO - Small Problem:  52%|█████▏    | 103/200 [00:13<00:15,  6.30it/s, failures=0, objective=-7.31]    HPO - Small Problem:  52%|█████▏    | 103/200 [00:13<00:15,  6.30it/s, failures=0, objective=-7.31]    HPO - Small Problem:  52%|█████▏    | 104/200 [00:13<00:14,  6.57it/s, failures=0, objective=-7.31]    HPO - Small Problem:  52%|█████▏    | 104/200 [00:13<00:14,  6.57it/s, failures=0, objective=-7.31]    HPO - Small Problem:  52%|█████▎    | 105/200 [00:13<00:14,  6.63it/s, failures=0, objective=-7.31]    HPO - Small Problem:  52%|█████▎    | 105/200 [00:13<00:14,  6.63it/s, failures=0, objective=-7.31]    HPO - Small Problem:  53%|█████▎    | 106/200 [00:13<00:14,  6.51it/s, failures=0, objective=-7.31]    HPO - Small Problem:  53%|█████▎    | 106/200 [00:13<00:14,  6.51it/s, failures=0, objective=-7.31]    HPO - Small Problem:  54%|█████▎    | 107/200 [00:13<00:14,  6.53it/s, failures=0, objective=-7.31]    HPO - Small Problem:  54%|█████▎    | 107/200 [00:13<00:14,  6.53it/s, failures=0, objective=-6.85]    HPO - Small Problem:  54%|█████▍    | 108/200 [00:13<00:13,  6.66it/s, failures=0, objective=-6.85]    HPO - Small Problem:  54%|█████▍    | 108/200 [00:13<00:13,  6.66it/s, failures=0, objective=-6.85]    HPO - Small Problem:  55%|█████▍    | 109/200 [00:13<00:13,  6.55it/s, failures=0, objective=-6.85]    HPO - Small Problem:  55%|█████▍    | 109/200 [00:13<00:13,  6.55it/s, failures=0, objective=-6.75]    HPO - Small Problem:  55%|█████▌    | 110/200 [00:14<00:13,  6.60it/s, failures=0, objective=-6.75]    HPO - Small Problem:  55%|█████▌    | 110/200 [00:14<00:13,  6.60it/s, failures=0, objective=-6.75]    HPO - Small Problem:  56%|█████▌    | 111/200 [00:14<00:15,  5.81it/s, failures=0, objective=-6.75]    HPO - Small Problem:  56%|█████▌    | 111/200 [00:14<00:15,  5.81it/s, failures=0, objective=-6.75]    HPO - Small Problem:  56%|█████▌    | 112/200 [00:14<00:14,  6.09it/s, failures=0, objective=-6.75]    HPO - Small Problem:  56%|█████▌    | 112/200 [00:14<00:14,  6.09it/s, failures=0, objective=-6.75]    HPO - Small Problem:  56%|█████▋    | 113/200 [00:14<00:14,  6.09it/s, failures=0, objective=-6.75]    HPO - Small Problem:  56%|█████▋    | 113/200 [00:14<00:14,  6.09it/s, failures=0, objective=-6.75]    HPO - Small Problem:  57%|█████▋    | 114/200 [00:14<00:15,  5.58it/s, failures=0, objective=-6.75]    HPO - Small Problem:  57%|█████▋    | 114/200 [00:14<00:15,  5.58it/s, failures=0, objective=-6.75]    HPO - Small Problem:  57%|█████▊    | 115/200 [00:15<00:15,  5.61it/s, failures=0, objective=-6.75]    HPO - Small Problem:  57%|█████▊    | 115/200 [00:15<00:15,  5.61it/s, failures=0, objective=-6.75]    HPO - Small Problem:  58%|█████▊    | 116/200 [00:15<00:16,  5.19it/s, failures=0, objective=-6.75]    HPO - Small Problem:  58%|█████▊    | 116/200 [00:15<00:16,  5.19it/s, failures=0, objective=-6.75]    HPO - Small Problem:  58%|█████▊    | 117/200 [00:15<00:14,  5.68it/s, failures=0, objective=-6.75]    HPO - Small Problem:  58%|█████▊    | 117/200 [00:15<00:14,  5.68it/s, failures=0, objective=-6.75]    HPO - Small Problem:  59%|█████▉    | 118/200 [00:15<00:13,  6.11it/s, failures=0, objective=-6.75]    HPO - Small Problem:  59%|█████▉    | 118/200 [00:15<00:13,  6.11it/s, failures=0, objective=-6.75]    HPO - Small Problem:  60%|█████▉    | 119/200 [00:15<00:13,  5.86it/s, failures=0, objective=-6.75]    HPO - Small Problem:  60%|█████▉    | 119/200 [00:15<00:13,  5.86it/s, failures=0, objective=-6.75]    HPO - Small Problem:  60%|██████    | 120/200 [00:15<00:12,  6.19it/s, failures=0, objective=-6.75]    HPO - Small Problem:  60%|██████    | 120/200 [00:15<00:12,  6.19it/s, failures=0, objective=-6.75]    HPO - Small Problem:  60%|██████    | 121/200 [00:15<00:12,  6.42it/s, failures=0, objective=-6.75]    HPO - Small Problem:  60%|██████    | 121/200 [00:15<00:12,  6.42it/s, failures=0, objective=-6.75]    HPO - Small Problem:  61%|██████    | 122/200 [00:16<00:11,  6.69it/s, failures=0, objective=-6.75]    HPO - Small Problem:  61%|██████    | 122/200 [00:16<00:11,  6.69it/s, failures=0, objective=-6.75]    HPO - Small Problem:  62%|██████▏   | 123/200 [00:16<00:11,  6.59it/s, failures=0, objective=-6.75]    HPO - Small Problem:  62%|██████▏   | 123/200 [00:16<00:11,  6.59it/s, failures=0, objective=-6.75]    HPO - Small Problem:  62%|██████▏   | 124/200 [00:16<00:12,  6.18it/s, failures=0, objective=-6.75]    HPO - Small Problem:  62%|██████▏   | 124/200 [00:16<00:12,  6.18it/s, failures=0, objective=-6.75]    HPO - Small Problem:  62%|██████▎   | 125/200 [00:16<00:11,  6.45it/s, failures=0, objective=-6.75]    HPO - Small Problem:  62%|██████▎   | 125/200 [00:16<00:11,  6.45it/s, failures=0, objective=-6.75]    HPO - Small Problem:  63%|██████▎   | 126/200 [00:16<00:11,  6.37it/s, failures=0, objective=-6.75]    HPO - Small Problem:  63%|██████▎   | 126/200 [00:16<00:11,  6.37it/s, failures=0, objective=-6.75]    HPO - Small Problem:  64%|██████▎   | 127/200 [00:16<00:11,  6.32it/s, failures=0, objective=-6.75]    HPO - Small Problem:  64%|██████▎   | 127/200 [00:16<00:11,  6.32it/s, failures=0, objective=-6.75]    HPO - Small Problem:  64%|██████▍   | 128/200 [00:17<00:12,  5.77it/s, failures=0, objective=-6.75]    HPO - Small Problem:  64%|██████▍   | 128/200 [00:17<00:12,  5.77it/s, failures=0, objective=-6.75]    HPO - Small Problem:  64%|██████▍   | 129/200 [00:17<00:11,  6.03it/s, failures=0, objective=-6.75]    HPO - Small Problem:  64%|██████▍   | 129/200 [00:17<00:11,  6.03it/s, failures=0, objective=-6.75]    HPO - Small Problem:  65%|██████▌   | 130/200 [00:17<00:11,  6.17it/s, failures=0, objective=-6.75]    HPO - Small Problem:  65%|██████▌   | 130/200 [00:17<00:11,  6.17it/s, failures=0, objective=-6.75]    HPO - Small Problem:  66%|██████▌   | 131/200 [00:17<00:11,  5.86it/s, failures=0, objective=-6.75]    HPO - Small Problem:  66%|██████▌   | 131/200 [00:17<00:11,  5.86it/s, failures=0, objective=-6.75]    HPO - Small Problem:  66%|██████▌   | 132/200 [00:17<00:11,  5.85it/s, failures=0, objective=-6.75]    HPO - Small Problem:  66%|██████▌   | 132/200 [00:17<00:11,  5.85it/s, failures=0, objective=-6.64]    HPO - Small Problem:  66%|██████▋   | 133/200 [00:17<00:11,  6.02it/s, failures=0, objective=-6.64]    HPO - Small Problem:  66%|██████▋   | 133/200 [00:17<00:11,  6.02it/s, failures=0, objective=-6.64]    HPO - Small Problem:  67%|██████▋   | 134/200 [00:18<00:11,  5.71it/s, failures=0, objective=-6.64]    HPO - Small Problem:  67%|██████▋   | 134/200 [00:18<00:11,  5.71it/s, failures=0, objective=-6.64]    HPO - Small Problem:  68%|██████▊   | 135/200 [00:18<00:12,  5.36it/s, failures=0, objective=-6.64]    HPO - Small Problem:  68%|██████▊   | 135/200 [00:18<00:12,  5.36it/s, failures=0, objective=-6.64]    HPO - Small Problem:  68%|██████▊   | 136/200 [00:18<00:13,  4.81it/s, failures=0, objective=-6.64]    HPO - Small Problem:  68%|██████▊   | 136/200 [00:18<00:13,  4.81it/s, failures=0, objective=-6.64]    HPO - Small Problem:  68%|██████▊   | 137/200 [00:18<00:11,  5.31it/s, failures=0, objective=-6.64]    HPO - Small Problem:  68%|██████▊   | 137/200 [00:18<00:11,  5.31it/s, failures=0, objective=-6.64]    HPO - Small Problem:  69%|██████▉   | 138/200 [00:18<00:11,  5.58it/s, failures=0, objective=-6.64]    HPO - Small Problem:  69%|██████▉   | 138/200 [00:18<00:11,  5.58it/s, failures=0, objective=-6.64]    HPO - Small Problem:  70%|██████▉   | 139/200 [00:19<00:10,  5.84it/s, failures=0, objective=-6.64]    HPO - Small Problem:  70%|██████▉   | 139/200 [00:19<00:10,  5.84it/s, failures=0, objective=-6.64]    HPO - Small Problem:  70%|███████   | 140/200 [00:19<00:10,  5.89it/s, failures=0, objective=-6.64]    HPO - Small Problem:  70%|███████   | 140/200 [00:19<00:10,  5.89it/s, failures=0, objective=-6.58]    HPO - Small Problem:  70%|███████   | 141/200 [00:19<00:10,  5.88it/s, failures=0, objective=-6.58]    HPO - Small Problem:  70%|███████   | 141/200 [00:19<00:10,  5.88it/s, failures=0, objective=-6.58]    HPO - Small Problem:  71%|███████   | 142/200 [00:19<00:09,  6.06it/s, failures=0, objective=-6.58]    HPO - Small Problem:  71%|███████   | 142/200 [00:19<00:09,  6.06it/s, failures=0, objective=-6.58]    HPO - Small Problem:  72%|███████▏  | 143/200 [00:19<00:09,  6.00it/s, failures=0, objective=-6.58]    HPO - Small Problem:  72%|███████▏  | 143/200 [00:19<00:09,  6.00it/s, failures=0, objective=-6.58]    HPO - Small Problem:  72%|███████▏  | 144/200 [00:19<00:10,  5.53it/s, failures=0, objective=-6.58]    HPO - Small Problem:  72%|███████▏  | 144/200 [00:19<00:10,  5.53it/s, failures=0, objective=-6.58]    HPO - Small Problem:  72%|███████▎  | 145/200 [00:20<00:09,  5.58it/s, failures=0, objective=-6.58]    HPO - Small Problem:  72%|███████▎  | 145/200 [00:20<00:09,  5.58it/s, failures=0, objective=-6.58]    HPO - Small Problem:  73%|███████▎  | 146/200 [00:20<00:10,  5.10it/s, failures=0, objective=-6.58]    HPO - Small Problem:  73%|███████▎  | 146/200 [00:20<00:10,  5.10it/s, failures=0, objective=-6.58]    HPO - Small Problem:  74%|███████▎  | 147/200 [00:20<00:09,  5.36it/s, failures=0, objective=-6.58]    HPO - Small Problem:  74%|███████▎  | 147/200 [00:20<00:09,  5.36it/s, failures=0, objective=-6.37]    HPO - Small Problem:  74%|███████▍  | 148/200 [00:20<00:09,  5.56it/s, failures=0, objective=-6.37]    HPO - Small Problem:  74%|███████▍  | 148/200 [00:20<00:09,  5.56it/s, failures=0, objective=-6.37]    HPO - Small Problem:  74%|███████▍  | 149/200 [00:20<00:08,  5.86it/s, failures=0, objective=-6.37]    HPO - Small Problem:  74%|███████▍  | 149/200 [00:20<00:08,  5.86it/s, failures=0, objective=-6.37]    HPO - Small Problem:  75%|███████▌  | 150/200 [00:20<00:08,  6.02it/s, failures=0, objective=-6.37]    HPO - Small Problem:  75%|███████▌  | 150/200 [00:20<00:08,  6.02it/s, failures=0, objective=-6.37]    HPO - Small Problem:  76%|███████▌  | 151/200 [00:21<00:08,  6.06it/s, failures=0, objective=-6.37]    HPO - Small Problem:  76%|███████▌  | 151/200 [00:21<00:08,  6.06it/s, failures=0, objective=-6.37]    HPO - Small Problem:  76%|███████▌  | 152/200 [00:21<00:08,  5.33it/s, failures=0, objective=-6.37]    HPO - Small Problem:  76%|███████▌  | 152/200 [00:21<00:08,  5.33it/s, failures=0, objective=-6.37]    HPO - Small Problem:  76%|███████▋  | 153/200 [00:21<00:08,  5.47it/s, failures=0, objective=-6.37]    HPO - Small Problem:  76%|███████▋  | 153/200 [00:21<00:08,  5.47it/s, failures=0, objective=-6.37]    HPO - Small Problem:  77%|███████▋  | 154/200 [00:21<00:07,  5.77it/s, failures=0, objective=-6.37]    HPO - Small Problem:  77%|███████▋  | 154/200 [00:21<00:07,  5.77it/s, failures=0, objective=-6.37]    HPO - Small Problem:  78%|███████▊  | 155/200 [00:21<00:08,  5.41it/s, failures=0, objective=-6.37]    HPO - Small Problem:  78%|███████▊  | 155/200 [00:21<00:08,  5.41it/s, failures=0, objective=-6.37]    HPO - Small Problem:  78%|███████▊  | 156/200 [00:22<00:07,  5.64it/s, failures=0, objective=-6.37]    HPO - Small Problem:  78%|███████▊  | 156/200 [00:22<00:07,  5.64it/s, failures=0, objective=-2.72]    HPO - Small Problem:  78%|███████▊  | 157/200 [00:22<00:07,  5.89it/s, failures=0, objective=-2.72]    HPO - Small Problem:  78%|███████▊  | 157/200 [00:22<00:07,  5.89it/s, failures=0, objective=-2.72]    HPO - Small Problem:  79%|███████▉  | 158/200 [00:22<00:07,  5.94it/s, failures=0, objective=-2.72]    HPO - Small Problem:  79%|███████▉  | 158/200 [00:22<00:07,  5.94it/s, failures=0, objective=-2.72]    HPO - Small Problem:  80%|███████▉  | 159/200 [00:22<00:06,  6.02it/s, failures=0, objective=-2.72]    HPO - Small Problem:  80%|███████▉  | 159/200 [00:22<00:06,  6.02it/s, failures=0, objective=-1.87]    HPO - Small Problem:  80%|████████  | 160/200 [00:22<00:07,  5.49it/s, failures=0, objective=-1.87]    HPO - Small Problem:  80%|████████  | 160/200 [00:22<00:07,  5.49it/s, failures=0, objective=-1.87]    HPO - Small Problem:  80%|████████  | 161/200 [00:22<00:06,  5.83it/s, failures=0, objective=-1.87]    HPO - Small Problem:  80%|████████  | 161/200 [00:22<00:06,  5.83it/s, failures=0, objective=-1.87]    HPO - Small Problem:  81%|████████  | 162/200 [00:23<00:06,  5.61it/s, failures=0, objective=-1.87]    HPO - Small Problem:  81%|████████  | 162/200 [00:23<00:06,  5.61it/s, failures=0, objective=-1.87]    HPO - Small Problem:  82%|████████▏ | 163/200 [00:23<00:06,  5.85it/s, failures=0, objective=-1.87]    HPO - Small Problem:  82%|████████▏ | 163/200 [00:23<00:06,  5.85it/s, failures=0, objective=-1.87]    HPO - Small Problem:  82%|████████▏ | 164/200 [00:23<00:06,  5.81it/s, failures=0, objective=-1.87]    HPO - Small Problem:  82%|████████▏ | 164/200 [00:23<00:06,  5.81it/s, failures=0, objective=-1.87]    HPO - Small Problem:  82%|████████▎ | 165/200 [00:23<00:06,  5.40it/s, failures=0, objective=-1.87]    HPO - Small Problem:  82%|████████▎ | 165/200 [00:23<00:06,  5.40it/s, failures=0, objective=-1.64]    HPO - Small Problem:  83%|████████▎ | 166/200 [00:23<00:05,  5.87it/s, failures=0, objective=-1.64]    HPO - Small Problem:  83%|████████▎ | 166/200 [00:23<00:05,  5.87it/s, failures=0, objective=-0.925]    HPO - Small Problem:  84%|████████▎ | 167/200 [00:23<00:05,  6.08it/s, failures=0, objective=-0.925]    HPO - Small Problem:  84%|████████▎ | 167/200 [00:23<00:05,  6.08it/s, failures=0, objective=-0.925]    HPO - Small Problem:  84%|████████▍ | 168/200 [00:24<00:05,  5.55it/s, failures=0, objective=-0.925]    HPO - Small Problem:  84%|████████▍ | 168/200 [00:24<00:05,  5.55it/s, failures=0, objective=-0.448]    HPO - Small Problem:  84%|████████▍ | 169/200 [00:24<00:05,  5.91it/s, failures=0, objective=-0.448]    HPO - Small Problem:  84%|████████▍ | 169/200 [00:24<00:05,  5.91it/s, failures=0, objective=-0.357]    HPO - Small Problem:  85%|████████▌ | 170/200 [00:24<00:04,  6.12it/s, failures=0, objective=-0.357]    HPO - Small Problem:  85%|████████▌ | 170/200 [00:24<00:04,  6.12it/s, failures=0, objective=-0.357]    HPO - Small Problem:  86%|████████▌ | 171/200 [00:24<00:04,  6.37it/s, failures=0, objective=-0.357]    HPO - Small Problem:  86%|████████▌ | 171/200 [00:24<00:04,  6.37it/s, failures=0, objective=-0.267]    HPO - Small Problem:  86%|████████▌ | 172/200 [00:24<00:04,  6.54it/s, failures=0, objective=-0.267]    HPO - Small Problem:  86%|████████▌ | 172/200 [00:24<00:04,  6.54it/s, failures=0, objective=-0.267]    HPO - Small Problem:  86%|████████▋ | 173/200 [00:24<00:04,  5.81it/s, failures=0, objective=-0.267]    HPO - Small Problem:  86%|████████▋ | 173/200 [00:24<00:04,  5.81it/s, failures=0, objective=-0.267]    HPO - Small Problem:  87%|████████▋ | 174/200 [00:25<00:04,  5.67it/s, failures=0, objective=-0.267]    HPO - Small Problem:  87%|████████▋ | 174/200 [00:25<00:04,  5.67it/s, failures=0, objective=-0.267]    HPO - Small Problem:  88%|████████▊ | 175/200 [00:25<00:04,  5.97it/s, failures=0, objective=-0.267]    HPO - Small Problem:  88%|████████▊ | 175/200 [00:25<00:04,  5.97it/s, failures=0, objective=-0.267]    HPO - Small Problem:  88%|████████▊ | 176/200 [00:25<00:04,  5.58it/s, failures=0, objective=-0.267]    HPO - Small Problem:  88%|████████▊ | 176/200 [00:25<00:04,  5.58it/s, failures=0, objective=-0.267]    HPO - Small Problem:  88%|████████▊ | 177/200 [00:25<00:03,  5.92it/s, failures=0, objective=-0.267]    HPO - Small Problem:  88%|████████▊ | 177/200 [00:25<00:03,  5.92it/s, failures=0, objective=-0.267]    HPO - Small Problem:  89%|████████▉ | 178/200 [00:25<00:03,  5.83it/s, failures=0, objective=-0.267]    HPO - Small Problem:  89%|████████▉ | 178/200 [00:25<00:03,  5.83it/s, failures=0, objective=-0.267]    HPO - Small Problem:  90%|████████▉ | 179/200 [00:25<00:03,  5.96it/s, failures=0, objective=-0.267]    HPO - Small Problem:  90%|████████▉ | 179/200 [00:25<00:03,  5.96it/s, failures=0, objective=-0.028]    HPO - Small Problem:  90%|█████████ | 180/200 [00:26<00:03,  5.87it/s, failures=0, objective=-0.028]    HPO - Small Problem:  90%|█████████ | 180/200 [00:26<00:03,  5.87it/s, failures=0, objective=-0.028]    HPO - Small Problem:  90%|█████████ | 181/200 [00:26<00:03,  6.12it/s, failures=0, objective=-0.028]    HPO - Small Problem:  90%|█████████ | 181/200 [00:26<00:03,  6.12it/s, failures=0, objective=-0.028]    HPO - Small Problem:  91%|█████████ | 182/200 [00:26<00:03,  5.87it/s, failures=0, objective=-0.028]    HPO - Small Problem:  91%|█████████ | 182/200 [00:26<00:03,  5.87it/s, failures=0, objective=-0.028]    HPO - Small Problem:  92%|█████████▏| 183/200 [00:26<00:02,  6.05it/s, failures=0, objective=-0.028]    HPO - Small Problem:  92%|█████████▏| 183/200 [00:26<00:02,  6.05it/s, failures=0, objective=-0.028]    HPO - Small Problem:  92%|█████████▏| 184/200 [00:26<00:02,  5.50it/s, failures=0, objective=-0.028]    HPO - Small Problem:  92%|█████████▏| 184/200 [00:26<00:02,  5.50it/s, failures=0, objective=-0.028]    HPO - Small Problem:  92%|█████████▎| 185/200 [00:27<00:02,  5.30it/s, failures=0, objective=-0.028]    HPO - Small Problem:  92%|█████████▎| 185/200 [00:27<00:02,  5.30it/s, failures=0, objective=-0.028]    HPO - Small Problem:  93%|█████████▎| 186/200 [00:27<00:02,  5.63it/s, failures=0, objective=-0.028]    HPO - Small Problem:  93%|█████████▎| 186/200 [00:27<00:02,  5.63it/s, failures=0, objective=-0.028]    HPO - Small Problem:  94%|█████████▎| 187/200 [00:27<00:02,  5.70it/s, failures=0, objective=-0.028]    HPO - Small Problem:  94%|█████████▎| 187/200 [00:27<00:02,  5.70it/s, failures=0, objective=-0.028]    HPO - Small Problem:  94%|█████████▍| 188/200 [00:27<00:01,  6.03it/s, failures=0, objective=-0.028]    HPO - Small Problem:  94%|█████████▍| 188/200 [00:27<00:01,  6.03it/s, failures=0, objective=-0.028]    HPO - Small Problem:  94%|█████████▍| 189/200 [00:27<00:01,  6.29it/s, failures=0, objective=-0.028]    HPO - Small Problem:  94%|█████████▍| 189/200 [00:27<00:01,  6.29it/s, failures=0, objective=-0.028]    HPO - Small Problem:  95%|█████████▌| 190/200 [00:27<00:01,  6.20it/s, failures=0, objective=-0.028]    HPO - Small Problem:  95%|█████████▌| 190/200 [00:27<00:01,  6.20it/s, failures=0, objective=-0.028]    HPO - Small Problem:  96%|█████████▌| 191/200 [00:28<00:01,  6.03it/s, failures=0, objective=-0.028]    HPO - Small Problem:  96%|█████████▌| 191/200 [00:28<00:01,  6.03it/s, failures=0, objective=-0.028]    HPO - Small Problem:  96%|█████████▌| 192/200 [00:28<00:01,  5.53it/s, failures=0, objective=-0.028]    HPO - Small Problem:  96%|█████████▌| 192/200 [00:28<00:01,  5.53it/s, failures=0, objective=-0.028]    HPO - Small Problem:  96%|█████████▋| 193/200 [00:28<00:01,  4.56it/s, failures=0, objective=-0.028]    HPO - Small Problem:  96%|█████████▋| 193/200 [00:28<00:01,  4.56it/s, failures=0, objective=-0.028]    HPO - Small Problem:  97%|█████████▋| 194/200 [00:28<00:01,  4.83it/s, failures=0, objective=-0.028]    HPO - Small Problem:  97%|█████████▋| 194/200 [00:28<00:01,  4.83it/s, failures=0, objective=-0.028]    HPO - Small Problem:  98%|█████████▊| 195/200 [00:28<00:01,  4.95it/s, failures=0, objective=-0.028]    HPO - Small Problem:  98%|█████████▊| 195/200 [00:28<00:01,  4.95it/s, failures=0, objective=-0.028]    HPO - Small Problem:  98%|█████████▊| 196/200 [00:29<00:00,  4.95it/s, failures=0, objective=-0.028]    HPO - Small Problem:  98%|█████████▊| 196/200 [00:29<00:00,  4.95it/s, failures=0, objective=-0.028]    HPO - Small Problem:  98%|█████████▊| 197/200 [00:29<00:00,  5.16it/s, failures=0, objective=-0.028]    HPO - Small Problem:  98%|█████████▊| 197/200 [00:29<00:00,  5.16it/s, failures=0, objective=-0.028]    HPO - Small Problem:  99%|█████████▉| 198/200 [00:29<00:00,  5.03it/s, failures=0, objective=-0.028]    HPO - Small Problem:  99%|█████████▉| 198/200 [00:29<00:00,  5.03it/s, failures=0, objective=-0.028]    HPO - Small Problem: 100%|█████████▉| 199/200 [00:29<00:00,  5.26it/s, failures=0, objective=-0.028]    HPO - Small Problem: 100%|█████████▉| 199/200 [00:29<00:00,  5.26it/s, failures=0, objective=-0.028]    HPO - Small Problem: 100%|██████████| 200/200 [00:29<00:00,  5.34it/s, failures=0, objective=-0.028]    HPO - Small Problem: 100%|██████████| 200/200 [00:29<00:00,  5.34it/s, failures=0, objective=-0.028]    HPO - Small Problem: 100%|██████████| 200/200 [00:29<00:00,  6.70it/s, failures=0, objective=-0.028]




.. GENERATED FROM PYTHON SOURCE LINES 87-88

We run the search on the large problem without transfer learning:

.. GENERATED FROM PYTHON SOURCE LINES 88-99

.. code-block:: Python

    evaluator_large = Evaluator.create(
        run_large,
        method="thread",
        method_kwargs={"callbacks": [TqdmCallback("HPO - Large Problem")]},
    )
    search_large = CBO(
        problem_large, 
        **search_kwargs,
    )
    results["Large"] = search_large.search(evaluator_large, max_evals)





.. rst-class:: sphx-glr-script-out

 .. code-block:: none

      0%|          | 0/200 [00:00<?, ?it/s]    HPO - Large Problem:   0%|          | 0/200 [00:00<?, ?it/s]    HPO - Large Problem:   0%|          | 1/200 [00:00<00:00, 21732.15it/s, failures=0, objective=-335]    HPO - Large Problem:   1%|          | 2/200 [00:00<00:02, 71.39it/s, failures=0, objective=-228]       HPO - Large Problem:   2%|▏         | 3/200 [00:00<00:07, 26.39it/s, failures=0, objective=-228]    HPO - Large Problem:   2%|▏         | 3/200 [00:00<00:07, 26.39it/s, failures=0, objective=-205]    HPO - Large Problem:   2%|▏         | 4/200 [00:00<00:07, 26.39it/s, failures=0, objective=-205]    HPO - Large Problem:   2%|▎         | 5/200 [00:00<00:07, 26.39it/s, failures=0, objective=-205]    HPO - Large Problem:   3%|▎         | 6/200 [00:00<00:07, 26.39it/s, failures=0, objective=-205]    HPO - Large Problem:   4%|▎         | 7/200 [00:00<00:05, 32.21it/s, failures=0, objective=-205]    HPO - Large Problem:   4%|▎         | 7/200 [00:00<00:05, 32.21it/s, failures=0, objective=-205]    HPO - Large Problem:   4%|▍         | 8/200 [00:00<00:05, 32.21it/s, failures=0, objective=-205]    HPO - Large Problem:   4%|▍         | 9/200 [00:00<00:05, 32.21it/s, failures=0, objective=-205]    HPO - Large Problem:   5%|▌         | 10/200 [00:00<00:05, 32.21it/s, failures=0, objective=-205]    HPO - Large Problem:   6%|▌         | 11/200 [00:00<00:05, 34.09it/s, failures=0, objective=-205]    HPO - Large Problem:   6%|▌         | 11/200 [00:00<00:05, 34.09it/s, failures=0, objective=-177]    HPO - Large Problem:   6%|▌         | 12/200 [00:00<00:05, 34.09it/s, failures=0, objective=-177]    HPO - Large Problem:   6%|▋         | 13/200 [00:00<00:05, 34.09it/s, failures=0, objective=-177]    HPO - Large Problem:   7%|▋         | 14/200 [00:00<00:05, 34.09it/s, failures=0, objective=-177]    HPO - Large Problem:   8%|▊         | 15/200 [00:00<00:05, 34.98it/s, failures=0, objective=-177]    HPO - Large Problem:   8%|▊         | 15/200 [00:00<00:05, 34.98it/s, failures=0, objective=-177]    HPO - Large Problem:   8%|▊         | 16/200 [00:00<00:05, 34.98it/s, failures=0, objective=-177]    HPO - Large Problem:   8%|▊         | 17/200 [00:00<00:05, 34.98it/s, failures=0, objective=-177]    HPO - Large Problem:   9%|▉         | 18/200 [00:00<00:05, 34.98it/s, failures=0, objective=-177]    HPO - Large Problem:  10%|▉         | 19/200 [00:00<00:05, 35.33it/s, failures=0, objective=-177]    HPO - Large Problem:  10%|▉         | 19/200 [00:00<00:05, 35.33it/s, failures=0, objective=-177]    HPO - Large Problem:  10%|█         | 20/200 [00:00<00:05, 35.33it/s, failures=0, objective=-177]    HPO - Large Problem:  10%|█         | 21/200 [00:00<00:05, 35.33it/s, failures=0, objective=-177]    HPO - Large Problem:  11%|█         | 22/200 [00:00<00:05, 35.33it/s, failures=0, objective=-177]    HPO - Large Problem:  12%|█▏        | 23/200 [00:00<00:09, 18.99it/s, failures=0, objective=-177]    HPO - Large Problem:  12%|█▏        | 23/200 [00:00<00:09, 18.99it/s, failures=0, objective=-177]    HPO - Large Problem:  12%|█▏        | 24/200 [00:01<00:09, 18.99it/s, failures=0, objective=-177]    HPO - Large Problem:  12%|█▎        | 25/200 [00:01<00:09, 18.99it/s, failures=0, objective=-177]    HPO - Large Problem:  13%|█▎        | 26/200 [00:01<00:17, 10.15it/s, failures=0, objective=-177]    HPO - Large Problem:  13%|█▎        | 26/200 [00:01<00:17, 10.15it/s, failures=0, objective=-177]    HPO - Large Problem:  14%|█▎        | 27/200 [00:01<00:17, 10.15it/s, failures=0, objective=-177]    HPO - Large Problem:  14%|█▍        | 28/200 [00:01<00:18,  9.39it/s, failures=0, objective=-177]    HPO - Large Problem:  14%|█▍        | 28/200 [00:01<00:18,  9.39it/s, failures=0, objective=-130]    HPO - Large Problem:  14%|█▍        | 29/200 [00:02<00:18,  9.39it/s, failures=0, objective=-130]    HPO - Large Problem:  15%|█▌        | 30/200 [00:02<00:20,  8.30it/s, failures=0, objective=-130]    HPO - Large Problem:  15%|█▌        | 30/200 [00:02<00:20,  8.30it/s, failures=0, objective=-130]    HPO - Large Problem:  16%|█▌        | 31/200 [00:02<00:20,  8.30it/s, failures=0, objective=-130]    HPO - Large Problem:  16%|█▌        | 32/200 [00:02<00:20,  8.05it/s, failures=0, objective=-130]    HPO - Large Problem:  16%|█▌        | 32/200 [00:02<00:20,  8.05it/s, failures=0, objective=-130]    HPO - Large Problem:  16%|█▋        | 33/200 [00:02<00:20,  8.05it/s, failures=0, objective=-130]    HPO - Large Problem:  17%|█▋        | 34/200 [00:02<00:21,  7.83it/s, failures=0, objective=-130]    HPO - Large Problem:  17%|█▋        | 34/200 [00:02<00:21,  7.83it/s, failures=0, objective=-130]    HPO - Large Problem:  18%|█▊        | 35/200 [00:02<00:21,  7.77it/s, failures=0, objective=-130]    HPO - Large Problem:  18%|█▊        | 35/200 [00:02<00:21,  7.77it/s, failures=0, objective=-130]    HPO - Large Problem:  18%|█▊        | 36/200 [00:03<00:21,  7.70it/s, failures=0, objective=-130]    HPO - Large Problem:  18%|█▊        | 36/200 [00:03<00:21,  7.70it/s, failures=0, objective=-130]    HPO - Large Problem:  18%|█▊        | 37/200 [00:03<00:21,  7.64it/s, failures=0, objective=-130]    HPO - Large Problem:  18%|█▊        | 37/200 [00:03<00:21,  7.64it/s, failures=0, objective=-130]    HPO - Large Problem:  19%|█▉        | 38/200 [00:03<00:21,  7.57it/s, failures=0, objective=-130]    HPO - Large Problem:  19%|█▉        | 38/200 [00:03<00:21,  7.57it/s, failures=0, objective=-130]    HPO - Large Problem:  20%|█▉        | 39/200 [00:03<00:24,  6.54it/s, failures=0, objective=-130]    HPO - Large Problem:  20%|█▉        | 39/200 [00:03<00:24,  6.54it/s, failures=0, objective=-130]    HPO - Large Problem:  20%|██        | 40/200 [00:03<00:26,  5.96it/s, failures=0, objective=-130]    HPO - Large Problem:  20%|██        | 40/200 [00:03<00:26,  5.96it/s, failures=0, objective=-130]    HPO - Large Problem:  20%|██        | 41/200 [00:03<00:25,  6.25it/s, failures=0, objective=-130]    HPO - Large Problem:  20%|██        | 41/200 [00:03<00:25,  6.25it/s, failures=0, objective=-130]    HPO - Large Problem:  21%|██        | 42/200 [00:04<00:24,  6.32it/s, failures=0, objective=-130]    HPO - Large Problem:  21%|██        | 42/200 [00:04<00:24,  6.32it/s, failures=0, objective=-130]    HPO - Large Problem:  22%|██▏       | 43/200 [00:04<00:24,  6.29it/s, failures=0, objective=-130]    HPO - Large Problem:  22%|██▏       | 43/200 [00:04<00:24,  6.29it/s, failures=0, objective=-130]    HPO - Large Problem:  22%|██▏       | 44/200 [00:04<00:24,  6.34it/s, failures=0, objective=-130]    HPO - Large Problem:  22%|██▏       | 44/200 [00:04<00:24,  6.34it/s, failures=0, objective=-130]    HPO - Large Problem:  22%|██▎       | 45/200 [00:04<00:24,  6.32it/s, failures=0, objective=-130]    HPO - Large Problem:  22%|██▎       | 45/200 [00:04<00:24,  6.32it/s, failures=0, objective=-130]    HPO - Large Problem:  23%|██▎       | 46/200 [00:04<00:24,  6.20it/s, failures=0, objective=-130]    HPO - Large Problem:  23%|██▎       | 46/200 [00:04<00:24,  6.20it/s, failures=0, objective=-130]    HPO - Large Problem:  24%|██▎       | 47/200 [00:04<00:23,  6.51it/s, failures=0, objective=-130]    HPO - Large Problem:  24%|██▎       | 47/200 [00:04<00:23,  6.51it/s, failures=0, objective=-130]    HPO - Large Problem:  24%|██▍       | 48/200 [00:04<00:22,  6.69it/s, failures=0, objective=-130]    HPO - Large Problem:  24%|██▍       | 48/200 [00:04<00:22,  6.69it/s, failures=0, objective=-130]    HPO - Large Problem:  24%|██▍       | 49/200 [00:05<00:24,  6.04it/s, failures=0, objective=-130]    HPO - Large Problem:  24%|██▍       | 49/200 [00:05<00:24,  6.04it/s, failures=0, objective=-130]    HPO - Large Problem:  25%|██▌       | 50/200 [00:05<00:24,  6.06it/s, failures=0, objective=-130]    HPO - Large Problem:  25%|██▌       | 50/200 [00:05<00:24,  6.06it/s, failures=0, objective=-130]    HPO - Large Problem:  26%|██▌       | 51/200 [00:05<00:24,  5.99it/s, failures=0, objective=-130]    HPO - Large Problem:  26%|██▌       | 51/200 [00:05<00:24,  5.99it/s, failures=0, objective=-125]    HPO - Large Problem:  26%|██▌       | 52/200 [00:05<00:24,  6.07it/s, failures=0, objective=-125]    HPO - Large Problem:  26%|██▌       | 52/200 [00:05<00:24,  6.07it/s, failures=0, objective=-125]    HPO - Large Problem:  26%|██▋       | 53/200 [00:05<00:24,  6.12it/s, failures=0, objective=-125]    HPO - Large Problem:  26%|██▋       | 53/200 [00:05<00:24,  6.12it/s, failures=0, objective=-125]    HPO - Large Problem:  27%|██▋       | 54/200 [00:05<00:24,  6.06it/s, failures=0, objective=-125]    HPO - Large Problem:  27%|██▋       | 54/200 [00:05<00:24,  6.06it/s, failures=0, objective=-124]    HPO - Large Problem:  28%|██▊       | 55/200 [00:06<00:23,  6.16it/s, failures=0, objective=-124]    HPO - Large Problem:  28%|██▊       | 55/200 [00:06<00:23,  6.16it/s, failures=0, objective=-124]    HPO - Large Problem:  28%|██▊       | 56/200 [00:06<00:23,  6.23it/s, failures=0, objective=-124]    HPO - Large Problem:  28%|██▊       | 56/200 [00:06<00:23,  6.23it/s, failures=0, objective=-124]    HPO - Large Problem:  28%|██▊       | 57/200 [00:06<00:25,  5.69it/s, failures=0, objective=-124]    HPO - Large Problem:  28%|██▊       | 57/200 [00:06<00:25,  5.69it/s, failures=0, objective=-124]    HPO - Large Problem:  29%|██▉       | 58/200 [00:06<00:23,  6.01it/s, failures=0, objective=-124]    HPO - Large Problem:  29%|██▉       | 58/200 [00:06<00:23,  6.01it/s, failures=0, objective=-124]    HPO - Large Problem:  30%|██▉       | 59/200 [00:06<00:22,  6.19it/s, failures=0, objective=-124]    HPO - Large Problem:  30%|██▉       | 59/200 [00:06<00:22,  6.19it/s, failures=0, objective=-87.7]    HPO - Large Problem:  30%|███       | 60/200 [00:06<00:23,  6.06it/s, failures=0, objective=-87.7]    HPO - Large Problem:  30%|███       | 60/200 [00:06<00:23,  6.06it/s, failures=0, objective=-87.7]    HPO - Large Problem:  30%|███       | 61/200 [00:07<00:22,  6.20it/s, failures=0, objective=-87.7]    HPO - Large Problem:  30%|███       | 61/200 [00:07<00:22,  6.20it/s, failures=0, objective=-87.7]    HPO - Large Problem:  31%|███       | 62/200 [00:07<00:21,  6.41it/s, failures=0, objective=-87.7]    HPO - Large Problem:  31%|███       | 62/200 [00:07<00:21,  6.41it/s, failures=0, objective=-87.7]    HPO - Large Problem:  32%|███▏      | 63/200 [00:07<00:22,  6.08it/s, failures=0, objective=-87.7]    HPO - Large Problem:  32%|███▏      | 63/200 [00:07<00:22,  6.08it/s, failures=0, objective=-87.7]    HPO - Large Problem:  32%|███▏      | 64/200 [00:07<00:26,  5.13it/s, failures=0, objective=-87.7]    HPO - Large Problem:  32%|███▏      | 64/200 [00:07<00:26,  5.13it/s, failures=0, objective=-87.7]    HPO - Large Problem:  32%|███▎      | 65/200 [00:07<00:25,  5.23it/s, failures=0, objective=-87.7]    HPO - Large Problem:  32%|███▎      | 65/200 [00:07<00:25,  5.23it/s, failures=0, objective=-87.7]    HPO - Large Problem:  33%|███▎      | 66/200 [00:08<00:26,  5.01it/s, failures=0, objective=-87.7]    HPO - Large Problem:  33%|███▎      | 66/200 [00:08<00:26,  5.01it/s, failures=0, objective=-87.7]    HPO - Large Problem:  34%|███▎      | 67/200 [00:08<00:24,  5.36it/s, failures=0, objective=-87.7]    HPO - Large Problem:  34%|███▎      | 67/200 [00:08<00:24,  5.36it/s, failures=0, objective=-87.7]    HPO - Large Problem:  34%|███▍      | 68/200 [00:08<00:23,  5.68it/s, failures=0, objective=-87.7]    HPO - Large Problem:  34%|███▍      | 68/200 [00:08<00:23,  5.68it/s, failures=0, objective=-87.7]    HPO - Large Problem:  34%|███▍      | 69/200 [00:08<00:22,  5.80it/s, failures=0, objective=-87.7]    HPO - Large Problem:  34%|███▍      | 69/200 [00:08<00:22,  5.80it/s, failures=0, objective=-87.7]    HPO - Large Problem:  35%|███▌      | 70/200 [00:08<00:22,  5.66it/s, failures=0, objective=-87.7]    HPO - Large Problem:  35%|███▌      | 70/200 [00:08<00:22,  5.66it/s, failures=0, objective=-87.7]    HPO - Large Problem:  36%|███▌      | 71/200 [00:08<00:22,  5.72it/s, failures=0, objective=-87.7]    HPO - Large Problem:  36%|███▌      | 71/200 [00:08<00:22,  5.72it/s, failures=0, objective=-33]      HPO - Large Problem:  36%|███▌      | 72/200 [00:09<00:25,  5.01it/s, failures=0, objective=-33]    HPO - Large Problem:  36%|███▌      | 72/200 [00:09<00:25,  5.01it/s, failures=0, objective=-33]    HPO - Large Problem:  36%|███▋      | 73/200 [00:09<00:25,  4.93it/s, failures=0, objective=-33]    HPO - Large Problem:  36%|███▋      | 73/200 [00:09<00:25,  4.93it/s, failures=0, objective=-33]    HPO - Large Problem:  37%|███▋      | 74/200 [00:09<00:27,  4.58it/s, failures=0, objective=-33]    HPO - Large Problem:  37%|███▋      | 74/200 [00:09<00:27,  4.58it/s, failures=0, objective=-33]    HPO - Large Problem:  38%|███▊      | 75/200 [00:09<00:25,  4.81it/s, failures=0, objective=-33]    HPO - Large Problem:  38%|███▊      | 75/200 [00:09<00:25,  4.81it/s, failures=0, objective=-33]    HPO - Large Problem:  38%|███▊      | 76/200 [00:10<00:24,  5.08it/s, failures=0, objective=-33]    HPO - Large Problem:  38%|███▊      | 76/200 [00:10<00:24,  5.08it/s, failures=0, objective=-33]    HPO - Large Problem:  38%|███▊      | 77/200 [00:10<00:23,  5.24it/s, failures=0, objective=-33]    HPO - Large Problem:  38%|███▊      | 77/200 [00:10<00:23,  5.24it/s, failures=0, objective=-33]    HPO - Large Problem:  39%|███▉      | 78/200 [00:10<00:22,  5.40it/s, failures=0, objective=-33]    HPO - Large Problem:  39%|███▉      | 78/200 [00:10<00:22,  5.40it/s, failures=0, objective=-33]    HPO - Large Problem:  40%|███▉      | 79/200 [00:10<00:21,  5.63it/s, failures=0, objective=-33]    HPO - Large Problem:  40%|███▉      | 79/200 [00:10<00:21,  5.63it/s, failures=0, objective=-33]    HPO - Large Problem:  40%|████      | 80/200 [00:10<00:21,  5.69it/s, failures=0, objective=-33]    HPO - Large Problem:  40%|████      | 80/200 [00:10<00:21,  5.69it/s, failures=0, objective=-33]    HPO - Large Problem:  40%|████      | 81/200 [00:10<00:20,  5.73it/s, failures=0, objective=-33]    HPO - Large Problem:  40%|████      | 81/200 [00:10<00:20,  5.73it/s, failures=0, objective=-33]    HPO - Large Problem:  41%|████      | 82/200 [00:11<00:23,  5.05it/s, failures=0, objective=-33]    HPO - Large Problem:  41%|████      | 82/200 [00:11<00:23,  5.05it/s, failures=0, objective=-33]    HPO - Large Problem:  42%|████▏     | 83/200 [00:11<00:23,  5.04it/s, failures=0, objective=-33]    HPO - Large Problem:  42%|████▏     | 83/200 [00:11<00:23,  5.04it/s, failures=0, objective=-33]    HPO - Large Problem:  42%|████▏     | 84/200 [00:11<00:23,  4.91it/s, failures=0, objective=-33]    HPO - Large Problem:  42%|████▏     | 84/200 [00:11<00:23,  4.91it/s, failures=0, objective=-33]    HPO - Large Problem:  42%|████▎     | 85/200 [00:11<00:23,  4.89it/s, failures=0, objective=-33]    HPO - Large Problem:  42%|████▎     | 85/200 [00:11<00:23,  4.89it/s, failures=0, objective=-33]    HPO - Large Problem:  43%|████▎     | 86/200 [00:11<00:22,  4.97it/s, failures=0, objective=-33]    HPO - Large Problem:  43%|████▎     | 86/200 [00:11<00:22,  4.97it/s, failures=0, objective=-33]    HPO - Large Problem:  44%|████▎     | 87/200 [00:12<00:21,  5.15it/s, failures=0, objective=-33]    HPO - Large Problem:  44%|████▎     | 87/200 [00:12<00:21,  5.15it/s, failures=0, objective=-29.6]    HPO - Large Problem:  44%|████▍     | 88/200 [00:12<00:21,  5.10it/s, failures=0, objective=-29.6]    HPO - Large Problem:  44%|████▍     | 88/200 [00:12<00:21,  5.10it/s, failures=0, objective=-29.6]    HPO - Large Problem:  44%|████▍     | 89/200 [00:12<00:22,  4.97it/s, failures=0, objective=-29.6]    HPO - Large Problem:  44%|████▍     | 89/200 [00:12<00:22,  4.97it/s, failures=0, objective=-29.6]    HPO - Large Problem:  45%|████▌     | 90/200 [00:12<00:21,  5.22it/s, failures=0, objective=-29.6]    HPO - Large Problem:  45%|████▌     | 90/200 [00:12<00:21,  5.22it/s, failures=0, objective=-29.3]    HPO - Large Problem:  46%|████▌     | 91/200 [00:12<00:22,  4.78it/s, failures=0, objective=-29.3]    HPO - Large Problem:  46%|████▌     | 91/200 [00:12<00:22,  4.78it/s, failures=0, objective=-29.3]    HPO - Large Problem:  46%|████▌     | 92/200 [00:13<00:22,  4.78it/s, failures=0, objective=-29.3]    HPO - Large Problem:  46%|████▌     | 92/200 [00:13<00:22,  4.78it/s, failures=0, objective=-22.5]    HPO - Large Problem:  46%|████▋     | 93/200 [00:13<00:22,  4.77it/s, failures=0, objective=-22.5]    HPO - Large Problem:  46%|████▋     | 93/200 [00:13<00:22,  4.77it/s, failures=0, objective=-22.5]    HPO - Large Problem:  47%|████▋     | 94/200 [00:13<00:21,  4.99it/s, failures=0, objective=-22.5]    HPO - Large Problem:  47%|████▋     | 94/200 [00:13<00:21,  4.99it/s, failures=0, objective=-22.5]    HPO - Large Problem:  48%|████▊     | 95/200 [00:13<00:20,  5.13it/s, failures=0, objective=-22.5]    HPO - Large Problem:  48%|████▊     | 95/200 [00:13<00:20,  5.13it/s, failures=0, objective=-22.5]    HPO - Large Problem:  48%|████▊     | 96/200 [00:13<00:21,  4.84it/s, failures=0, objective=-22.5]    HPO - Large Problem:  48%|████▊     | 96/200 [00:13<00:21,  4.84it/s, failures=0, objective=-22.5]    HPO - Large Problem:  48%|████▊     | 97/200 [00:14<00:21,  4.86it/s, failures=0, objective=-22.5]    HPO - Large Problem:  48%|████▊     | 97/200 [00:14<00:21,  4.86it/s, failures=0, objective=-22.5]    HPO - Large Problem:  49%|████▉     | 98/200 [00:14<00:20,  5.03it/s, failures=0, objective=-22.5]    HPO - Large Problem:  49%|████▉     | 98/200 [00:14<00:20,  5.03it/s, failures=0, objective=-22.5]    HPO - Large Problem:  50%|████▉     | 99/200 [00:14<00:21,  4.65it/s, failures=0, objective=-22.5]    HPO - Large Problem:  50%|████▉     | 99/200 [00:14<00:21,  4.65it/s, failures=0, objective=-22.5]    HPO - Large Problem:  50%|█████     | 100/200 [00:14<00:21,  4.64it/s, failures=0, objective=-22.5]    HPO - Large Problem:  50%|█████     | 100/200 [00:14<00:21,  4.64it/s, failures=0, objective=-22.5]    HPO - Large Problem:  50%|█████     | 101/200 [00:15<00:20,  4.73it/s, failures=0, objective=-22.5]    HPO - Large Problem:  50%|█████     | 101/200 [00:15<00:20,  4.73it/s, failures=0, objective=-22.5]    HPO - Large Problem:  51%|█████     | 102/200 [00:15<00:20,  4.82it/s, failures=0, objective=-22.5]    HPO - Large Problem:  51%|█████     | 102/200 [00:15<00:20,  4.82it/s, failures=0, objective=-22.5]    HPO - Large Problem:  52%|█████▏    | 103/200 [00:15<00:20,  4.84it/s, failures=0, objective=-22.5]    HPO - Large Problem:  52%|█████▏    | 103/200 [00:15<00:20,  4.84it/s, failures=0, objective=-22.5]    HPO - Large Problem:  52%|█████▏    | 104/200 [00:15<00:20,  4.64it/s, failures=0, objective=-22.5]    HPO - Large Problem:  52%|█████▏    | 104/200 [00:15<00:20,  4.64it/s, failures=0, objective=-22.5]    HPO - Large Problem:  52%|█████▎    | 105/200 [00:15<00:20,  4.68it/s, failures=0, objective=-22.5]    HPO - Large Problem:  52%|█████▎    | 105/200 [00:15<00:20,  4.68it/s, failures=0, objective=-16.4]    HPO - Large Problem:  53%|█████▎    | 106/200 [00:16<00:20,  4.65it/s, failures=0, objective=-16.4]    HPO - Large Problem:  53%|█████▎    | 106/200 [00:16<00:20,  4.65it/s, failures=0, objective=-16.4]    HPO - Large Problem:  54%|█████▎    | 107/200 [00:16<00:21,  4.27it/s, failures=0, objective=-16.4]    HPO - Large Problem:  54%|█████▎    | 107/200 [00:16<00:21,  4.27it/s, failures=0, objective=-16.4]    HPO - Large Problem:  54%|█████▍    | 108/200 [00:16<00:21,  4.33it/s, failures=0, objective=-16.4]    HPO - Large Problem:  54%|█████▍    | 108/200 [00:16<00:21,  4.33it/s, failures=0, objective=-16.4]    HPO - Large Problem:  55%|█████▍    | 109/200 [00:16<00:20,  4.46it/s, failures=0, objective=-16.4]    HPO - Large Problem:  55%|█████▍    | 109/200 [00:16<00:20,  4.46it/s, failures=0, objective=-16.4]    HPO - Large Problem:  55%|█████▌    | 110/200 [00:17<00:19,  4.55it/s, failures=0, objective=-16.4]    HPO - Large Problem:  55%|█████▌    | 110/200 [00:17<00:19,  4.55it/s, failures=0, objective=-16.4]    HPO - Large Problem:  56%|█████▌    | 111/200 [00:17<00:19,  4.61it/s, failures=0, objective=-16.4]    HPO - Large Problem:  56%|█████▌    | 111/200 [00:17<00:19,  4.61it/s, failures=0, objective=-16.4]    HPO - Large Problem:  56%|█████▌    | 112/200 [00:17<00:19,  4.48it/s, failures=0, objective=-16.4]    HPO - Large Problem:  56%|█████▌    | 112/200 [00:17<00:19,  4.48it/s, failures=0, objective=-16.4]    HPO - Large Problem:  56%|█████▋    | 113/200 [00:17<00:18,  4.68it/s, failures=0, objective=-16.4]    HPO - Large Problem:  56%|█████▋    | 113/200 [00:17<00:18,  4.68it/s, failures=0, objective=-16.4]    HPO - Large Problem:  57%|█████▋    | 114/200 [00:18<00:21,  3.93it/s, failures=0, objective=-16.4]    HPO - Large Problem:  57%|█████▋    | 114/200 [00:18<00:21,  3.93it/s, failures=0, objective=-16.4]    HPO - Large Problem:  57%|█████▊    | 115/200 [00:18<00:21,  3.87it/s, failures=0, objective=-16.4]    HPO - Large Problem:  57%|█████▊    | 115/200 [00:18<00:21,  3.87it/s, failures=0, objective=-16.4]    HPO - Large Problem:  58%|█████▊    | 116/200 [00:18<00:22,  3.68it/s, failures=0, objective=-16.4]    HPO - Large Problem:  58%|█████▊    | 116/200 [00:18<00:22,  3.68it/s, failures=0, objective=-16.4]    HPO - Large Problem:  58%|█████▊    | 117/200 [00:18<00:21,  3.78it/s, failures=0, objective=-16.4]    HPO - Large Problem:  58%|█████▊    | 117/200 [00:18<00:21,  3.78it/s, failures=0, objective=-16.4]    HPO - Large Problem:  59%|█████▉    | 118/200 [00:19<00:22,  3.64it/s, failures=0, objective=-16.4]    HPO - Large Problem:  59%|█████▉    | 118/200 [00:19<00:22,  3.64it/s, failures=0, objective=-14.7]    HPO - Large Problem:  60%|█████▉    | 119/200 [00:19<00:23,  3.50it/s, failures=0, objective=-14.7]    HPO - Large Problem:  60%|█████▉    | 119/200 [00:19<00:23,  3.50it/s, failures=0, objective=-14.7]    HPO - Large Problem:  60%|██████    | 120/200 [00:19<00:22,  3.64it/s, failures=0, objective=-14.7]    HPO - Large Problem:  60%|██████    | 120/200 [00:19<00:22,  3.64it/s, failures=0, objective=-14.7]    HPO - Large Problem:  60%|██████    | 121/200 [00:20<00:23,  3.40it/s, failures=0, objective=-14.7]    HPO - Large Problem:  60%|██████    | 121/200 [00:20<00:23,  3.40it/s, failures=0, objective=-14.7]    HPO - Large Problem:  61%|██████    | 122/200 [00:20<00:22,  3.43it/s, failures=0, objective=-14.7]    HPO - Large Problem:  61%|██████    | 122/200 [00:20<00:22,  3.43it/s, failures=0, objective=-14.7]    HPO - Large Problem:  62%|██████▏   | 123/200 [00:20<00:28,  2.68it/s, failures=0, objective=-14.7]    HPO - Large Problem:  62%|██████▏   | 123/200 [00:20<00:28,  2.68it/s, failures=0, objective=-14.7]    HPO - Large Problem:  62%|██████▏   | 124/200 [00:21<00:25,  2.92it/s, failures=0, objective=-14.7]    HPO - Large Problem:  62%|██████▏   | 124/200 [00:21<00:25,  2.92it/s, failures=0, objective=-14.7]    HPO - Large Problem:  62%|██████▎   | 125/200 [00:21<00:24,  3.11it/s, failures=0, objective=-14.7]    HPO - Large Problem:  62%|██████▎   | 125/200 [00:21<00:24,  3.11it/s, failures=0, objective=-14.7]    HPO - Large Problem:  63%|██████▎   | 126/200 [00:21<00:23,  3.12it/s, failures=0, objective=-14.7]    HPO - Large Problem:  63%|██████▎   | 126/200 [00:21<00:23,  3.12it/s, failures=0, objective=-14.7]    HPO - Large Problem:  64%|██████▎   | 127/200 [00:21<00:21,  3.41it/s, failures=0, objective=-14.7]    HPO - Large Problem:  64%|██████▎   | 127/200 [00:21<00:21,  3.41it/s, failures=0, objective=-14.7]    HPO - Large Problem:  64%|██████▍   | 128/200 [00:22<00:20,  3.57it/s, failures=0, objective=-14.7]    HPO - Large Problem:  64%|██████▍   | 128/200 [00:22<00:20,  3.57it/s, failures=0, objective=-14.7]    HPO - Large Problem:  64%|██████▍   | 129/200 [00:22<00:20,  3.51it/s, failures=0, objective=-14.7]    HPO - Large Problem:  64%|██████▍   | 129/200 [00:22<00:20,  3.51it/s, failures=0, objective=-12.5]    HPO - Large Problem:  65%|██████▌   | 130/200 [00:22<00:19,  3.57it/s, failures=0, objective=-12.5]    HPO - Large Problem:  65%|██████▌   | 130/200 [00:22<00:19,  3.57it/s, failures=0, objective=-12.5]    HPO - Large Problem:  66%|██████▌   | 131/200 [00:23<00:18,  3.79it/s, failures=0, objective=-12.5]    HPO - Large Problem:  66%|██████▌   | 131/200 [00:23<00:18,  3.79it/s, failures=0, objective=-12.2]    HPO - Large Problem:  66%|██████▌   | 132/200 [00:23<00:18,  3.76it/s, failures=0, objective=-12.2]    HPO - Large Problem:  66%|██████▌   | 132/200 [00:23<00:18,  3.76it/s, failures=0, objective=-12.2]    HPO - Large Problem:  66%|██████▋   | 133/200 [00:23<00:16,  4.05it/s, failures=0, objective=-12.2]    HPO - Large Problem:  66%|██████▋   | 133/200 [00:23<00:16,  4.05it/s, failures=0, objective=-12.2]    HPO - Large Problem:  67%|██████▋   | 134/200 [00:23<00:15,  4.14it/s, failures=0, objective=-12.2]    HPO - Large Problem:  67%|██████▋   | 134/200 [00:23<00:15,  4.14it/s, failures=0, objective=-12.2]    HPO - Large Problem:  68%|██████▊   | 135/200 [00:23<00:16,  4.03it/s, failures=0, objective=-12.2]    HPO - Large Problem:  68%|██████▊   | 135/200 [00:23<00:16,  4.03it/s, failures=0, objective=-12.2]    HPO - Large Problem:  68%|██████▊   | 136/200 [00:24<00:16,  3.88it/s, failures=0, objective=-12.2]    HPO - Large Problem:  68%|██████▊   | 136/200 [00:24<00:16,  3.88it/s, failures=0, objective=-11.5]    HPO - Large Problem:  68%|██████▊   | 137/200 [00:24<00:16,  3.77it/s, failures=0, objective=-11.5]    HPO - Large Problem:  68%|██████▊   | 137/200 [00:24<00:16,  3.77it/s, failures=0, objective=-11.5]    HPO - Large Problem:  69%|██████▉   | 138/200 [00:24<00:16,  3.72it/s, failures=0, objective=-11.5]    HPO - Large Problem:  69%|██████▉   | 138/200 [00:24<00:16,  3.72it/s, failures=0, objective=-9.2]     HPO - Large Problem:  70%|██████▉   | 139/200 [00:25<00:16,  3.76it/s, failures=0, objective=-9.2]    HPO - Large Problem:  70%|██████▉   | 139/200 [00:25<00:16,  3.76it/s, failures=0, objective=-9.2]    HPO - Large Problem:  70%|███████   | 140/200 [00:25<00:16,  3.60it/s, failures=0, objective=-9.2]    HPO - Large Problem:  70%|███████   | 140/200 [00:25<00:16,  3.60it/s, failures=0, objective=-9.2]    HPO - Large Problem:  70%|███████   | 141/200 [00:25<00:15,  3.80it/s, failures=0, objective=-9.2]    HPO - Large Problem:  70%|███████   | 141/200 [00:25<00:15,  3.80it/s, failures=0, objective=-9.2]    HPO - Large Problem:  71%|███████   | 142/200 [00:25<00:14,  3.88it/s, failures=0, objective=-9.2]    HPO - Large Problem:  71%|███████   | 142/200 [00:25<00:14,  3.88it/s, failures=0, objective=-9.2]    HPO - Large Problem:  72%|███████▏  | 143/200 [00:26<00:14,  3.97it/s, failures=0, objective=-9.2]    HPO - Large Problem:  72%|███████▏  | 143/200 [00:26<00:14,  3.97it/s, failures=0, objective=-9.2]    HPO - Large Problem:  72%|███████▏  | 144/200 [00:26<00:14,  3.96it/s, failures=0, objective=-9.2]    HPO - Large Problem:  72%|███████▏  | 144/200 [00:26<00:14,  3.96it/s, failures=0, objective=-9.2]    HPO - Large Problem:  72%|███████▎  | 145/200 [00:26<00:13,  4.12it/s, failures=0, objective=-9.2]    HPO - Large Problem:  72%|███████▎  | 145/200 [00:26<00:13,  4.12it/s, failures=0, objective=-9.2]    HPO - Large Problem:  73%|███████▎  | 146/200 [00:26<00:13,  4.12it/s, failures=0, objective=-9.2]    HPO - Large Problem:  73%|███████▎  | 146/200 [00:26<00:13,  4.12it/s, failures=0, objective=-9.2]    HPO - Large Problem:  74%|███████▎  | 147/200 [00:27<00:13,  3.79it/s, failures=0, objective=-9.2]    HPO - Large Problem:  74%|███████▎  | 147/200 [00:27<00:13,  3.79it/s, failures=0, objective=-9.2]    HPO - Large Problem:  74%|███████▍  | 148/200 [00:27<00:15,  3.36it/s, failures=0, objective=-9.2]    HPO - Large Problem:  74%|███████▍  | 148/200 [00:27<00:15,  3.36it/s, failures=0, objective=-9.2]    HPO - Large Problem:  74%|███████▍  | 149/200 [00:27<00:15,  3.21it/s, failures=0, objective=-9.2]    HPO - Large Problem:  74%|███████▍  | 149/200 [00:27<00:15,  3.21it/s, failures=0, objective=-9.2]    HPO - Large Problem:  75%|███████▌  | 150/200 [00:28<00:15,  3.24it/s, failures=0, objective=-9.2]    HPO - Large Problem:  75%|███████▌  | 150/200 [00:28<00:15,  3.24it/s, failures=0, objective=-8.61]    HPO - Large Problem:  76%|███████▌  | 151/200 [00:28<00:14,  3.31it/s, failures=0, objective=-8.61]    HPO - Large Problem:  76%|███████▌  | 151/200 [00:28<00:14,  3.31it/s, failures=0, objective=-8.61]    HPO - Large Problem:  76%|███████▌  | 152/200 [00:28<00:16,  2.90it/s, failures=0, objective=-8.61]    HPO - Large Problem:  76%|███████▌  | 152/200 [00:28<00:16,  2.90it/s, failures=0, objective=-8.61]    HPO - Large Problem:  76%|███████▋  | 153/200 [00:29<00:14,  3.23it/s, failures=0, objective=-8.61]    HPO - Large Problem:  76%|███████▋  | 153/200 [00:29<00:14,  3.23it/s, failures=0, objective=-8.61]    HPO - Large Problem:  77%|███████▋  | 154/200 [00:29<00:13,  3.36it/s, failures=0, objective=-8.61]    HPO - Large Problem:  77%|███████▋  | 154/200 [00:29<00:13,  3.36it/s, failures=0, objective=-8.61]    HPO - Large Problem:  78%|███████▊  | 155/200 [00:29<00:13,  3.45it/s, failures=0, objective=-8.61]    HPO - Large Problem:  78%|███████▊  | 155/200 [00:29<00:13,  3.45it/s, failures=0, objective=-8.61]    HPO - Large Problem:  78%|███████▊  | 156/200 [00:29<00:12,  3.55it/s, failures=0, objective=-8.61]    HPO - Large Problem:  78%|███████▊  | 156/200 [00:29<00:12,  3.55it/s, failures=0, objective=-7.14]    HPO - Large Problem:  78%|███████▊  | 157/200 [00:30<00:11,  3.67it/s, failures=0, objective=-7.14]    HPO - Large Problem:  78%|███████▊  | 157/200 [00:30<00:11,  3.67it/s, failures=0, objective=-7.14]    HPO - Large Problem:  79%|███████▉  | 158/200 [00:30<00:10,  3.83it/s, failures=0, objective=-7.14]    HPO - Large Problem:  79%|███████▉  | 158/200 [00:30<00:10,  3.83it/s, failures=0, objective=-7.13]    HPO - Large Problem:  80%|███████▉  | 159/200 [00:30<00:10,  3.75it/s, failures=0, objective=-7.13]    HPO - Large Problem:  80%|███████▉  | 159/200 [00:30<00:10,  3.75it/s, failures=0, objective=-7.13]    HPO - Large Problem:  80%|████████  | 160/200 [00:30<00:10,  3.69it/s, failures=0, objective=-7.13]    HPO - Large Problem:  80%|████████  | 160/200 [00:30<00:10,  3.69it/s, failures=0, objective=-7.13]    HPO - Large Problem:  80%|████████  | 161/200 [00:31<00:10,  3.78it/s, failures=0, objective=-7.13]    HPO - Large Problem:  80%|████████  | 161/200 [00:31<00:10,  3.78it/s, failures=0, objective=-7.13]    HPO - Large Problem:  81%|████████  | 162/200 [00:31<00:10,  3.69it/s, failures=0, objective=-7.13]    HPO - Large Problem:  81%|████████  | 162/200 [00:31<00:10,  3.69it/s, failures=0, objective=-7.13]    HPO - Large Problem:  82%|████████▏ | 163/200 [00:31<00:11,  3.36it/s, failures=0, objective=-7.13]    HPO - Large Problem:  82%|████████▏ | 163/200 [00:31<00:11,  3.36it/s, failures=0, objective=-7.13]    HPO - Large Problem:  82%|████████▏ | 164/200 [00:32<00:10,  3.29it/s, failures=0, objective=-7.13]    HPO - Large Problem:  82%|████████▏ | 164/200 [00:32<00:10,  3.29it/s, failures=0, objective=-7.13]    HPO - Large Problem:  82%|████████▎ | 165/200 [00:32<00:09,  3.51it/s, failures=0, objective=-7.13]    HPO - Large Problem:  82%|████████▎ | 165/200 [00:32<00:09,  3.51it/s, failures=0, objective=-7.13]    HPO - Large Problem:  83%|████████▎ | 166/200 [00:32<00:10,  3.37it/s, failures=0, objective=-7.13]    HPO - Large Problem:  83%|████████▎ | 166/200 [00:32<00:10,  3.37it/s, failures=0, objective=-7.13]    HPO - Large Problem:  84%|████████▎ | 167/200 [00:32<00:09,  3.54it/s, failures=0, objective=-7.13]    HPO - Large Problem:  84%|████████▎ | 167/200 [00:32<00:09,  3.54it/s, failures=0, objective=-7.13]    HPO - Large Problem:  84%|████████▍ | 168/200 [00:33<00:08,  3.77it/s, failures=0, objective=-7.13]    HPO - Large Problem:  84%|████████▍ | 168/200 [00:33<00:08,  3.77it/s, failures=0, objective=-7.13]    HPO - Large Problem:  84%|████████▍ | 169/200 [00:33<00:08,  3.87it/s, failures=0, objective=-7.13]    HPO - Large Problem:  84%|████████▍ | 169/200 [00:33<00:08,  3.87it/s, failures=0, objective=-7.13]    HPO - Large Problem:  85%|████████▌ | 170/200 [00:33<00:07,  3.80it/s, failures=0, objective=-7.13]    HPO - Large Problem:  85%|████████▌ | 170/200 [00:33<00:07,  3.80it/s, failures=0, objective=-7.13]    HPO - Large Problem:  86%|████████▌ | 171/200 [00:33<00:07,  3.82it/s, failures=0, objective=-7.13]    HPO - Large Problem:  86%|████████▌ | 171/200 [00:33<00:07,  3.82it/s, failures=0, objective=-5.43]    HPO - Large Problem:  86%|████████▌ | 172/200 [00:34<00:06,  4.01it/s, failures=0, objective=-5.43]    HPO - Large Problem:  86%|████████▌ | 172/200 [00:34<00:06,  4.01it/s, failures=0, objective=-5.43]    HPO - Large Problem:  86%|████████▋ | 173/200 [00:34<00:07,  3.60it/s, failures=0, objective=-5.43]    HPO - Large Problem:  86%|████████▋ | 173/200 [00:34<00:07,  3.60it/s, failures=0, objective=-5.43]    HPO - Large Problem:  87%|████████▋ | 174/200 [00:34<00:07,  3.50it/s, failures=0, objective=-5.43]    HPO - Large Problem:  87%|████████▋ | 174/200 [00:34<00:07,  3.50it/s, failures=0, objective=-5.43]    HPO - Large Problem:  88%|████████▊ | 175/200 [00:35<00:06,  3.64it/s, failures=0, objective=-5.43]    HPO - Large Problem:  88%|████████▊ | 175/200 [00:35<00:06,  3.64it/s, failures=0, objective=-5.43]    HPO - Large Problem:  88%|████████▊ | 176/200 [00:35<00:06,  3.87it/s, failures=0, objective=-5.43]    HPO - Large Problem:  88%|████████▊ | 176/200 [00:35<00:06,  3.87it/s, failures=0, objective=-5.43]    HPO - Large Problem:  88%|████████▊ | 177/200 [00:35<00:05,  4.09it/s, failures=0, objective=-5.43]    HPO - Large Problem:  88%|████████▊ | 177/200 [00:35<00:05,  4.09it/s, failures=0, objective=-5.43]    HPO - Large Problem:  89%|████████▉ | 178/200 [00:35<00:05,  4.05it/s, failures=0, objective=-5.43]    HPO - Large Problem:  89%|████████▉ | 178/200 [00:35<00:05,  4.05it/s, failures=0, objective=-5.27]    HPO - Large Problem:  90%|████████▉ | 179/200 [00:36<00:05,  3.85it/s, failures=0, objective=-5.27]    HPO - Large Problem:  90%|████████▉ | 179/200 [00:36<00:05,  3.85it/s, failures=0, objective=-5.27]    HPO - Large Problem:  90%|█████████ | 180/200 [00:36<00:05,  3.62it/s, failures=0, objective=-5.27]    HPO - Large Problem:  90%|█████████ | 180/200 [00:36<00:05,  3.62it/s, failures=0, objective=-5.27]    HPO - Large Problem:  90%|█████████ | 181/200 [00:36<00:05,  3.41it/s, failures=0, objective=-5.27]    HPO - Large Problem:  90%|█████████ | 181/200 [00:36<00:05,  3.41it/s, failures=0, objective=-5.27]    HPO - Large Problem:  91%|█████████ | 182/200 [00:36<00:04,  3.63it/s, failures=0, objective=-5.27]    HPO - Large Problem:  91%|█████████ | 182/200 [00:36<00:04,  3.63it/s, failures=0, objective=-5.27]    HPO - Large Problem:  92%|█████████▏| 183/200 [00:37<00:04,  3.83it/s, failures=0, objective=-5.27]    HPO - Large Problem:  92%|█████████▏| 183/200 [00:37<00:04,  3.83it/s, failures=0, objective=-5.27]    HPO - Large Problem:  92%|█████████▏| 184/200 [00:37<00:04,  3.61it/s, failures=0, objective=-5.27]    HPO - Large Problem:  92%|█████████▏| 184/200 [00:37<00:04,  3.61it/s, failures=0, objective=-5.27]    HPO - Large Problem:  92%|█████████▎| 185/200 [00:37<00:04,  3.46it/s, failures=0, objective=-5.27]    HPO - Large Problem:  92%|█████████▎| 185/200 [00:37<00:04,  3.46it/s, failures=0, objective=-5.27]    HPO - Large Problem:  93%|█████████▎| 186/200 [00:38<00:03,  3.66it/s, failures=0, objective=-5.27]    HPO - Large Problem:  93%|█████████▎| 186/200 [00:38<00:03,  3.66it/s, failures=0, objective=-5.27]    HPO - Large Problem:  94%|█████████▎| 187/200 [00:38<00:03,  3.48it/s, failures=0, objective=-5.27]    HPO - Large Problem:  94%|█████████▎| 187/200 [00:38<00:03,  3.48it/s, failures=0, objective=-4.34]    HPO - Large Problem:  94%|█████████▍| 188/200 [00:38<00:03,  3.42it/s, failures=0, objective=-4.34]    HPO - Large Problem:  94%|█████████▍| 188/200 [00:38<00:03,  3.42it/s, failures=0, objective=-4.34]    HPO - Large Problem:  94%|█████████▍| 189/200 [00:38<00:03,  3.52it/s, failures=0, objective=-4.34]    HPO - Large Problem:  94%|█████████▍| 189/200 [00:38<00:03,  3.52it/s, failures=0, objective=-4.34]    HPO - Large Problem:  95%|█████████▌| 190/200 [00:39<00:03,  3.26it/s, failures=0, objective=-4.34]    HPO - Large Problem:  95%|█████████▌| 190/200 [00:39<00:03,  3.26it/s, failures=0, objective=-4.34]    HPO - Large Problem:  96%|█████████▌| 191/200 [00:39<00:02,  3.15it/s, failures=0, objective=-4.34]    HPO - Large Problem:  96%|█████████▌| 191/200 [00:39<00:02,  3.15it/s, failures=0, objective=-3.72]    HPO - Large Problem:  96%|█████████▌| 192/200 [00:39<00:02,  3.36it/s, failures=0, objective=-3.72]    HPO - Large Problem:  96%|█████████▌| 192/200 [00:39<00:02,  3.36it/s, failures=0, objective=-3.72]    HPO - Large Problem:  96%|█████████▋| 193/200 [00:40<00:01,  3.51it/s, failures=0, objective=-3.72]    HPO - Large Problem:  96%|█████████▋| 193/200 [00:40<00:01,  3.51it/s, failures=0, objective=-3.72]    HPO - Large Problem:  97%|█████████▋| 194/200 [00:40<00:01,  3.33it/s, failures=0, objective=-3.72]    HPO - Large Problem:  97%|█████████▋| 194/200 [00:40<00:01,  3.33it/s, failures=0, objective=-3.72]    HPO - Large Problem:  98%|█████████▊| 195/200 [00:40<00:01,  3.56it/s, failures=0, objective=-3.72]    HPO - Large Problem:  98%|█████████▊| 195/200 [00:40<00:01,  3.56it/s, failures=0, objective=-3.72]    HPO - Large Problem:  98%|█████████▊| 196/200 [00:41<00:01,  3.39it/s, failures=0, objective=-3.72]    HPO - Large Problem:  98%|█████████▊| 196/200 [00:41<00:01,  3.39it/s, failures=0, objective=-3.32]    HPO - Large Problem:  98%|█████████▊| 197/200 [00:41<00:00,  3.54it/s, failures=0, objective=-3.32]    HPO - Large Problem:  98%|█████████▊| 197/200 [00:41<00:00,  3.54it/s, failures=0, objective=-3.32]    HPO - Large Problem:  99%|█████████▉| 198/200 [00:41<00:00,  3.74it/s, failures=0, objective=-3.32]    HPO - Large Problem:  99%|█████████▉| 198/200 [00:41<00:00,  3.74it/s, failures=0, objective=-3.32]    HPO - Large Problem: 100%|█████████▉| 199/200 [00:41<00:00,  3.39it/s, failures=0, objective=-3.32]    HPO - Large Problem: 100%|█████████▉| 199/200 [00:41<00:00,  3.39it/s, failures=0, objective=-3.32]    HPO - Large Problem: 100%|██████████| 200/200 [00:42<00:00,  3.58it/s, failures=0, objective=-3.32]    HPO - Large Problem: 100%|██████████| 200/200 [00:42<00:00,  3.58it/s, failures=0, objective=-2.72]    HPO - Large Problem: 100%|██████████| 200/200 [00:42<00:00,  4.75it/s, failures=0, objective=-2.72]




.. GENERATED FROM PYTHON SOURCE LINES 100-102

Finally, we run the search on the large problem with transfer learning from the results
of the small problem that we computed first:

.. GENERATED FROM PYTHON SOURCE LINES 102-119

.. code-block:: Python

    evaluator_large_tl = Evaluator.create(
        run_large,
        method="thread",
        method_kwargs={"callbacks": [TqdmCallback("HPO - Large Problem with TL")]},
    )
    search_large_tl = CBO(
        problem_large, 
        n_initial_points=2 * n_large + 1, 
        **search_kwargs,
    )

    # This is where transfer learning happens
    search_large_tl.fit_generative_model(results_small)

    results["Large+TL"] = search_large_tl.search(evaluator_large_tl, max_evals)






.. rst-class:: sphx-glr-script-out

 .. code-block:: none

      0%|          | 0/200 [00:00<?, ?it/s]    HPO - Large Problem with TL:   0%|          | 0/200 [00:00<?, ?it/s]    HPO - Large Problem with TL:   0%|          | 1/200 [00:00<00:00, 17260.51it/s, failures=0, objective=-71.2]    HPO - Large Problem with TL:   1%|          | 2/200 [00:00<00:15, 13.10it/s, failures=0, objective=-71.2]       HPO - Large Problem with TL:   1%|          | 2/200 [00:00<00:15, 13.10it/s, failures=0, objective=-71.2]    HPO - Large Problem with TL:   2%|▏         | 3/200 [00:00<00:15, 13.10it/s, failures=0, objective=-71.2]    HPO - Large Problem with TL:   2%|▏         | 4/200 [00:00<00:14, 13.10it/s, failures=0, objective=-71.2]    HPO - Large Problem with TL:   2%|▎         | 5/200 [00:00<00:10, 18.55it/s, failures=0, objective=-71.2]    HPO - Large Problem with TL:   2%|▎         | 5/200 [00:00<00:10, 18.55it/s, failures=0, objective=-71.2]    HPO - Large Problem with TL:   3%|▎         | 6/200 [00:00<00:10, 18.55it/s, failures=0, objective=-71.2]    HPO - Large Problem with TL:   4%|▎         | 7/200 [00:00<00:10, 18.55it/s, failures=0, objective=-71.2]    HPO - Large Problem with TL:   4%|▍         | 8/200 [00:00<00:10, 18.55it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   4%|▍         | 9/200 [00:00<00:07, 24.81it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   4%|▍         | 9/200 [00:00<00:07, 24.81it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   5%|▌         | 10/200 [00:00<00:07, 24.81it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   6%|▌         | 11/200 [00:00<00:07, 24.81it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   6%|▌         | 12/200 [00:00<00:07, 24.81it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   6%|▋         | 13/200 [00:00<00:06, 28.10it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   6%|▋         | 13/200 [00:00<00:06, 28.10it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   7%|▋         | 14/200 [00:00<00:06, 28.10it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   8%|▊         | 15/200 [00:00<00:06, 28.10it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   8%|▊         | 16/200 [00:00<00:06, 28.10it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   8%|▊         | 17/200 [00:00<00:06, 29.60it/s, failures=0, objective=-56.9]    HPO - Large Problem with TL:   8%|▊         | 17/200 [00:00<00:06, 29.60it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:   9%|▉         | 18/200 [00:00<00:06, 29.60it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  10%|▉         | 19/200 [00:00<00:06, 29.60it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  10%|█         | 20/200 [00:00<00:06, 29.60it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  10%|█         | 21/200 [00:00<00:06, 26.17it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  10%|█         | 21/200 [00:00<00:06, 26.17it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  11%|█         | 22/200 [00:00<00:06, 26.17it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  12%|█▏        | 23/200 [00:01<00:06, 26.17it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  12%|█▏        | 24/200 [00:01<00:11, 14.91it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  12%|█▏        | 24/200 [00:01<00:11, 14.91it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  12%|█▎        | 25/200 [00:01<00:11, 14.91it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  13%|█▎        | 26/200 [00:01<00:11, 14.91it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  14%|█▎        | 27/200 [00:01<00:16, 10.71it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  14%|█▎        | 27/200 [00:01<00:16, 10.71it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  14%|█▍        | 28/200 [00:01<00:16, 10.71it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  14%|█▍        | 29/200 [00:02<00:17,  9.71it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  14%|█▍        | 29/200 [00:02<00:17,  9.71it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  15%|█▌        | 30/200 [00:02<00:17,  9.71it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  16%|█▌        | 31/200 [00:02<00:18,  8.96it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  16%|█▌        | 31/200 [00:02<00:18,  8.96it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  16%|█▌        | 32/200 [00:02<00:18,  8.96it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  16%|█▋        | 33/200 [00:02<00:21,  7.85it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  16%|█▋        | 33/200 [00:02<00:21,  7.85it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  17%|█▋        | 34/200 [00:02<00:21,  7.72it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  17%|█▋        | 34/200 [00:02<00:21,  7.72it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  18%|█▊        | 35/200 [00:02<00:21,  7.65it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  18%|█▊        | 35/200 [00:02<00:21,  7.65it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  18%|█▊        | 36/200 [00:03<00:21,  7.56it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  18%|█▊        | 36/200 [00:03<00:21,  7.56it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  18%|█▊        | 37/200 [00:03<00:21,  7.48it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  18%|█▊        | 37/200 [00:03<00:21,  7.48it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  19%|█▉        | 38/200 [00:03<00:21,  7.42it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  19%|█▉        | 38/200 [00:03<00:21,  7.42it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  20%|█▉        | 39/200 [00:03<00:24,  6.62it/s, failures=0, objective=-32.4]    HPO - Large Problem with TL:  20%|█▉        | 39/200 [00:03<00:24,  6.62it/s, failures=0, objective=-32]      HPO - Large Problem with TL:  20%|██        | 40/200 [00:03<00:23,  6.78it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  20%|██        | 40/200 [00:03<00:23,  6.78it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  20%|██        | 41/200 [00:03<00:23,  6.89it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  20%|██        | 41/200 [00:03<00:23,  6.89it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  21%|██        | 42/200 [00:03<00:22,  6.98it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  21%|██        | 42/200 [00:03<00:22,  6.98it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  22%|██▏       | 43/200 [00:04<00:22,  7.02it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  22%|██▏       | 43/200 [00:04<00:22,  7.02it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  22%|██▏       | 44/200 [00:04<00:22,  7.07it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  22%|██▏       | 44/200 [00:04<00:22,  7.07it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  22%|██▎       | 45/200 [00:04<00:24,  6.33it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  22%|██▎       | 45/200 [00:04<00:24,  6.33it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  23%|██▎       | 46/200 [00:04<00:23,  6.57it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  23%|██▎       | 46/200 [00:04<00:23,  6.57it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  24%|██▎       | 47/200 [00:04<00:22,  6.76it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  24%|██▎       | 47/200 [00:04<00:22,  6.76it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  24%|██▍       | 48/200 [00:04<00:22,  6.89it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  24%|██▍       | 48/200 [00:04<00:22,  6.89it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  24%|██▍       | 49/200 [00:04<00:21,  6.95it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  24%|██▍       | 49/200 [00:04<00:21,  6.95it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  25%|██▌       | 50/200 [00:05<00:24,  6.24it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  25%|██▌       | 50/200 [00:05<00:24,  6.24it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  26%|██▌       | 51/200 [00:05<00:23,  6.21it/s, failures=0, objective=-32]    HPO - Large Problem with TL:  26%|██▌       | 51/200 [00:05<00:23,  6.21it/s, failures=0, objective=-31.7]    HPO - Large Problem with TL:  26%|██▌       | 52/200 [00:05<00:22,  6.44it/s, failures=0, objective=-31.7]    HPO - Large Problem with TL:  26%|██▌       | 52/200 [00:05<00:22,  6.44it/s, failures=0, objective=-31.7]    HPO - Large Problem with TL:  26%|██▋       | 53/200 [00:05<00:22,  6.45it/s, failures=0, objective=-31.7]    HPO - Large Problem with TL:  26%|██▋       | 53/200 [00:05<00:22,  6.45it/s, failures=0, objective=-31.7]    HPO - Large Problem with TL:  27%|██▋       | 54/200 [00:05<00:22,  6.64it/s, failures=0, objective=-31.7]    HPO - Large Problem with TL:  27%|██▋       | 54/200 [00:05<00:22,  6.64it/s, failures=0, objective=-31.7]    HPO - Large Problem with TL:  28%|██▊       | 55/200 [00:05<00:21,  6.76it/s, failures=0, objective=-31.7]    HPO - Large Problem with TL:  28%|██▊       | 55/200 [00:05<00:21,  6.76it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  28%|██▊       | 56/200 [00:06<00:24,  6.00it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  28%|██▊       | 56/200 [00:06<00:24,  6.00it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  28%|██▊       | 57/200 [00:06<00:23,  6.07it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  28%|██▊       | 57/200 [00:06<00:23,  6.07it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  29%|██▉       | 58/200 [00:06<00:22,  6.38it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  29%|██▉       | 58/200 [00:06<00:22,  6.38it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  30%|██▉       | 59/200 [00:06<00:21,  6.58it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  30%|██▉       | 59/200 [00:06<00:21,  6.58it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  30%|███       | 60/200 [00:06<00:21,  6.54it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  30%|███       | 60/200 [00:06<00:21,  6.54it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  30%|███       | 61/200 [00:06<00:20,  6.62it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  30%|███       | 61/200 [00:06<00:20,  6.62it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  31%|███       | 62/200 [00:07<00:23,  5.92it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  31%|███       | 62/200 [00:07<00:23,  5.92it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  32%|███▏      | 63/200 [00:07<00:22,  6.05it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  32%|███▏      | 63/200 [00:07<00:22,  6.05it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  32%|███▏      | 64/200 [00:07<00:21,  6.35it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  32%|███▏      | 64/200 [00:07<00:21,  6.35it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  32%|███▎      | 65/200 [00:07<00:21,  6.28it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  32%|███▎      | 65/200 [00:07<00:21,  6.28it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  33%|███▎      | 66/200 [00:07<00:21,  6.27it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  33%|███▎      | 66/200 [00:07<00:21,  6.27it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  34%|███▎      | 67/200 [00:07<00:21,  6.31it/s, failures=0, objective=-28.4]    HPO - Large Problem with TL:  34%|███▎      | 67/200 [00:07<00:21,  6.31it/s, failures=0, objective=-23.1]    HPO - Large Problem with TL:  34%|███▍      | 68/200 [00:08<00:22,  5.76it/s, failures=0, objective=-23.1]    HPO - Large Problem with TL:  34%|███▍      | 68/200 [00:08<00:22,  5.76it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  34%|███▍      | 69/200 [00:08<00:22,  5.79it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  34%|███▍      | 69/200 [00:08<00:22,  5.79it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  35%|███▌      | 70/200 [00:08<00:21,  5.92it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  35%|███▌      | 70/200 [00:08<00:21,  5.92it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  36%|███▌      | 71/200 [00:08<00:21,  6.07it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  36%|███▌      | 71/200 [00:08<00:21,  6.07it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  36%|███▌      | 72/200 [00:08<00:20,  6.26it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  36%|███▌      | 72/200 [00:08<00:20,  6.26it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  36%|███▋      | 73/200 [00:08<00:21,  5.88it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  36%|███▋      | 73/200 [00:08<00:21,  5.88it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  37%|███▋      | 74/200 [00:09<00:24,  5.21it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  37%|███▋      | 74/200 [00:09<00:24,  5.21it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  38%|███▊      | 75/200 [00:09<00:23,  5.42it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  38%|███▊      | 75/200 [00:09<00:23,  5.42it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  38%|███▊      | 76/200 [00:09<00:21,  5.69it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  38%|███▊      | 76/200 [00:09<00:21,  5.69it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  38%|███▊      | 77/200 [00:09<00:20,  6.00it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  38%|███▊      | 77/200 [00:09<00:20,  6.00it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  39%|███▉      | 78/200 [00:09<00:19,  6.13it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  39%|███▉      | 78/200 [00:09<00:19,  6.13it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  40%|███▉      | 79/200 [00:09<00:19,  6.06it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  40%|███▉      | 79/200 [00:09<00:19,  6.06it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  40%|████      | 80/200 [00:10<00:22,  5.35it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  40%|████      | 80/200 [00:10<00:22,  5.35it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  40%|████      | 81/200 [00:10<00:21,  5.49it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  40%|████      | 81/200 [00:10<00:21,  5.49it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  41%|████      | 82/200 [00:10<00:23,  5.03it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  41%|████      | 82/200 [00:10<00:23,  5.03it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  42%|████▏     | 83/200 [00:10<00:22,  5.23it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  42%|████▏     | 83/200 [00:10<00:22,  5.23it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  42%|████▏     | 84/200 [00:10<00:21,  5.39it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  42%|████▏     | 84/200 [00:10<00:21,  5.39it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  42%|████▎     | 85/200 [00:11<00:21,  5.29it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  42%|████▎     | 85/200 [00:11<00:21,  5.29it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  43%|████▎     | 86/200 [00:11<00:23,  4.91it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  43%|████▎     | 86/200 [00:11<00:23,  4.91it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  44%|████▎     | 87/200 [00:11<00:21,  5.20it/s, failures=0, objective=-6.62]    HPO - Large Problem with TL:  44%|████▎     | 87/200 [00:11<00:21,  5.20it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  44%|████▍     | 88/200 [00:11<00:20,  5.53it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  44%|████▍     | 88/200 [00:11<00:20,  5.53it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  44%|████▍     | 89/200 [00:11<00:19,  5.63it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  44%|████▍     | 89/200 [00:11<00:19,  5.63it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  45%|████▌     | 90/200 [00:12<00:19,  5.64it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  45%|████▌     | 90/200 [00:12<00:19,  5.64it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  46%|████▌     | 91/200 [00:12<00:19,  5.70it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  46%|████▌     | 91/200 [00:12<00:19,  5.70it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  46%|████▌     | 92/200 [00:12<00:20,  5.21it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  46%|████▌     | 92/200 [00:12<00:20,  5.21it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  46%|████▋     | 93/200 [00:12<00:19,  5.55it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  46%|████▋     | 93/200 [00:12<00:19,  5.55it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  47%|████▋     | 94/200 [00:12<00:18,  5.67it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  47%|████▋     | 94/200 [00:12<00:18,  5.67it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  48%|████▊     | 95/200 [00:12<00:18,  5.80it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  48%|████▊     | 95/200 [00:12<00:18,  5.80it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  48%|████▊     | 96/200 [00:13<00:18,  5.70it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  48%|████▊     | 96/200 [00:13<00:18,  5.70it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  48%|████▊     | 97/200 [00:13<00:17,  5.88it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  48%|████▊     | 97/200 [00:13<00:17,  5.88it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  49%|████▉     | 98/200 [00:13<00:19,  5.37it/s, failures=0, objective=-6.57]    HPO - Large Problem with TL:  49%|████▉     | 98/200 [00:13<00:19,  5.37it/s, failures=0, objective=-3.79]    HPO - Large Problem with TL:  50%|████▉     | 99/200 [00:13<00:17,  5.62it/s, failures=0, objective=-3.79]    HPO - Large Problem with TL:  50%|████▉     | 99/200 [00:13<00:17,  5.62it/s, failures=0, objective=-3.79]    HPO - Large Problem with TL:  50%|█████     | 100/200 [00:13<00:17,  5.71it/s, failures=0, objective=-3.79]    HPO - Large Problem with TL:  50%|█████     | 100/200 [00:13<00:17,  5.71it/s, failures=0, objective=-3.79]    HPO - Large Problem with TL:  50%|█████     | 101/200 [00:13<00:17,  5.71it/s, failures=0, objective=-3.79]    HPO - Large Problem with TL:  50%|█████     | 101/200 [00:13<00:17,  5.71it/s, failures=0, objective=-3.79]    HPO - Large Problem with TL:  51%|█████     | 102/200 [00:14<00:17,  5.75it/s, failures=0, objective=-3.79]    HPO - Large Problem with TL:  51%|█████     | 102/200 [00:14<00:17,  5.75it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  52%|█████▏    | 103/200 [00:14<00:16,  5.74it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  52%|█████▏    | 103/200 [00:14<00:16,  5.74it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  52%|█████▏    | 104/200 [00:14<00:19,  4.97it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  52%|█████▏    | 104/200 [00:14<00:19,  4.97it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  52%|█████▎    | 105/200 [00:14<00:18,  5.21it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  52%|█████▎    | 105/200 [00:14<00:18,  5.21it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  53%|█████▎    | 106/200 [00:14<00:17,  5.41it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  53%|█████▎    | 106/200 [00:14<00:17,  5.41it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  54%|█████▎    | 107/200 [00:15<00:16,  5.72it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  54%|█████▎    | 107/200 [00:15<00:16,  5.72it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  54%|█████▍    | 108/200 [00:15<00:15,  5.94it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  54%|█████▍    | 108/200 [00:15<00:15,  5.94it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  55%|█████▍    | 109/200 [00:15<00:15,  5.98it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  55%|█████▍    | 109/200 [00:15<00:15,  5.98it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  55%|█████▌    | 110/200 [00:15<00:17,  5.14it/s, failures=0, objective=-3.65]    HPO - Large Problem with TL:  55%|█████▌    | 110/200 [00:15<00:17,  5.14it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  56%|█████▌    | 111/200 [00:15<00:16,  5.43it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  56%|█████▌    | 111/200 [00:15<00:16,  5.43it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  56%|█████▌    | 112/200 [00:16<00:17,  5.16it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  56%|█████▌    | 112/200 [00:16<00:17,  5.16it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  56%|█████▋    | 113/200 [00:16<00:16,  5.35it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  56%|█████▋    | 113/200 [00:16<00:16,  5.35it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  57%|█████▋    | 114/200 [00:16<00:15,  5.54it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  57%|█████▋    | 114/200 [00:16<00:15,  5.54it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  57%|█████▊    | 115/200 [00:16<00:16,  5.30it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  57%|█████▊    | 115/200 [00:16<00:16,  5.30it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  58%|█████▊    | 116/200 [00:16<00:16,  4.98it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  58%|█████▊    | 116/200 [00:16<00:16,  4.98it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  58%|█████▊    | 117/200 [00:16<00:15,  5.21it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  58%|█████▊    | 117/200 [00:16<00:15,  5.21it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  59%|█████▉    | 118/200 [00:17<00:15,  5.41it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  59%|█████▉    | 118/200 [00:17<00:15,  5.41it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  60%|█████▉    | 119/200 [00:17<00:15,  5.29it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  60%|█████▉    | 119/200 [00:17<00:15,  5.29it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  60%|██████    | 120/200 [00:17<00:14,  5.52it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  60%|██████    | 120/200 [00:17<00:14,  5.52it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  60%|██████    | 121/200 [00:17<00:14,  5.59it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  60%|██████    | 121/200 [00:17<00:14,  5.59it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  61%|██████    | 122/200 [00:17<00:15,  5.03it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  61%|██████    | 122/200 [00:17<00:15,  5.03it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  62%|██████▏   | 123/200 [00:18<00:16,  4.70it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  62%|██████▏   | 123/200 [00:18<00:16,  4.70it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  62%|██████▏   | 124/200 [00:18<00:17,  4.37it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  62%|██████▏   | 124/200 [00:18<00:17,  4.37it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  62%|██████▎   | 125/200 [00:18<00:16,  4.64it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  62%|██████▎   | 125/200 [00:18<00:16,  4.64it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  63%|██████▎   | 126/200 [00:18<00:16,  4.61it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  63%|██████▎   | 126/200 [00:18<00:16,  4.61it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  64%|██████▎   | 127/200 [00:19<00:14,  4.91it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  64%|██████▎   | 127/200 [00:19<00:14,  4.91it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  64%|██████▍   | 128/200 [00:19<00:14,  4.92it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  64%|██████▍   | 128/200 [00:19<00:14,  4.92it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  64%|██████▍   | 129/200 [00:19<00:15,  4.53it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  64%|██████▍   | 129/200 [00:19<00:15,  4.53it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  65%|██████▌   | 130/200 [00:19<00:14,  4.83it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  65%|██████▌   | 130/200 [00:19<00:14,  4.83it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  66%|██████▌   | 131/200 [00:19<00:13,  4.97it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  66%|██████▌   | 131/200 [00:19<00:13,  4.97it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  66%|██████▌   | 132/200 [00:20<00:12,  5.26it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  66%|██████▌   | 132/200 [00:20<00:12,  5.26it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  66%|██████▋   | 133/200 [00:20<00:12,  5.27it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  66%|██████▋   | 133/200 [00:20<00:12,  5.27it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  67%|██████▋   | 134/200 [00:20<00:13,  4.95it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  67%|██████▋   | 134/200 [00:20<00:13,  4.95it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  68%|██████▊   | 135/200 [00:20<00:13,  4.81it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  68%|██████▊   | 135/200 [00:20<00:13,  4.81it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  68%|██████▊   | 136/200 [00:20<00:13,  4.83it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  68%|██████▊   | 136/200 [00:20<00:13,  4.83it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  68%|██████▊   | 137/200 [00:21<00:13,  4.58it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  68%|██████▊   | 137/200 [00:21<00:13,  4.58it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  69%|██████▉   | 138/200 [00:21<00:13,  4.75it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  69%|██████▉   | 138/200 [00:21<00:13,  4.75it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  70%|██████▉   | 139/200 [00:21<00:14,  4.23it/s, failures=0, objective=-1.88]    HPO - Large Problem with TL:  70%|██████▉   | 139/200 [00:21<00:14,  4.23it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  70%|███████   | 140/200 [00:21<00:14,  4.18it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  70%|███████   | 140/200 [00:21<00:14,  4.18it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  70%|███████   | 141/200 [00:22<00:13,  4.53it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  70%|███████   | 141/200 [00:22<00:13,  4.53it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  71%|███████   | 142/200 [00:22<00:12,  4.69it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  71%|███████   | 142/200 [00:22<00:12,  4.69it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  72%|███████▏  | 143/200 [00:22<00:11,  4.78it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  72%|███████▏  | 143/200 [00:22<00:11,  4.78it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  72%|███████▏  | 144/200 [00:22<00:11,  4.93it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  72%|███████▏  | 144/200 [00:22<00:11,  4.93it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  72%|███████▎  | 145/200 [00:22<00:12,  4.57it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  72%|███████▎  | 145/200 [00:22<00:12,  4.57it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  73%|███████▎  | 146/200 [00:23<00:12,  4.23it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  73%|███████▎  | 146/200 [00:23<00:12,  4.23it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  74%|███████▎  | 147/200 [00:23<00:12,  4.39it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  74%|███████▎  | 147/200 [00:23<00:12,  4.39it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  74%|███████▍  | 148/200 [00:23<00:12,  4.17it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  74%|███████▍  | 148/200 [00:23<00:12,  4.17it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  74%|███████▍  | 149/200 [00:23<00:11,  4.32it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  74%|███████▍  | 149/200 [00:23<00:11,  4.32it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  75%|███████▌  | 150/200 [00:24<00:11,  4.48it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  75%|███████▌  | 150/200 [00:24<00:11,  4.48it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  76%|███████▌  | 151/200 [00:24<00:12,  3.88it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  76%|███████▌  | 151/200 [00:24<00:12,  3.88it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  76%|███████▌  | 152/200 [00:24<00:13,  3.46it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  76%|███████▌  | 152/200 [00:24<00:13,  3.46it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  76%|███████▋  | 153/200 [00:24<00:13,  3.49it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  76%|███████▋  | 153/200 [00:24<00:13,  3.49it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  77%|███████▋  | 154/200 [00:25<00:13,  3.36it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  77%|███████▋  | 154/200 [00:25<00:13,  3.36it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  78%|███████▊  | 155/200 [00:25<00:12,  3.55it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  78%|███████▊  | 155/200 [00:25<00:12,  3.55it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  78%|███████▊  | 156/200 [00:25<00:11,  3.71it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  78%|███████▊  | 156/200 [00:25<00:11,  3.71it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  78%|███████▊  | 157/200 [00:26<00:10,  3.91it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  78%|███████▊  | 157/200 [00:26<00:10,  3.91it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  79%|███████▉  | 158/200 [00:26<00:11,  3.51it/s, failures=0, objective=-0.871]    HPO - Large Problem with TL:  79%|███████▉  | 158/200 [00:26<00:11,  3.51it/s, failures=0, objective=-0.781]    HPO - Large Problem with TL:  80%|███████▉  | 159/200 [00:26<00:11,  3.57it/s, failures=0, objective=-0.781]    HPO - Large Problem with TL:  80%|███████▉  | 159/200 [00:26<00:11,  3.57it/s, failures=0, objective=-0.781]    HPO - Large Problem with TL:  80%|████████  | 160/200 [00:27<00:12,  3.32it/s, failures=0, objective=-0.781]    HPO - Large Problem with TL:  80%|████████  | 160/200 [00:27<00:12,  3.32it/s, failures=0, objective=-0.781]    HPO - Large Problem with TL:  80%|████████  | 161/200 [00:27<00:11,  3.31it/s, failures=0, objective=-0.781]    HPO - Large Problem with TL:  80%|████████  | 161/200 [00:27<00:11,  3.31it/s, failures=0, objective=-0.781]    HPO - Large Problem with TL:  81%|████████  | 162/200 [00:27<00:11,  3.35it/s, failures=0, objective=-0.781]    HPO - Large Problem with TL:  81%|████████  | 162/200 [00:27<00:11,  3.35it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  82%|████████▏ | 163/200 [00:27<00:10,  3.57it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  82%|████████▏ | 163/200 [00:27<00:10,  3.57it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  82%|████████▏ | 164/200 [00:28<00:10,  3.36it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  82%|████████▏ | 164/200 [00:28<00:10,  3.36it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  82%|████████▎ | 165/200 [00:28<00:09,  3.50it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  82%|████████▎ | 165/200 [00:28<00:09,  3.50it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  83%|████████▎ | 166/200 [00:28<00:09,  3.48it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  83%|████████▎ | 166/200 [00:28<00:09,  3.48it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  84%|████████▎ | 167/200 [00:28<00:09,  3.66it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  84%|████████▎ | 167/200 [00:28<00:09,  3.66it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  84%|████████▍ | 168/200 [00:29<00:08,  3.60it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  84%|████████▍ | 168/200 [00:29<00:08,  3.60it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  84%|████████▍ | 169/200 [00:29<00:08,  3.47it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  84%|████████▍ | 169/200 [00:29<00:08,  3.47it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  85%|████████▌ | 170/200 [00:29<00:08,  3.60it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  85%|████████▌ | 170/200 [00:29<00:08,  3.60it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  86%|████████▌ | 171/200 [00:30<00:08,  3.51it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  86%|████████▌ | 171/200 [00:30<00:08,  3.51it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  86%|████████▌ | 172/200 [00:30<00:07,  3.69it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  86%|████████▌ | 172/200 [00:30<00:07,  3.69it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  86%|████████▋ | 173/200 [00:30<00:06,  4.01it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  86%|████████▋ | 173/200 [00:30<00:06,  4.01it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  87%|████████▋ | 174/200 [00:30<00:06,  4.22it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  87%|████████▋ | 174/200 [00:30<00:06,  4.22it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  88%|████████▊ | 175/200 [00:31<00:06,  3.97it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  88%|████████▊ | 175/200 [00:31<00:06,  3.97it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  88%|████████▊ | 176/200 [00:31<00:06,  4.00it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  88%|████████▊ | 176/200 [00:31<00:06,  4.00it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  88%|████████▊ | 177/200 [00:31<00:06,  3.79it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  88%|████████▊ | 177/200 [00:31<00:06,  3.79it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  89%|████████▉ | 178/200 [00:31<00:05,  3.75it/s, failures=0, objective=-0.669]    HPO - Large Problem with TL:  89%|████████▉ | 178/200 [00:31<00:05,  3.75it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  90%|████████▉ | 179/200 [00:32<00:06,  3.37it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  90%|████████▉ | 179/200 [00:32<00:06,  3.37it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  90%|█████████ | 180/200 [00:32<00:06,  3.33it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  90%|█████████ | 180/200 [00:32<00:06,  3.33it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  90%|█████████ | 181/200 [00:32<00:05,  3.18it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  90%|█████████ | 181/200 [00:32<00:05,  3.18it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  91%|█████████ | 182/200 [00:33<00:05,  3.21it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  91%|█████████ | 182/200 [00:33<00:05,  3.21it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  92%|█████████▏| 183/200 [00:33<00:04,  3.64it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  92%|█████████▏| 183/200 [00:33<00:04,  3.64it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  92%|█████████▏| 184/200 [00:33<00:04,  3.72it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  92%|█████████▏| 184/200 [00:33<00:04,  3.72it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  92%|█████████▎| 185/200 [00:34<00:04,  3.28it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  92%|█████████▎| 185/200 [00:34<00:04,  3.28it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  93%|█████████▎| 186/200 [00:34<00:04,  3.14it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  93%|█████████▎| 186/200 [00:34<00:04,  3.14it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  94%|█████████▎| 187/200 [00:34<00:03,  3.46it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  94%|█████████▎| 187/200 [00:34<00:03,  3.46it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  94%|█████████▍| 188/200 [00:34<00:03,  3.50it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  94%|█████████▍| 188/200 [00:34<00:03,  3.50it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  94%|█████████▍| 189/200 [00:35<00:03,  3.30it/s, failures=0, objective=-0.614]    HPO - Large Problem with TL:  94%|█████████▍| 189/200 [00:35<00:03,  3.30it/s, failures=0, objective=-0.499]    HPO - Large Problem with TL:  95%|█████████▌| 190/200 [00:35<00:02,  3.36it/s, failures=0, objective=-0.499]    HPO - Large Problem with TL:  95%|█████████▌| 190/200 [00:35<00:02,  3.36it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  96%|█████████▌| 191/200 [00:35<00:02,  3.62it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  96%|█████████▌| 191/200 [00:35<00:02,  3.62it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  96%|█████████▌| 192/200 [00:36<00:02,  3.53it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  96%|█████████▌| 192/200 [00:36<00:02,  3.53it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  96%|█████████▋| 193/200 [00:36<00:01,  3.54it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  96%|█████████▋| 193/200 [00:36<00:01,  3.54it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  97%|█████████▋| 194/200 [00:36<00:01,  3.78it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  97%|█████████▋| 194/200 [00:36<00:01,  3.78it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  98%|█████████▊| 195/200 [00:36<00:01,  3.58it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  98%|█████████▊| 195/200 [00:36<00:01,  3.58it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  98%|█████████▊| 196/200 [00:37<00:01,  3.81it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  98%|█████████▊| 196/200 [00:37<00:01,  3.81it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  98%|█████████▊| 197/200 [00:37<00:00,  3.73it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  98%|█████████▊| 197/200 [00:37<00:00,  3.73it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  99%|█████████▉| 198/200 [00:37<00:00,  3.55it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL:  99%|█████████▉| 198/200 [00:37<00:00,  3.55it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL: 100%|█████████▉| 199/200 [00:37<00:00,  3.49it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL: 100%|█████████▉| 199/200 [00:37<00:00,  3.49it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL: 100%|██████████| 200/200 [00:38<00:00,  3.67it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL: 100%|██████████| 200/200 [00:38<00:00,  3.67it/s, failures=0, objective=-0.423]    HPO - Large Problem with TL: 100%|██████████| 200/200 [00:38<00:00,  5.24it/s, failures=0, objective=-0.423]




.. GENERATED FROM PYTHON SOURCE LINES 120-122

Finally, we compare the results and quickly see that transfer-learning
provided a consequant speed-up for the search:

.. GENERATED FROM PYTHON SOURCE LINES 122-141

.. code-block:: Python

    fig, ax = plt.subplots(figsize=(WIDTH_PLOTS, HEIGHT_PLOTS), tight_layout=True)

    for i, (strategy, df) in enumerate(results.items()):
        plot_search_trajectory_single_objective_hpo(
            df,
            show_failures=False,
            mode="min",
            ax=ax,
            label=strategy,
            plot_kwargs={"color": f"C{i}"},
            scatter_success_kwargs={"c": f"C{i}"},
        )

    ax.set_xlabel
    ax.set_xlabel("Time (sec.)")
    ax.set_ylabel("Objective")
    ax.set_yscale("log")
    ax.grid(visible=True, which="minor", linestyle=":")
    ax.grid(visible=True, which="major", linestyle="-")
    ax.legend()


.. image-sg:: /examples/examples_bbo/images/sphx_glr_plot_transfer_learning_for_hpo_001.png
   :alt: plot transfer learning for hpo
   :srcset: /examples/examples_bbo/images/sphx_glr_plot_transfer_learning_for_hpo_001.png
   :class: sphx-glr-single-img


.. rst-class:: sphx-glr-script-out

 .. code-block:: none


    <matplotlib.legend.Legend object at 0x17a85b590>




.. rst-class:: sphx-glr-timing

   **Total running time of the script:** (1 minutes 51.170 seconds)


.. _sphx_glr_download_examples_examples_bbo_plot_transfer_learning_for_hpo.py:

.. only:: html

  .. container:: sphx-glr-footer sphx-glr-footer-example

    .. container:: sphx-glr-download sphx-glr-download-jupyter

      :download:`Download Jupyter notebook: plot_transfer_learning_for_hpo.ipynb <plot_transfer_learning_for_hpo.ipynb>`

    .. container:: sphx-glr-download sphx-glr-download-python

      :download:`Download Python source code: plot_transfer_learning_for_hpo.py <plot_transfer_learning_for_hpo.py>`

    .. container:: sphx-glr-download sphx-glr-download-zip

      :download:`Download zipped: plot_transfer_learning_for_hpo.zip <plot_transfer_learning_for_hpo.zip>`


.. only:: html

 .. rst-class:: sphx-glr-signature

    `Gallery generated by Sphinx-Gallery <https://sphinx-gallery.github.io>`_
