2023.08.01.

Exploring Bayesian Optimization

Exploring Bayesian Optimization


Many modern machine learning algorithms have a large number of hyperparameters. To effectively use these algorithms, we need to pick good hyperparameter values.

In this article, we talk about Bayesian Optimization, a suite of techniques often used to tune hyperparameters. More generally, Bayesian Optimization can be used to optimize any black-box function.

Let us start with the example of gold mining. Our goal is to mine for gold in an unknown landInterestingly, our example is similar to one of the first use of Gaussian Processes (also called kriging), where Prof. Krige modeled the gold concentrations using a Gaussian Process..
For now, we assume that the gold is distributed about a line. We want to find the location along this line with the maximum gold while only drilling a few times (as drilling is expensive).

Let us suppose that the gold distribution f(x)f(x) looks something like the function below. It is bi-modal, with a maximum value around x=5x = 5. For now, let us not worry about the X-axis or the Y-axis units.


Initially, we have no idea about the gold distribution. We can learn the gold distribution by drilling at different locations. However, this drilling is costly. Thus, we want to minimize the number of drillings required while still finding the location of maximum gold quickly.

We now discuss two common objectives for the gold mining problem.

  • Problem 1: Best Estimate of Gold Distribution (Active Learning)
    In this problem, we want to accurately estimate the gold distribution on the new land. We can not drill at every location due to the prohibitive cost. Instead, we should drill at locations providing high information about the gold distribution. This problem is akin to

    Active Learning
    .

  • Problem 2: Location of Maximum Gold (Bayesian Optimization)
    In this problem, we want to find the location of the maximum gold content. We, again, can not drill at every location. Instead, we should drill at locations showing high promise about the gold content. This problem is akin to

    Bayesian Optimization
    .

We will soon see how these two problems are related, but not the same.

Active Learning

For many machine learning problems, unlabeled data is readily available. However, labeling (or querying) is often expensive. As an example, for a speech-to-text task, the annotation requires expert(s) to label words and sentences manually. Similarly, in our gold mining problem, drilling (akin to labeling) is expensive.

Active learning minimizes labeling costs while maximizing modeling accuracy. While there are various methods in active learning literature, we look at uncertainty reduction. This method proposes labeling the point whose model uncertainty is the highest. Often, the variance acts as a measure of uncertainty.

Since we only know the true value of our function at a few points, we need a surrogate model for the values our function takes elsewhere. This surrogate should be flexible enough to model the true function. Using a Gaussian Process (GP) is a common choice, both because of its flexibility and its ability to give us uncertainty estimates

Gaussian Process supports setting of priors by using specific kernels and mean functions. One might want to look at this excellent Distill article on Gaussian Processes to learn more.

Please find this amazing video from Javier González on Gaussian Processes.
.

Our surrogate model starts with a prior of f(x)f(x) — in the case of gold, we pick a prior assuming that it’s smoothly distributed

Specifics: We use a Matern 5/2 kernel due to its property of favoring doubly differentiable functions. See Rasmussen and Williams 2004 and scikit-learn, for details regarding the Matern kernel.
.
As we evaluate points (drilling), we get more data for our surrogate to learn from, updating it according to Bayes’ rule.

Each new data point updates our surrogate model, moving it closer to the ground truth. The black line and the grey shaded region indicate the mean (μ)(mu) and uncertainty (μ±σ)(mu pm sigma) in our gold distribution estimate before and after drilling.

In the above example, we started with uniform uncertainty. But after our first update, the posterior is certain near x=0.5x = 0.5 and uncertain away from it. We could just keep adding more training points and obtain a more certain estimate of f(x)f(x).

However, we want to minimize the number of evaluations. Thus, we should choose the next query point “smartly” using active learning. Although there are many ways to pick smart points, we will be picking the most uncertain one.

This gives us the following procedure for Active Learning:

  1. Choose and add the point with the highest uncertainty to the training set (by querying/labeling that point)
  2. Train on the new training set
  3. Go to #1 till convergence or budget elapsed

Let us now visualize this process and see how our posterior changes at every iteration (after each drilling).


The visualization shows that one can estimate the true distribution in a few iterations. Furthermore, the most uncertain positions are often the farthest points from the current evaluation points. At every iteration, active learning explores the domain to make the estimates better.

Bayesian Optimization

