# bayesian_optimization_with_gradients__971b7b55.pdf Bayesian Optimization with Gradients Jian Wu 1 Matthias Poloczek 2 Andrew Gordon Wilson 1 Peter I. Frazier 1 1 Cornell University, 2 University of Arizona Bayesian optimization has been successful at global optimization of expensiveto-evaluate multimodal objective functions. However, unlike most optimization methods, Bayesian optimization typically does not use derivative information. In this paper we show how Bayesian optimization can exploit derivative information to find good solutions with fewer objective function evaluations. In particular, we develop a novel Bayesian optimization algorithm, the derivative-enabled knowledgegradient (d-KG), which is one-step Bayes-optimal, asymptotically consistent, and provides greater one-step value of information than in the derivative-free setting. d-KG accommodates noisy and incomplete derivative information, comes in both sequential and batch forms, and can optionally reduce the computational cost of inference through automatically selected retention of a single directional derivative. We also compute the d-KG acquisition function and its gradient using a novel fast discretization-free technique. We show d-KG provides state-of-the-art performance compared to a wide range of optimization procedures with and without gradients, on benchmarks including logistic regression, deep learning, kernel learning, and k-nearest neighbors. 1 Introduction Bayesian optimization [3, 17] is able to find global optima with a remarkably small number of potentially noisy objective function evaluations. Bayesian optimization has thus been particularly successful for automatic hyperparameter tuning of machine learning algorithms [10, 11, 35, 38], where objectives can be extremely expensive to evaluate, noisy, and multimodal. Bayesian optimization supposes that the objective function (e.g., the predictive performance with respect to some hyperparameters) is drawn from a prior distribution over functions, typically a Gaussian process (GP), maintaining a posterior as we observe the objective in new places. Acquisition functions, such as expected improvement [15, 17, 28], upper confidence bound [37], predictive entropy search [14] or the knowledge gradient [32], determine a balance between exploration and exploitation, to decide where to query the objective next. By choosing points with the largest acquisition function values, one seeks to identify a global optimum using as few objective function evaluations as possible. Bayesian optimization procedures do not generally leverage derivative information, beyond a few exceptions described in Sect. 2. By contrast, other types of continuous optimization methods [36] use gradient information extensively. The broader use of gradients for optimization suggests that gradients should also be quite useful in Bayesian optimization: (1) Gradients inform us about the objective s relative value as a function of location, which is well-aligned with optimization. (2) In d-dimensional problems, gradients provide d distinct pieces of information about the objective s relative value in each direction, constituting d + 1 values per query together with the objective value itself. This advantage is particularly significant for high-dimensional problems. (3) Derivative information is available in many applications at little additional cost. Recent work [e.g., 23] makes gradient information available for hyperparameter tuning. Moreover, in the optimization of engineering systems modeled by partial differential equations, which pre-dates most hyperparameter tuning applications [8], adjoint 31st Conference on Neural Information Processing Systems (NIPS 2017), Long Beach, CA, USA. methods provide gradients cheaply [16, 29]. And even when derivative information is not readily available, we can compute approximative derivatives in parallel through finite differences. In this paper, we explore the what, when, and why of Bayesian optimization with derivative information. We also develop a Bayesian optimization algorithm that effectively leverages gradients in hyperparameter tuning to outperform the state of the art. This algorithm accommodates incomplete and noisy gradient observations, can be used in both the sequential and batch settings, and can optionally reduce the computational overhead of inference by selecting the single most valuable directional derivatives to retain. For this purpose, we develop a new acquisition function, called the derivative-enabled knowledge-gradient (d-KG). d-KG generalizes the previously proposed batch knowledge gradient method of Wu and Frazier [44] to the derivative setting, and replaces its approximate discretization-based method for calculating the knowledge-gradient acquisition function by a novel faster exact discretization-free method. We note that this discretization-free method is also of interest beyond the derivative setting, as it can be used to improve knowledge-gradient methods for other problem settings. We also provide a theoretical analysis of the d-KG algorithm, showing (1) it is one-step Bayes-optimal by construction when derivatives are available; (2) that it provides one-step value greater than in the derivative-free setting, under mild conditions; and (3) that its estimator of the global optimum is asymptotically consistent. In numerical experiments we compare with state-of-the-art batch Bayesian optimization algorithms with and without derivative information, and the gradient-based optimizer BFGS with full gradients. We assume familiarity with GPs and Bayesian optimization, for which we recommend Rasmussen and Williams [31] and Shahriari et al. [34] as a review. In Section 2 we begin by describing related work. In Sect. 3 we describe our Bayesian optimization algorithm exploiting derivative information. In Sect. 4 we compare the performance of our algorithm with several competing methods on a collection of synthetic and real problems. The code for this paper is available at https://github.com/wujian16/Cornell-MOE. 2 Related Work Osborne et al. [26] proposes fully Bayesian optimization procedures that use derivative observations to improve the conditioning of the GP covariance matrix. Samples taken near previously observed points use only the derivative information to update the covariance matrix. Unlike our current work, derivative information does not affect the acquisition function. We directly compare with Osborne et al. [26] within the KNN benchmark in Sect. 4.2. Lizotte [22, Sect. 4.2.1 and Sect. 5.2.4] incorporates derivatives into Bayesian optimization, modeling the derivatives of a GP as in Rasmussen and Williams [31, Sect. 9.4]. Lizotte [22] shows that Bayesian optimization with the expected improvement (EI) acquisition function and complete gradient information at each sample can outperform BFGS. Our approach has six key differences: (i) we allow for noisy and incomplete derivative information; (ii) we develop a novel acquisition function that outperforms EI with derivatives; (iii) we enable batch evaluations; (iv) we implement and compare batch Bayesian optimization with derivatives across several acquisition functions, on benchmarks and new applications such as kernel learning, logistic regression, deep learning and k-nearest neighbors, further revealing empirically where gradient information will be most valuable; (v) we provide a theoretical analysis of Bayesian optimization with derivatives; (vi) we develop a scalable implementation. Very recently, Koistinen et al. [19] uses GPs with derivative observations for minimum energy path calculations of atomic rearrangements and Ahmed et al. [1] studies expected improvement with gradient observations. In Ahmed et al. [1], a randomly selected directional derivative is retained in each iteration for computational reasons, which is similar to our approach of retaining a single directional derivative, though differs in its random selection in contrast with our value-of-informationbased selection. Our approach is complementary to these works. For batch Bayesian optimization, several recent algorithms have been proposed that choose a set of points to evaluate in each iteration [5, 6, 12, 18, 24, 33, 35, 39]. Within this area, our approach to handling batch observations is most closely related to the batch knowledge gradient (KG) of Wu and Frazier [44]. We generalize this approach to the derivative setting, and provide a novel exact method for computing the knowledge-gradient acquisition function that avoids the discretization used in Wu and Frazier [44]. This generalization improves speed and accuracy, and is also applicable to other knowledge gradient methods in continuous search spaces. Recent advances improving both access to derivatives and computational tractability of GPs make Bayesian optimization with gradients increasingly practical and timely for discussion. 3 Knowledge Gradient with Derivatives Sect. 3.1 reviews a general approach to incorporating derivative information into GPs for Bayesian optimization. Sect. 3.2 introduces a novel acquisition function d-KG, based on the knowledge gradient approach, which utilizes derivative information. Sect. 3.3 computes this acquisition function and its gradient efficiently using a novel fast discretization-free approach. Sect. 3.4 shows that this algorithm provides greater value of information than in the derivative-free setting, is one-step Bayes-optimal, and is asymptotically consistent when used over a discretized feasible space. 3.1 Derivative Information Given an expensive-to-evaluate function f, we wish to find argminx Af(x), where A Rd is the domain of optimization. We place a GP prior over f : A R, which is specified by its mean function µ: A R and kernel function K : A A R. We first suppose that for each sample of x we observe the function value and all d partial derivatives, possibly with independent normally distributed noise, and then later discuss relaxation to observing only a single directional derivative. Since the gradient is a linear operator, the gradient of a GP is also a GP (see also Sect. 9.4 in Rasmussen and Williams [31]), and the function and its gradient follow a multi-output GP with mean function µ and kernel function K defined below: µ(x) = (µ(x), µ(x))T , K(x, x ) = K(x, x ) J(x, x ) J(x , x)T H(x, x ) where J(x, x ) = K(x,x ) x 1 , , K(x,x ) and H(x, x ) is the d d Hessian of K(x, x ). When evaluating at a point x, we observe the noise-obscured function value y(x) and gradient y(x). Jointly, these observations form a (d + 1)-dimensional vector with conditional distribution (y(x), y(x))T f(x), f(x) N (f(x), f(x))T , diag(σ2(x)) , (3.2) where σ2 : A Rd+1 0 gives the variance of the observational noise. If σ2 is not known, we may estimate it from data. The posterior distribution is again a GP. We refer to the mean function of this posterior GP after n samples as µ(n)( ) and its kernel function as K(n)( , ). Suppose that we have sampled at n points X := {x(1), x(2), , x(n)} and observed (y, y)(1:n), where each observation consists of the function value and the gradient at x(i). Then µ(n)( ) and K(n)( , ) are given by µ(n)(x) = µ(x) + K(x, X) K(X, X) + diag{σ2(x(1)), , σ2(x(n))} 1 (y, y)(1:n) µ(X) K(n)(x, x ) = K(x, x ) K(x, X) K(X, X) + diag{σ2(x(1)), , σ2(x(n))} 1 K(X, x ). (3.3) If our observations are incomplete, then we remove the rows and columns in (y, y)(1:n), µ(X), K( , X), K(X, X) and K(X, ) of Eq. (3.3) corresponding to partial derivatives (or function values) that were not observed. If we can observe directional derivatives, then we add rows and columns corresponding to these observations, where entries in µ(X) and K( , ) are obtained by noting that a directional derivative is a linear transformation of the gradient. 3.2 The d-KG Acquisition Function We propose a novel Bayesian optimization algorithm to exploit available derivative information, based on the knowledge gradient approach [9]. We call this algorithm the derivative-enabled knowledge gradient (d-KG). The algorithm proceeds iteratively, selecting in each iteration a batch of q points in A that has a maximum value of information (VOI). Suppose we have observed n points, and recall from Section 3.1 that µ(n)(x) is the (d + 1)-dimensional vector giving the posterior mean for f(x) and its d partial derivatives at x. Sect. 3.1 discusses how to remove the assumption that all d + 1 values are provided. The expected value of f(x) under the posterior distribution is µ(n) 1 (x). If after n samples we were to make an irrevocable (risk-neutral) decision now about the solution to our overarching optimization problem and receive a loss equal to the value of f at the chosen point, we would choose argminx A µ(n) 1 (x) and suffer conditional expected loss minx A µ(n) 1 (x). Similarly, if we made this decision after n + q samples our conditional expected loss would be minx A µ(n+q) 1 (x). Therefore, we define the d-KG factor for a given set of q candidate points z(1:q) as d-KG(z(1:q)) = min x A µ(n) 1 (x) En min x A µ(n+q) 1 (x) x((n+1):(n+q)) = z(1:q) , where En [ ] is the expectation taken with respect to the posterior distribution after n evaluations, and the distribution of µ(n+q) 1 ( ) under this posterior marginalizes over the observations y(z(1:q)), y(z(1:q)) = y(z(i)), y(z(i)) : i = 1, . . . , q upon which it depends. We subsequently refer to Eq. (3.4) as the inner optimization problem. The d-KG algorithm then seeks to evaluate the batch of points next that maximizes the d-KG factor, max z(1:q) A d-KG(z(1:q)). (3.5) We refer to Eq. (3.5) as the outer optimization problem. d-KG solves the outer optimization problem using the method described in Section 3.3. The d-KG acquisition function differs from the batch knowledge gradient acquisition function in Wu and Frazier [44] because here the posterior mean µ(n+q) 1 (x) at time n+q depends on y(z(1:q)). This in turn requires calculating the distribution of these gradient observations under the time-n posterior and marginalizing over them. Thus, the d-KG algorithm differs from KG not just in that gradient observations change the posterior, but also in that the prospect of future gradient observations changes the acquisition function. An additional major distinction from Wu and Frazier [44] is that d-KG employs a novel discretization-free method for computing the acquisition function (see Section 3.3). Fig. 1 illustrates the behavior of d-KG and d-EI on a 1-d example. d-EI generalizes expected improvement (EI) to batch acquisition with derivative information [22]. d-KG clearly chooses a better point to evaluate than d-EI. Including all d partial derivatives can be computationally prohibitive since GP inference scales as O(n3(d + 1)3). To overcome this challenge while retaining the value of derivative observations, we can include only one directional derivative from each iteration in our inference. d-KG can naturally decide which derivative to include, and can adjust our choice of where to best sample given that we observe more limited information. We define the d-KG acquisition function for observing only the function value and the derivative with direction θ at z(1:q) as d-KG(z(1:q), θ) = min x A µ(n) 1 (x) En min x A µ(n+q) 1 (x) x((n+1):(n+q)) = z(1:q); θ . (3.6) where conditioning on θ is here understood to mean that µ(n+q) 1 (x) is the conditional mean of f(x) given y(z(1:q)) and θT y(z(1:q)) = (θT y(z(i)) : i = 1, . . . , q). The full algorithm is as follows. Algorithm 1 d-KG with Relevant Directional Derivative Detection 1: for t = 1 to N do 2: (z(1:q) , θ ) = argmaxz(1:q),θd-KG(z(1:q), θ) 3: Augment data with y(z(1:q) ) and θ T y(z(1:q) ). Update our posterior on (f(x), f(x)). 4: end for Return x = argminx A µNq 1 (x) 2 1 0 1 2 0.0 2 1 0 1 2 0.0 Figure 1: KG [44] and EI [39] refer to acquisition functions without gradients. d-KG and d-EI refer to the counterparts with gradients. The topmost plots show (1) the posterior surfaces of a function sampled from a one dimensional GP without and with incorporating observations of the gradients. The posterior variance is smaller if the gradients are incorporated; (2) the utility of sampling each point under the value of information criteria of KG (d-KG) and EI (d-EI) in both settings. If no derivatives are observed, both KG and EI will query a point with high potential gain (i.e. a small expected function value). On the other hand, when gradients are observed, d-KG makes a considerably better sampling decision, whereas d-EI samples essentially the same location as EI. The plots in the bottom row depict the posterior surface after the respective sample. Interestingly, KG benefits more from observing the gradients than EI (the last two plots): d-KG s observation yields accurate knowledge of the optimum s location, while d-EI s observation leaves substantial uncertainty. 3.3 Efficient Exact Computation of d-KG Calculating and maximizing d-KG is difficult when A is continuous because the term minx A µ(n+q) 1 (x) in Eq. (3.6) requires optimizing over a continuous domain, and then we must integrate this optimal value through its dependence on y(z(1:q)) and θT y(z(1:q)). Previous work on the knowledge gradient in continuous domains [30, 32, 44] approaches this computation by taking minima within expectations not over the full domain A but over a discretized finite approximation. This approach supports analytic integration in Scott et al. [32] and Poloczek et al. [30], and a sampling-based scheme in Wu and Frazier [44]. However, the discretization in this approach introduces error and scales poorly with the dimension of A. Here we propose a novel method for calculating an unbiased estimator of the gradient of d-KG which we then use within stochastic gradient ascent to maximize d-KG. This method avoids discretization, and thus is exact. It also improves speed significantly over a discretization-based scheme. In Section A of the supplement we show that the d-KG factor can be expressed as d-KG(z(1:q), θ) = En min x A ˆµ(n) 1 (x) min x A ˆµ(n) 1 (x) + ˆσ(n) 1 (x, θ, z(1:q))W , (3.7) where ˆµ(n) is the mean function of (f(x), θT f(x)) after n evaluations, W is a 2q dimensional standard normal random column vector and ˆσ(n) 1 (x, θ, z(1:q)) is the first row of a 2 2q dimensional matrix, which is related to the kernel function of (f(x), θT f(x)) after n evaluations with an exact form specified in (A.2) of the supplement. Under sufficient regularity conditions [21], one can interchange the gradient and expectation operators, d-KG(z(1:q), θ) = En ˆµ(n) 1 (x) + ˆσ(n) 1 (x, θ, z(1:q))W , where here the gradient is with respect to z(1:q) and θ. If (x, z(1:q), θ) 7 ˆµ(n) 1 (x) + ˆσ(n) 1 (x, θ, z(1:q))W is continuously differentiable and A is compact, the envelope theorem [25] implies d-KG(z(1:q), θ) = En h ˆµ(n) 1 (x (W)) + ˆσ(n) 1 (x (W), θ, z(1:q))W i , (3.8) where x (W) arg minx A ˆµ(n) 1 (x) + ˆσ(n) 1 (x, θ, z(1:q))W . To find x (W), one can utilize a multi-start gradient descent method since the gradient is analytically available for the objective ˆµ(n) 1 (x) + ˆσ(n) 1 (x, θ, z(1:q))W. Practically, we find that the learning rate of linner t = 0.03/t0.7 is robust for finding x (W). The expression (3.8) implies that ˆµ(n) 1 (x (W)) + ˆσ(n) 1 (x (W), θ, z(1:q))W is an unbiased estimator of d-KG(z(1:q), θ, A), when the regularity conditions it assumes hold. We can use this unbiased gradient estimator within stochastic gradient ascent [13], optionally with multiple starts, to solve the outer optimization problem argmaxz(1:q),θd-KG(z(1:q), θ) and can use a similar approach when observing full gradients to solve (3.5). For the outer optimization problem, we find that the learning rate of louter t = 10linner t performs well over all the benchmarks we tested. Bayesian Treatment of Hyperparameters. We adopt a fully Bayesian treatment of hyperparameters similar to Snoek et al. [35]. We draw M samples of hyperparameters φ(i) for 1 i M via the emcee package [7] and average our acquisition function across them to obtain d-KGIntegrated(z(1:q), θ) = 1 M i=1 d-KG(z(1:q), θ; φ(i)), (3.9) where the additional argument φ(i) in d-KG indicates that the computation is performed conditioning on hyperparameters φ(i). In our experiments, we found this method to be computationally efficient and robust, although a more principled treatment of unknown hyperparameters within the knowledge gradient framework would instead marginalize over them when computing µ(n+q)(x) and µ(n). 3.4 Theoretical Analysis Here we present three theoretical results giving insight into the properties of d-KG, with proofs in the supplementary material. For the sake of simplicity, we suppose all partial derivatives are provided to d-KG. Similar results hold for d-KG with relevant directional derivative detection. We begin by stating that the value of information (VOI) obtained by d-KG exceeds the VOI that can be achieved in the derivative-free setting. Proposition 1. Given identical posteriors µ(n), d-KG(z(1:q)) KG(z(1:q)), where KG is the batch knowledge gradient acquisition function without gradients proposed by Wu and Frazier [44]. This inequality is strict under mild conditions (see Sect. B in the supplement). Next, we show that d-KG is one-step Bayes-optimal by construction. Proposition 2. If only one iteration is left and we can observe both function values and partial derivatives, then d-KG is Bayes-optimal among all feasible policies. As a complement to the one-step optimality, we show that d-KG is asymptotically consistent if the feasible set A is finite. Asymptotic consistency means that d-KG will choose the correct solution when the number of samples goes to infinity. Theorem 1. If the function f(x) is sampled from a GP with known hyperparameters, the d-KG algorithm is asymptotically consistent, i.e. lim N f(x (d-KG, N)) = min x A f(x) almost surely, where x (d-KG, N) is the point recommended by d-KG after N iterations. 4 Experiments We evaluate the performance of the proposed algorithm d-KG with relevant directional derivative detection (Algorithm 1) on six standard synthetic benchmarks (see Fig. 2). Moreover, we examine its ability to tune the hyperparameters for the weighted k-nearest neighbor metric, logistic regression, deep learning, and for a spectral mixture kernel (see Fig. 3). We provide an easy-to-use Python package with the core written in C++, available at https:// github.com/wujian16/Cornell-MOE. We compare d-KG to several state-of-the-art methods: (1) The batch expected improvement method (EI) of Wang et al. [39] that does not utilize derivative information and an extension of EI that incorporates derivative information denoted d-EI. d-EI is similar to Lizotte [22] but handles incomplete gradients and supports batches. (2) The batch GP-UCB-PE method of Contal et al. [5] that does not utilize derivative information, and an extension that does. (3) The batch knowledge gradient algorithm without derivative information (KG) of Wu and Frazier [44]. Moreover, we generalize the method of Osborne et al. [26] to batches and evaluate it on the KNN benchmark. All of the above algorithms allow incomplete gradient observations. In benchmarks that provide the full gradient, we additionally compare to the gradient-based method L-BFGS-B provided in scipy. We suppose that the objective function f is drawn from a Gaussian process GP(µ, Σ), where µ is a constant mean function and Σ is the squared exponential kernel. We sample M = 10 sets of hyperparameters by the emcee package [7]. Recall that the immediate regret is defined as the loss with respect to a global optimum. The plots for synthetic benchmark functions, shown in Fig. 2, report the log10 of immediate regret of the solution that each algorithm would pick as a function of the number of function evaluations. Plots for other experiments report the objective value of the solution instead of the immediate regret. Error bars give the mean value plus and minus one standard deviation. The number of replications is stated in each benchmark s description. 4.1 Synthetic Test Functions We evaluate all methods on six test functions chosen from Bingham [2]. To demonstrate the ability to benefit from noisy derivative information, we sample additive normally distributed noise with zero mean and standard deviation σ = 0.5 for both the objective function and its partial derivatives. σ is unknown to the algorithms and must be estimated from observations. We also investigate how incomplete gradient observations affect algorithm performance. We also experiment with two different batch sizes: we use a batch size q = 4 for the Branin, Rosenbrock, and Ackley functions; otherwise, we use a batch size q = 8. Fig. 2 summarizes the experimental results. Functions with Full Gradient Information. For 2d Branin on domain [ 5, 15] [0, 15], 5d Ackley on [ 2, 2]5, and 6d Hartmann function on [0, 1]6, we assume that the full gradient is available. Looking at the results for the Branin function in Fig. 2, d-KG outperforms its competitors after 40 function evaluations and obtains the best solution overall (within the limit of function evaluations). BFGS makes faster progress than the Bayesian optimization methods during the first 20 evaluations, but subsequently stalls and fails to obtain a competitive solution. On the Ackley function d-EI makes fast progress during the first 50 evaluations but also fails to make subsequent progress. Conversely, d-KG requires about 50 evaluations to improve on the performance of d-EI, after which d-KG achieves the best overall performance again. For the Hartmann function d-KG clearly dominates its competitors over all function evaluations. Functions with Incomplete Derivative Information. For the 3d Rosenbrock function on [ 2, 2]3 we only provide a noisy observation of the third partial derivative. Both EI and d-EI get stuck early. d-KG on the other hand finds a near-optimal solution after 50 function evaluations; KG, without derivatives, catches up after 75 evaluations and performs comparably afterwards. The 4d Levy benchmark on [ 10, 10]4, where the fourth partial derivative is observable with noise, shows a different ordering of the algorithms: EI has the best performance, beating even its formulation that uses derivative information. One explanation could be that the smoothness and regular shape of the function surface benefits this acquisition criteria. For the 8d Cosine mixture function on [ 1, 1]8 we provide two noisy partial derivatives. d-KG and UCB with derivatives perform better than EI-type criterion, and achieve the best performances, with d-KG beating UCB with derivatives slightly. In general, we see that d-KG successfully exploits noisy derivative information and has the best overall performance. 4.2 Real-World Test Functions Weighted k-Nearest Neighbor. Suppose a cab company wishes to predict the duration of trips. Clearly, the duration not only depends on the endpoints of the trip, but also on the day and time. Figure 2: The average performance of 100 replications (the log10 of the immediate regret vs. the number of function evaluations). d-KG performs significantly better than its competitors for all benchmarks except Levy funcion. In Branin and Hartmann, we also plot black lines, which is the performance of BFGS. In this benchmark we tune a weighted k-nearest neighbor (KNN) metric to optimize predictions of these durations, based on historical data. A trip is described by the pick-up time t, the pick-up location (p1, p2), and the drop-off point (d1, d2). Then the estimate of the duration is obtained as a weighted average over all trips Dm,t in our database that happened in the time interval t m minutes, where m is a tunable hyperparameter: Prediction(t, p1, p2, d1, d2) = (P i Dm,t durationi weight(i))/(P i Dm,t weight(i)). The weight of trip i Dm,t in this prediction is given by weight(i) = (t ti)2/l2 1 + (p1 pi 1)2/l2 2 + (p2 pi 2)2/l2 3 + (d1 di 1)2/l2 4 + (d2 di 2)2/l2 5 1, where (ti, pi 1, pi 2, di 1, di 2) are the respective parameter values for trip i, and (l1, l2, l3, l4, l5) are tunable hyperparameters. Thus, we have 6 hyperparameters to tune: (m, l1, l2, l3, l4, l5). We choose m in [30, 200], l2 1 in [101, 108], and l2 2, l2 3, l2 4, l2 5 each in [10 8, 10 1]. We use the yellow cab NYC public data set from June 2016, sampling 10000 records from June 1 25 as training data and 1000 trip records from June 26 30 as validation data. Our test criterion is the root mean squared error (RMSE), for which we compute the partial derivatives on the validation dataset with respect to the hyperparameters (l1, l2, l3, l4, l5), while the hyperparameter m is not differentiable. In Fig. 3 we see that d-KG overtakes the alternatives, and that UCB and KG acquisition functions also benefit from exploiting derivative information. Kernel Learning. Spectral mixture kernels [40] can be used for flexible kernel learning to enable long-range extrapolation. These kernels are obtained by modeling a spectral density by a mixture of Gaussians. While any stationary kernel can be described by a spectral mixture kernel with a particular setting of its hyperparameters, initializing and learning these parameters can be difficult. Although we have access to an analytic closed form of the (marginal likelihood) objective, this function is (i) expensive to evaluate and (ii) highly multimodal. Moreover, (iii) derivative information is available. Thus, learning flexible kernel functions is a perfect candidate for our approach. The task is to train a 2-component spectral mixture kernel on an airline data set [40]. We must determine the mixture weights, means, and variances, for each of the two Gaussians. Fig. 3 summarizes performance for batch size q = 8. BFGS is sensitive to its initialization and human intervention and is often trapped in local optima. d-KG, on other hand, more consistently finds a good solution, and obtains the best solution of all algorithms (within the step limit). Overall, we observe that gradient information is highly valuable in performing this kernel learning task. Logistic Regression and Deep Learning. We tune logistic regression and a feedforward neural network with 2 hidden layers on the MNIST dataset [20], a standard classification task for handwritten digits. The training set contains 60000 images, the test set 10000. We tune 4 hyperparameters for logistic regression: the ℓ2 regularization parameter from 0 to 1, learning rate from 0 to 1, mini batch size from 20 to 2000 and training epochs from 5 to 50. The first derivatives of the first two parameters can be obtained via the technique of Maclaurin et al. [23]. For the neural network, we additionally tune the number of hidden units in [50, 500]. Fig. 3 reports the mean and standard deviation of the mean cross-entropy loss (or its log scale) on the test set for 20 replications. d-KG outperforms the other approaches, which suggests that derivative information is helpful. Our algorithm proves its value in tuning a deep neural network, which harmonizes with research computing the gradients of hyperparameters [23, 27]. Figure 3: Results for the weighted KNN benchmark, the spectral mixture kernel benchmark, logistic regression and deep neural network (from left to right), all with batch size 8 and averaged over 20 replications. 5 Discussion Bayesian optimization is successfully applied to low dimensional problems where we wish to find a good solution with a very small number of objective function evaluations. We considered several such benchmarks, as well as logistic regression, deep learning, kernel learning, and k-nearest neighbor applications. We have shown that in this context derivative information can be extremely useful: we can greatly decrease the number of objective function evaluations, especially when building upon the knowledge gradient acquisition function, even when derivative information is noisy and only available for some variables. Bayesian optimization is increasingly being used to automate parameter tuning in machine learning, where objective functions can be extremely expensive to evaluate. For example, the parameters to learn through Bayesian optimization could even be the hyperparameters of a deep neural network. We expect derivative information with Bayesian optimization to help enable such promising applications, moving us towards fully automatic and principled approaches to statistical machine learning. In the future, one could combine derivative information with flexible deep projections [43], and recent advances in scalable Gaussian processes for O(n) training and O(1) test time predictions [41, 42]. These steps would help make Bayesian optimization applicable to a much wider range of problems, wherever standard gradient based optimizers are used even when we have analytic objective functions that are not expensive to evaluate while retaining faster convergence and robustness to multimodality. Acknowledgments Wilson was partially supported by NSF IIS-1563887. Frazier, Poloczek, and Wu were partially supported by NSF CAREER CMMI-1254298, NSF CMMI-1536895, NSF IIS-1247696, AFOSR FA9550-12-1-0200, AFOSR FA9550-15-1-0038, and AFOSR FA9550-16-1-0046. [1] M. O. Ahmed, B. Shahriari, and M. Schmidt. Do we need harmless bayesian optimization and first-order bayesian optimization? In NIPS Bayes Opt, 2016. [2] D. Bingham. Optimization test problems. http://www.sfu.ca/~ssurjano/optimization. html, 2015. [3] E. Brochu, V. M. Cora, and N. De Freitas. A tutorial on bayesian optimization of expensive cost functions, with application to active user modeling and hierarchical reinforcement learning. ar Xiv preprint ar Xiv:1012.2599, 2010. [4] N. T. . L. Commission. NYC Trip Record Data. http://www.nyc.gov/html/tlc/, June 2016. Last accessed on 2016-10-10. [5] E. Contal, D. Buffoni, A. Robicquet, and N. Vayatis. Parallel gaussian process optimization with upper confidence bound and pure exploration. In Machine Learning and Knowledge Discovery in Databases, pages 225 240. Springer, 2013. [6] T. Desautels, A. Krause, and J. W. Burdick. Parallelizing exploration-exploitation tradeoffs in gaussian process bandit optimization. The Journal of Machine Learning Research, 15(1): 3873 3923, 2014. [7] D. Foreman-Mackey, D. W. Hogg, D. Lang, and J. Goodman. emcee: the mcmc hammer. Publications of the Astronomical Society of the Pacific, 125(925):306, 2013. [8] A. Forrester, A. Sobester, and A. Keane. Engineering design via surrogate modelling: a practical guide. John Wiley & Sons, 2008. [9] P. Frazier, W. Powell, and S. Dayanik. The knowledge-gradient policy for correlated normal beliefs. INFORMS Journal on Computing, 21(4):599 613, 2009. [10] J. R. Gardner, M. J. Kusner, Z. E. Xu, K. Q. Weinberger, and J. Cunningham. Bayesian optimization with inequality constraints. In International Conference on Machine Learning, pages 937 945, 2014. [11] M. Gelbart, J. Snoek, and R. Adams. Bayesian optimization with unknown constraints. In International Conference on Machine Learning, pages 250 259, Corvallis, Oregon, 2014. [12] J. Gonzalez, Z. Dai, P. Hennig, and N. Lawrence. Batch bayesian optimization via local penalization. In AISTATS, pages 648 657, 2016. [13] J. Harold, G. Kushner, and G. Yin. Stochastic approximation and recursive algorithm and applications. Springer, 2003. [14] J. M. Hernández-Lobato, M. W. Hoffman, and Z. Ghahramani. Predictive entropy search for efficient global optimization of black-box functions. In Advances in Neural Information Processing Systems, pages 918 926, 2014. [15] D. Huang, T. T. Allen, W. I. Notz, and N. Zeng. Global Optimization of Stochastic Black-Box Systems via Sequential Kriging Meta-Models. Journal of Global Optimization, 34(3):441 466, 2006. [16] A. Jameson. Re-engineering the design process through computation. Journal of Aircraft, 36 (1):36 50, 1999. [17] D. R. Jones, M. Schonlau, and W. J. Welch. Efficient global optimization of expensive black-box functions. Journal of Global optimization, 13(4):455 492, 1998. [18] T. Kathuria, A. Deshpande, and P. Kohli. Batched gaussian process bandit optimization via determinantal point processes. In Advances in Neural Information Processing Systems, pages 4206 4214, 2016. [19] O.-P. Koistinen, E. Maras, A. Vehtari, and H. Jónsson. Minimum energy path calculations with gaussian process regression. Nanosystems: Physics, Chemistry, Mathematics, 7(6), 2016. [20] Y. Le Cun, C. Cortes, and C. J. Burges. The mnist database of handwritten digits, 1998. [21] P. L Ecuyer. Note: On the interchange of derivative and expectation for likelihood ratio derivative estimators. Management Science, 41(4):738 747, 1995. [22] D. J. Lizotte. Practical bayesian optimization. Ph D thesis, University of Alberta, 2008. [23] D. Maclaurin, D. Duvenaud, and R. P. Adams. Gradient-based hyperparameter optimization through reversible learning. In International Conference on Machine Learning, pages 2113 2122, 2015. [24] S. Marmin, C. Chevalier, and D. Ginsbourger. Efficient batch-sequential bayesian optimization with moments of truncated gaussian vectors. ar Xiv preprint ar Xiv:1609.02700, 2016. [25] P. Milgrom and I. Segal. Envelope theorems for arbitrary choice sets. Econometrica, 70(2): 583 601, 2002. [26] M. A. Osborne, R. Garnett, and S. J. Roberts. Gaussian processes for global optimization. In 3rd International Conference on Learning and Intelligent Optimization (LION3), pages 1 15. Citeseer, 2009. [27] F. Pedregosa. Hyperparameter optimization with approximate gradient. In International Conference on Machine Learning, pages 737 746, 2016. [28] V. Picheny, D. Ginsbourger, Y. Richet, and G. Caplin. Quantile-based optimization of noisy computer experiments with tunable precision. Technometrics, 55(1):2 13, 2013. [29] R.-É. Plessix. A review of the adjoint-state method for computing the gradient of a functional with geophysical applications. Geophysical Journal International, 167(2):495 503, 2006. [30] M. Poloczek, J. Wang, and P. I. Frazier. Multi-information source optimization. In Advances in Neural Information Processing Systems, 2017. Accepted for publication. Ar Xiv preprint 1603.00389. [31] C. E. Rasmussen and C. K. I. Williams. Gaussian Processes for Machine Learning. MIT Press, 2006. ISBN 0-262-18253-X. [32] W. Scott, P. Frazier, and W. Powell. The correlated knowledge gradient for simulation optimization of continuous parameters using gaussian process regression. SIAM Journal on Optimization, 21(3):996 1026, 2011. [33] A. Shah and Z. Ghahramani. Parallel predictive entropy search for batch global optimization of expensive objective functions. In Advances in Neural Information Processing Systems, pages 3312 3320, 2015. [34] B. Shahriari, K. Swersky, Z. Wang, R. P. Adams, and N. de Freitas. Taking the human out of the loop: A review of bayesian optimization. Proceedings of the IEEE, 104(1):148 175, 2016. [35] J. Snoek, H. Larochelle, and R. P. Adams. Practical bayesian optimization of machine learning algorithms. In Advances in Neural Information Processing Systems, pages 2951 2959, 2012. [36] J. Snyman. Practical mathematical optimization: an introduction to basic optimization theory and classical and new gradient-based algorithms, volume 97. Springer Science & Business Media, 2005. [37] N. Srinivas, A. Krause, M. Seeger, and S. M. Kakade. Gaussian process optimization in the bandit setting: No regret and experimental design. In International Conference on Machine Learning, pages 1015 1022, 2010. [38] K. Swersky, J. Snoek, and R. P. Adams. Multi-task bayesian optimization. In Advances in Neural Information Processing Systems, pages 2004 2012, 2013. [39] J. Wang, S. C. Clark, E. Liu, and P. I. Frazier. Parallel bayesian global optimization of expensive functions. ar Xiv preprint ar Xiv:1602.05149, 2016. [40] A. G. Wilson and R. P. Adams. Gaussian process kernels for pattern discovery and extrapolation. In International Conference on Machine Learning, pages 1067 1075, 2013. [41] A. G. Wilson and H. Nickisch. Kernel interpolation for scalable structured gaussian processes (kiss-gp). In International Conference on Machine Learning, pages 1775 1784, 2015. [42] A. G. Wilson, C. Dann, and H. Nickisch. Thoughts on massively scalable gaussian processes. ar Xiv preprint ar Xiv:1511.01870, 2015. [43] A. G. Wilson, Z. Hu, R. Salakhutdinov, and E. P. Xing. Deep kernel learning. In Proceedings of the 19th International Conference on Artificial Intelligence and Statistics, pages 370 378, 2016. [44] J. Wu and P. Frazier. The parallel knowledge gradient method for batch bayesian optimization. In Advances in Neural Information Processing Systems, pages 3126 3134, 2016.