tfp.experimental.bayesopt.acquisition.ParallelExpectedImprovement
Stay organized with collections
Save and categorize content based on your preferences.
Parallel expected improvement acquisition function.
Inherits From: AcquisitionFunction
tfp.experimental.bayesopt.acquisition.ParallelExpectedImprovement(
predictive_distribution,
observations,
seed=None,
exploration=0.01,
num_samples=100,
transform_fn=None
)
Computes the q-EI from a multivariate observation model. This is also known as
batch expected improvement.
Requires that predictive_distribution
has a sample
method.
Examples
Build and evaluate a Parallel Expected Improvement acquisition function.
import numpy as np
import tensorflow_probability as tfp
tfd = tfp.distributions
tfpk = tfp.math.psd_kernels
tfp_acq = tfp.experimental.bayesopt.acquisition
# Sample 10 20-dimensional index points and associated observations.
index_points = np.random.uniform(size=[10, 20])
observations = np.random.uniform(size=[10])
# Build a Student T Process regression model conditioned on observed data.
dist = tfd.StudentTProcessRegressionModel(
kernel=tfpk.ExponentiatedQuadratic(),
df=5.,
observation_index_points=index_points,
observations=observations)
# Define a Parallel Expected Improvement acquisition function.
stp_pei = tfp_acq.ParallelExpectedImprovement(
predictive_distribution=dist,
observations=observations,
num_samples=10_000)
# Evaluate the acquisition function at a new set of index points.
pred_index_points = np.random.uniform(size=[6, 20])
acq_fn_vals = stp_pei(pred_index_points) # Has shape [6].
Args |
predictive_distribution
|
tfd.Distribution -like, the distribution over
observations at a set of index points. Must have a sample method.
|
observations
|
Float Tensor of observations. Shape has the form
[b1, ..., bB, e] , where e is the number of index points (such that
the event shape of predictive_distribution is [e] ) and
[b1, ..., bB] is broadcastable with the batch shape of
predictive_distribution .
|
seed
|
PRNG seed; see tfp.random.sanitize_seed for details.
|
exploration
|
Exploitation-exploration trade-off parameter.
|
num_samples
|
The number of samples to use for the Parallel Expected
Improvement approximation.
|
transform_fn
|
Optional Python Callable that transforms objective values.
This is used for optimizing a composite grey box function g(f(x))
where f is our black box function and g is transform_fn .
|
Attributes |
exploration
|
|
is_parallel
|
Python bool indicating whether the acquisition function is parallel.
Parallel (batched) acquisition functions evaluate batches of points rather
than single points.
|
num_samples
|
|
observations
|
Float Tensor of observations.
|
predictive_distribution
|
The distribution over observations at a set of index points.
|
seed
|
PRNG seed.
|
transform_fn
|
|
Methods
__call__
View source
__call__(
**kwargs
)
Computes the Parallel Expected Improvement.
Args |
**kwargs
|
Keyword args passed on to the sample method of
predictive_distribution .
|
Returns |
Parallel Expected improvements at index points implied by
predictive_distribution (or overridden in **kwargs ).
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-11-21 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-11-21 UTC."],[],[]]