In the previous section, we picked points in order to determine an accurate model of the gold content. But what if our goal is simply to find the location of maximum gold content? Of course, we could do active learning to estimate the true function accurately and then find its maximum. But that seems pretty wasteful — why should we use evaluations improving our estimates of regions where the function expects low gold content when we only care about the maximum?

This is the core question in Bayesian Optimization: “Based on what we know so far, which point should we evaluate next?” Remember that evaluating each point is expensive, so we want to pick carefully! In the active learning case, we picked the most uncertain point, exploring the function. But in Bayesian Optimization, we need to balance exploring uncertain regions, which might unexpectedly have high gold content, against focusing on regions we already know have higher gold content (a kind of exploitation).

We make this decision with something called an acquisition function. Acquisition functions are heuristics for how desirable it is to evaluate a point, based on our present modelMore details on acquisition functions can be accessed at on this link.. We will spend much of this section going through different options for acquisition functions.

This brings us to how Bayesian Optimization works. At every step, we determine what the best point to evaluate next is according to the acquisition function by optimizing it. We then update our model and repeat this process to determine the next point to evaluate.

You may be wondering what’s “Bayesian” about Bayesian Optimization if we’re just optimizing these acquisition functions. Well, at every step we maintain a model describing our estimates and uncertainty at each point, which we update according to Bayes’ rule at each step. Our acquisition functions are based on this model, and nothing would be possible without them!

Formalizing Bayesian Optimization


