public static final class VizierServiceGrpc.VizierServiceFutureStub extends io.grpc.stub.AbstractFutureStub<VizierServiceGrpc.VizierServiceFutureStub>
Vertex AI Vizier API. Vertex AI Vizier is a service to solve blackbox optimization problems, such as tuning machine learning hyperparameters and searching over deep learning architectures.
| Modifier and Type | Method and Description |
|---|---|
com.google.common.util.concurrent.ListenableFuture<Trial> |
addTrialMeasurement(AddTrialMeasurementRequest request)
Adds a measurement of the objective metrics to a Trial.
|
protected VizierServiceGrpc.VizierServiceFutureStub |
build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) |
com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation> |
checkTrialEarlyStoppingState(CheckTrialEarlyStoppingStateRequest request)
Checks whether a Trial should stop or not.
|
com.google.common.util.concurrent.ListenableFuture<Trial> |
completeTrial(CompleteTrialRequest request)
Marks a Trial as complete.
|
com.google.common.util.concurrent.ListenableFuture<Study> |
createStudy(CreateStudyRequest request)
Creates a Study.
|
com.google.common.util.concurrent.ListenableFuture<Trial> |
createTrial(CreateTrialRequest request)
Adds a user provided Trial to a Study.
|
com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> |
deleteStudy(DeleteStudyRequest request)
Deletes a Study.
|
com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> |
deleteTrial(DeleteTrialRequest request)
Deletes a Trial.
|
com.google.common.util.concurrent.ListenableFuture<Study> |
getStudy(GetStudyRequest request)
Gets a Study by name.
|
com.google.common.util.concurrent.ListenableFuture<Trial> |
getTrial(GetTrialRequest request)
Gets a Trial.
|
com.google.common.util.concurrent.ListenableFuture<ListOptimalTrialsResponse> |
listOptimalTrials(ListOptimalTrialsRequest request)
Lists the pareto-optimal Trials for multi-objective Study or the
optimal Trials for single-objective Study.
|
com.google.common.util.concurrent.ListenableFuture<ListStudiesResponse> |
listStudies(ListStudiesRequest request)
Lists all the studies in a region for an associated project.
|
com.google.common.util.concurrent.ListenableFuture<ListTrialsResponse> |
listTrials(ListTrialsRequest request)
Lists the Trials associated with a Study.
|
com.google.common.util.concurrent.ListenableFuture<Study> |
lookupStudy(LookupStudyRequest request)
Looks a study up using the user-defined display_name field instead of the
fully qualified resource name.
|
com.google.common.util.concurrent.ListenableFuture<Trial> |
stopTrial(StopTrialRequest request)
Stops a Trial.
|
com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation> |
suggestTrials(SuggestTrialsRequest request)
Adds one or more Trials to a Study, with parameter values
suggested by Vertex AI Vizier.
|
protected VizierServiceGrpc.VizierServiceFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
build in class io.grpc.stub.AbstractStub<VizierServiceGrpc.VizierServiceFutureStub>public com.google.common.util.concurrent.ListenableFuture<Study> createStudy(CreateStudyRequest request)
Creates a Study. A resource name will be generated after creation of the Study.
public com.google.common.util.concurrent.ListenableFuture<Study> getStudy(GetStudyRequest request)
Gets a Study by name.
public com.google.common.util.concurrent.ListenableFuture<ListStudiesResponse> listStudies(ListStudiesRequest request)
Lists all the studies in a region for an associated project.
public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> deleteStudy(DeleteStudyRequest request)
Deletes a Study.
public com.google.common.util.concurrent.ListenableFuture<Study> lookupStudy(LookupStudyRequest request)
Looks a study up using the user-defined display_name field instead of the fully qualified resource name.
public com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation> suggestTrials(SuggestTrialsRequest request)
Adds one or more Trials to a Study, with parameter values suggested by Vertex AI Vizier. Returns a long-running operation associated with the generation of Trial suggestions. When this long-running operation succeeds, it will contain a [SuggestTrialsResponse][google.cloud.aiplatform.v1beta1.SuggestTrialsResponse].
public com.google.common.util.concurrent.ListenableFuture<Trial> createTrial(CreateTrialRequest request)
Adds a user provided Trial to a Study.
public com.google.common.util.concurrent.ListenableFuture<Trial> getTrial(GetTrialRequest request)
Gets a Trial.
public com.google.common.util.concurrent.ListenableFuture<ListTrialsResponse> listTrials(ListTrialsRequest request)
Lists the Trials associated with a Study.
public com.google.common.util.concurrent.ListenableFuture<Trial> addTrialMeasurement(AddTrialMeasurementRequest request)
Adds a measurement of the objective metrics to a Trial. This measurement is assumed to have been taken before the Trial is complete.
public com.google.common.util.concurrent.ListenableFuture<Trial> completeTrial(CompleteTrialRequest request)
Marks a Trial as complete.
public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> deleteTrial(DeleteTrialRequest request)
Deletes a Trial.
public com.google.common.util.concurrent.ListenableFuture<com.google.longrunning.Operation> checkTrialEarlyStoppingState(CheckTrialEarlyStoppingStateRequest request)
Checks whether a Trial should stop or not. Returns a long-running operation. When the operation is successful, it will contain a [CheckTrialEarlyStoppingStateResponse][google.cloud.aiplatform.v1beta1.CheckTrialEarlyStoppingStateResponse].
public com.google.common.util.concurrent.ListenableFuture<Trial> stopTrial(StopTrialRequest request)
Stops a Trial.
public com.google.common.util.concurrent.ListenableFuture<ListOptimalTrialsResponse> listOptimalTrials(ListOptimalTrialsRequest request)
Lists the pareto-optimal Trials for multi-objective Study or the optimal Trials for single-objective Study. The definition of pareto-optimal can be checked in wiki page. https://en.wikipedia.org/wiki/Pareto_efficiency
Copyright © 2024 Google LLC. All rights reserved.