Let us now formally introduce Bayesian Optimization. Our goal is to find the location (xRd{x in mathbb{R}^d}

.

General Constraints

Constraints in Gold Mining example

ff’s feasible set AA is simple,
e.g., box constraints.
Our domain in the gold mining problem is a single-dimensional box constraint: 0x60 leq x leq 6.
ff is continuous but lacks special structure,
e.g., concavity, that would make it easy to optimize.
Our true function is neither a convex nor a concave function, resulting in local optimums.
ff is derivative-free:
evaluations do not give gradient information.
Our evaluation (by drilling) of the amount of gold content at a location did not give us any gradient information.
ff is expensive to evaluate:
the number of times we can evaluate it
is severely limited.
Drilling is costly.
ff may be noisy. If noise is present, we will assume it is independent and normally distributed, with common but unknown variance.We assume noiseless measurements in our modeling (though, it is easy to incorporate normally distributed noise for GP regression).

To solve this problem, we will follow the following algorithm:

  1. We first choose a surrogate model for modeling the true function ff and define its prior.
  2. Given the set of observations (function evaluations), use Bayes rule to obtain the posterior.
  3. Use an acquisition function α(x)alpha(x), which is a function of the posterior, to decide the next sample point xt=argmaxxα(x)x_t = text{argmax}_x alpha(x)
  4. Add newly sampled data to the set of observations and goto step #2 till convergence or budget elapses.

Acquisition Functions

Acquisition functions are crucial to Bayesian Optimization, and there are a wide variety of options
Please find these slides from Washington University in St. Louis to know more about acquisition functions.
. In the following sections, we will go through a number of options, providing intuition and examples.

Probability of Improvement (PI)

This acquisition function chooses the next query point as the one which has the highest probability of improvement over the current max f(x+)f(x^+)

xt+1=argmax(αPI(x))=argmax(P(f(x)(f(x+)+ϵ))) x_{t+1} = argmax(alpha_{PI}(x)) = argmax(P(f(x) geq (f(x^+) +epsilon)))
xt+1=argmax(αPI(x))=argmax(P(f(x)(f(x+)+ϵ))) begin{aligned} x_{t+1} & = argmax(alpha_{PI}(x))\ & = argmax(P(f(x) geq (f(x^+) +epsilon))) end{aligned}

where,

  • P()P(cdot) indicates probability
  • ϵepsilon is a small positive number
  • And, x+=argmaxxix1:tf(xi) x^+ = text{argmax}_{x_i in x_{1:t}}f(x_i)

Looking closely, we are just finding the upper-tail probability (or the CDF) of the surrogate posterior. Moreover, if we are using a GP as a surrogate the expression above converts to,

xt+1=argmaxxΦ(μt(x)f(x+)ϵσt(x))x_{t+1} = argmax_x Phileft(frac{mu_t(x) – f(x^+) – epsilon}{sigma_t(x)}right)

where,

  • Φ()Phi(cdot) indicates the CDF

The visualization below shows the calculation of αPI(x)alpha_{PI}(x)


Intuition behind ϵepsilon in PI

PI uses ϵepsilon to strike a balance between exploration and exploitation.
Increasing ϵepsilon results in querying locations with a larger σsigma as their probability density is spread.

Let us now see the PI acquisition function in action. We start with ϵ=0.075epsilon=0.075.


Looking at the graph above, we see that we reach the global maxima in a few iterationsTies are broken randomly..
Our surrogate possesses a large uncertainty in x[2,4]x in [2, 4] in the first few iterationsThe proportion of uncertainty is identified by the grey translucent area..
The acquisition function initially exploits regions with a high promisePoints in the vicinity of current maxima, which leads to high uncertainty in the region x[2,4]x in [2, 4]. This observation also shows that we do not need to construct an accurate estimate of the black-box function to find its maximum.


The visualization above shows that increasing ϵepsilon to 0.3, enables us to explore more. However, it seems that we are exploring more than required.

What happens if we increase ϵepsilon a bit more?


We see that we made things worse! Our model now uses ϵ=3epsilon = 3, and we are unable to exploit when we land near the global maximum. Moreover, with high exploration, the setting becomes similar to active learning.

Our quick experiments above help us conclude that ϵepsilon controls the degree of exploration in the PI acquisition function.

Expected Improvement (EI)

Probability of improvement only looked at how likely is an improvement, but, did not consider how much we can improve. The next criterion, called Expected Improvement (EI), does exactly thatA good introduction to the Expected Improvement acquisition function is by this post by Thomas Huijskens and these slides by Peter Frazier!
The idea is fairly simple — choose the next query point as the one which has the highest expected improvement over the current max f(x+)f(x^+)

In this acquisition function, t+1tht + 1^{th}

xt+1=argminxE(ht+1(x)f(x)  Dt) x_{t+1} = argmin_x mathbb{E} left( ||h_{t+1}(x) – f(x^star) || | mathcal{D}_t right)

Where, ff is the actual ground truth function, ht+1h_{t+1}

In essence, we are trying to select the point that minimizes the distance to the objective evaluated at the maximum. Unfortunately, we do not know the ground truth function, ff. Mockus proposed
the following acquisition function to overcome the issue.

xt+1=argmaxxE(max{0, ht+1(x)f(x+)}  Dt) x_{t+1} = argmax_x mathbb{E} left( {max} { 0, h_{t+1}(x) – f(x^+) } | mathcal{D}_t right)
xt+1= argmaxxE(max{0, ht+1(x)f(x+)}  Dt) begin{aligned} x_{t+1} = & argmax_x mathbb{E} \ & left( {max} { 0, h_{t+1}(x) – f(x^+) } | mathcal{D}_t right) end{aligned}

where f(x+)f(x^+)

EI(x)={(μt(x)f(x+)ϵ)Φ(Z)+σt(x)ϕ(Z),if σt(x)>00,if σt(x)=0 EI(x)= begin{cases} (mu_t(x) – f(x^+) – epsilon)Phi(Z) + sigma_t(x)phi(Z), & text{if} sigma_t(x) > 0 \ 0, & text{if} sigma_t(x) = 0 end{cases}
EI(x)={[(μt(x)f(x+)ϵ) σt(x)>0Φ(Z)]+σt(x)ϕ(Z),0, σt(x)=0 EI(x)= begin{cases} [(mu_t(x) – f(x^+) – epsilon) & sigma_t(x) > 0 \ quad * Phi(Z)] + sigma_t(x)phi(Z),\ 0, & sigma_t(x) = 0 end{cases}

Z=μt(x)f(x+)ϵσt(x)Z= frac{mu_t(x) – f(x^+) – epsilon}{sigma_t(x)}

where Φ()Phi(cdot) indicates CDF and ϕ()phi(cdot) indicates pdf.

From the above expression, we can see that Expected Improvement will be high when: i) the expected value of μt(x)f(x+)mu_t(x) – f(x^+)

Like the PI acquisition function, we can moderate the amount of exploration of the EI acquisition function by modifying ϵepsilon.


For ϵ=0.01epsilon = 0.01 we come close to the global maxima in a few iterations.

We now increase ϵepsilon to explore more.


As we expected, increasing the value to ϵ=0.3epsilon = 0.3 makes the acquisition function explore more. Compared to the earlier evaluations, we see less exploitation. We see that it evaluates only two points near the global maxima.

Let us increase ϵepsilon even more.


Is this better than before? It turns out a yes and a no; we explored too much at ϵ=3epsilon = 3 and quickly reached near the global maxima. But unfortunately, we did not exploit to get more gains near the global maxima.

We have seen two closely related methods, The Probability of Improvement and the Expected Improvement.


The scatter plot above shows the policies’ acquisition functions evaluated on different pointsEach dot is a point in the search space. Additionally, the training set used while making the plot only consists of a single observation (0.5,f(0.5))(0.5, f(0.5)).
We see that αEIalpha_{EI}

Thompson Sampling

Another common acquisition function is Thompson Sampling . At every step, we sample a function from the surrogate’s posterior and optimize it. For example, in the case of gold mining, we would sample a plausible distribution of the gold given the evidence and evaluate (drill) wherever it peaks.

Below we have an image showing three sampled functions from the learned surrogate posterior for our gold mining problem. The training data constituted the point x=0.5x = 0.5 and the corresponding functional value.




We can understand the intuition behind Thompson sampling by two observations:

  • Locations with high uncertainty (σ(x) sigma(x) ) will show a large variance in the functional values sampled from the surrogate posterior. Thus, there is a non-trivial probability that a sample can take high value in a highly uncertain region. Optimizing such samples can aid exploration.

    As an example, the three samples (sample #1, #2, #3) show a high variance close to x=6x=6. Optimizing sample 3 will aid in exploration by evaluating x=6x=6.

  • The sampled functions must pass through the current max value, as there is no uncertainty at the evaluated locations. Thus, optimizing samples from the surrogate posterior will ensure exploiting behavior.

    As an example of this behavior, we see that all the sampled functions above pass through the current max at x=0.5x = 0.5. If x=0.5x = 0.5 were close to the global maxima, then we would be able to exploit and choose a better maximum.


The visualization above uses Thompson sampling for optimization. Again, we can reach the global optimum in relatively few iterations.

Random

We have been using intelligent acquisition functions until now.
We can create a random acquisition function by sampling xx
randomly.


The visualization above shows that the performance of the random acquisition function is not that bad! However, if our optimization was more complex (more dimensions), then the random acquisition might perform poorly.

Summary of Acquisition Functions

Let us now summarize the core ideas associated with acquisition functions: i) they are heuristics for evaluating the utility of a point; ii) they are a function of the surrogate posterior; iii) they combine exploration and exploitation; and iv) they are inexpensive to evaluate.

Other Acquisition Functions

We have seen various acquisition functions until now. One trivial way to come up with acquisition functions is to have a explore/exploit combination.

Upper Confidence Bound (UCB)

One such trivial acquisition function that combines the exploration/exploitation tradeoff is a linear combination of the mean and uncertainty of our surrogate model. The model mean signifies exploitation (of our model’s knowledge) and model uncertainty signifies exploration (due to our model’s lack of observations).
α(x)=μ(x)+λ×σ(x)alpha(x) = mu(x) + lambda times sigma(x)

The intuition behind the UCB acquisition function is weighing of the importance between the surrogate’s mean vs. the surrogate’s uncertainty. The λlambda above is the hyperparameter that can control the preference between exploitation or exploration.

We can further form acquisition functions by combining the existing acquisition functions though the physical interpretability of such combinations might not be so straightforward. One reason we might want to combine two methods is to overcome the limitations of the individual methods.

Probability of Improvement + λ ×lambda times Expected Improvement (EI-PI)

One such combination can be a linear combination of PI and EI.

We know PI focuses on the probability of improvement, whereas EI focuses on the expected improvement. Such a combination could help in having a tradeoff between the two based on the value of λlambda.

Gaussian Process Upper Confidence Bound (GP-UCB)

Before talking about GP-UCB, let us quickly talk about regret. Imagine if the maximum gold was aa units, and our optimization instead samples a location containing b<ab < a units, then our regret is
aba – b. If we accumulate the regret over nn iterations, we get what is called cumulative regret.
GP-UCB’s formulation is given by:

αGPUCB(x)=μt(x)+βtσt(x) alpha_{GP-UCB}(x) = mu_t(x) + sqrt{beta_t}sigma_t(x)

Where tt is the timestep.

Srinivas et. al. developed a schedule for βbeta that they theoretically demonstrate to minimize cumulative regret.

Comparison

We now compare the performance of different acquisition functions on the gold mining problemTo know more about the difference between acquisition functions look at these amazing
slides from Nando De Freitas
. We have used the optimum hyperparameters for each acquisition function.

We ran the random acquisition function several times with different seeds and plotted the mean gold sensed at every iteration.


The random strategy is initially comparable to or better than other acquisition functionsUCB and GP-UCB have been mentioned in the collapsible. However, the maximum gold sensed by random strategy grows slowly. In comparison, the other acquisition functions can find a good solution in a small number of iterations. In fact, most acquisition functions reach fairly close to the global maxima in as few as three iterations.

Hyperparameter Tuning

Before we talk about Bayesian optimization for hyperparameter tuning, we will quickly differentiate between hyperparameters and parameters: hyperparameters are set before learning and the parameters are learned from the data. To illustrate the difference, we take the example of Ridge regression.

θ^ridge=argminθ  Rpi=1n(yixiTθ)2+λj=1pθj2 hat{theta}_{ridge} = argmin_{theta in mathbb{R}^p} sumlimits_{i=1}^{n} left(y_i – x_i^Ttheta right)^2 + lambda sumlimits_{j=1}^{p} theta^2_j
θ^ridge=argminθ  Rpi=1n(yixiTθ)2+λj=1pθj2 begin{aligned} hat{theta}_{ridge} = & argmin_{theta in mathbb{R}^p} sumlimits_{i=1}^{n} left(y_i – x_i^Ttheta right)^2 \ & + lambda sumlimits_{j=1}^{p} theta^2_j end{aligned}

In Ridge regression, the weight matrix θtheta is the parameter, and the regularization coefficient λ0lambda geq 0 is the hyperparameter.
If we solve the above regression problem via gradient descent optimization, we further introduce another optimization parameter, the learning rate αalpha.

The most common use case of Bayesian Optimization is hyperparameter tuning: finding the best performing hyperparameters on machine learning models.

When training a model is not expensive and time-consuming, we can do a grid search to find the optimum hyperparameters. However, grid search is not feasible if function evaluations are costly, as in the case of a large neural network that takes days to train. Further, grid search scales poorly in terms of the number of hyperparameters.

We turn to Bayesian Optimization to counter the expensive nature of evaluating our black-box function (accuracy).

Example 1 — Support Vector Machine (SVM)

In this example, we use an SVM to classify on sklearn’s moons dataset and use Bayesian Optimization to optimize SVM hyperparameters.

  • γgamma — modifies the behavior of the SVM’s kernel. Intuitively it is a measure of the influence of a single training exampleStackOverflow answer for intuition behind the hyperparameters..
  • CC — modifies the slackness of the classification, the higher the CC is, the more sensitive is SVM towards the noise.

Let us have a look at the dataset now, which has two classes and two features.


Let us apply Bayesian Optimization to learn the best hyperparameters for this classification task Note: the surface plots you see for the Ground Truth Accuracies below were calculated for each possible hyperparameter for showcasing purposes only. We do not have these values in real applications.
. The optimum values for <C, γC, gamma> have been found via running grid search at high granularity.


Above we see a slider showing the work of the Probability of Improvement acquisition function in finding the best hyperparameters.


Above we see a slider showing the work of the Expected Improvement acquisition function in finding the best hyperparameters.

Comparison

Below is a plot that compares the different acquisition functions. We ran the random acquisition function several times to average out its results.


All our acquisition beat the random acquisition function after seven iterations. We see the random method seemed to perform much better initially, but it could not reach the global optimum, whereas Bayesian Optimization was able to get fairly close. The initial subpar performance of Bayesian Optimization can be attributed to the initial exploration.

Example 2 — Random Forest

Using Bayesian Optimization in a Random Forest Classifier.

We will continue now to train a Random Forest on the moons dataset we had used previously to learn the Support Vector Machine model. The primary hyperparameters of Random Forests we would like to optimize our accuracy are the number of
Decision Trees we would like to have, the maximum depth for each of those decision trees.

The parameters of the Random Forest are the individual trained Decision Trees models.

We will be again using Gaussian Processes with Matern kernel to estimate and predict the accuracy function over the two hyperparameters.


Above is a typical Bayesian Optimization run with the Probability of Improvement acquisition function.


Above we see a run showing the work of the Expected Improvement acquisition function in optimizing the hyperparameters.


Now using the Gaussian Processes Upper Confidence Bound acquisition function in optimizing the hyperparameters.


Let us now use the Random acquisition function.


The optimization strategies seemed to struggle in this example. This can be attributed to the non-smooth ground truth. This shows that the effectiveness of Bayesian Optimization depends on the surrogate’s efficiency to model the actual black-box function. It is interesting to notice that the Bayesian Optimization framework still beats the random strategy using various acquisition functions.

Example 3 — Neural Networks

Let us take this example to get an idea of how to apply Bayesian Optimization to train neural networks. Here we will be using scikit-optim, which also provides us support for optimizing function with a search space of categorical, integral, and real variables. We will not be plotting the ground truth here, as it is extremely costly to do so. Below are some code snippets that show the ease of using Bayesian Optimization packages for hyperparameter tuning.

The code initially declares a search space for the optimization problem. We limit the search space to be the following:

  • batch_size — This hyperparameter sets the number of training examples to combine to find the gradients for a single step in gradient descent.
    Our search space for the possible batch sizes consists of integer values s.t. batch_size = 2i  2i7 & iZ2^i forall 2 leq i leq 7 & i in mathbb{Z}
  • learning rate — This hyperparameter sets the stepsize with which we will perform gradient descent in the neural network.
    We will be searching over all the real numbers in the range [106, 1][10^{-6}, 1]
  • activation — We will have one categorical variable, i.e. the activation to apply to our neural network layers. This variable can take on values in the set {relu, sigmoid}{ relu, sigmoid }.


log_batch_size = Integer(
low=2,
high=7,
name=”log_batch_size”
)
lr = Real(
low=1e-6,
high=1e0,
prior=”log-uniform”,
name=”lr”
)
activation = Categorical(
categories=[‘relu’, ‘sigmoid’],
name=”activation”
)

dimensions = [
dim_num_batch_size_to_base,
dim_learning_rate,
dim_activation
]

Now import gp-minimizeNote: One will need to negate the accuracy values as we are using the minimizer function from scikit-optim. from scikit-optim to perform the optimization. Below we show calling the optimizer using Expected Improvement, but of course we can select from a number of other acquisition functions.


# initial parameters (1st point)
default_parameters =
[4, 1e-1, ‘relu’]

# bayesian optimization
search_result = gp_minimize(
func=train,
dimensions=dimensions,
acq_func=”EI”, # Expctd Imprv.
n_calls=11,
x0=default_parameters
)


In the graph above the y-axis denotes the best accuracy till then, (f(x+))left( f(x^+) right)

Looking at the above example, we can see that incorporating Bayesian Optimization is not difficult and can save a lot of time. Optimizing to get an accuracy of nearly one in around seven iterations is impressive!The example above has been inspired by Hvass Laboratories’ Tutorial Notebook showcasing hyperparameter optimization in TensorFlow using scikit-optim.

Let us get the numbers into perspective. If we had run this optimization using a grid search, it would have taken around (5×2×7)(5 times 2 times 7) iterations. Whereas Bayesian Optimization only took seven iterations. Each iteration took around fifteen minutes; this sets the time required for the grid search to complete around seventeen hours!

In this article, we looked at Bayesian Optimization for optimizing a black-box function. Bayesian Optimization is well suited when the function evaluations are expensive, making grid or exhaustive search impractical. We looked at the key components of Bayesian Optimization. First, we looked at the notion of using a surrogate function (with a prior over the space of objective functions) to model our black-box function. Next, we looked at the “Bayes” in Bayesian Optimization — the function evaluations are used as data to obtain the surrogate posterior. We look at acquisition functions, which are functions of the surrogate posterior and are optimized sequentially. This new sequential optimization is in-expensive and thus of utility of us. We also looked at a few acquisition functions and showed how these different functions balance exploration and exploitation. Finally, we looked at some practical examples of Bayesian Optimization for optimizing hyper-parameters for machine learning models.

We hope you had a good time reading the article and hope you are ready to exploit the power of Bayesian Optimization. In case you wish to explore more, please read the Further Reading section below. We also provide our repository to reproduce the entire article.



Source link

Facebook
Twitter
LinkedIn
Pinterest