Struct google_api_proto::google::cloud::aiplatform::v1::Trial
source · pub struct Trial {
pub name: String,
pub id: String,
pub state: i32,
pub parameters: Vec<Parameter>,
pub final_measurement: Option<Measurement>,
pub measurements: Vec<Measurement>,
pub start_time: Option<Timestamp>,
pub end_time: Option<Timestamp>,
pub client_id: String,
pub infeasible_reason: String,
pub custom_job: String,
pub web_access_uris: BTreeMap<String, String>,
}
Expand description
A message representing a Trial. A Trial contains a unique set of Parameters that has been or will be evaluated, along with the objective metrics got by running the Trial.
Fields§
§name: String
Output only. Resource name of the Trial assigned by the service.
id: String
Output only. The identifier of the Trial assigned by the service.
state: i32
Output only. The detailed state of the Trial.
parameters: Vec<Parameter>
Output only. The parameters of the Trial.
final_measurement: Option<Measurement>
Output only. The final measurement containing the objective value.
measurements: Vec<Measurement>
Output only. A list of measurements that are strictly lexicographically ordered by their induced tuples (steps, elapsed_duration). These are used for early stopping computations.
start_time: Option<Timestamp>
Output only. Time when the Trial was started.
end_time: Option<Timestamp>
Output only. Time when the Trial’s status changed to SUCCEEDED
or
INFEASIBLE
.
client_id: String
Output only. The identifier of the client that originally requested this Trial. Each client is identified by a unique client_id. When a client asks for a suggestion, Vertex AI Vizier will assign it a Trial. The client should evaluate the Trial, complete it, and report back to Vertex AI Vizier. If suggestion is asked again by same client_id before the Trial is completed, the same Trial will be returned. Multiple clients with different client_ids can ask for suggestions simultaneously, each of them will get their own Trial.
infeasible_reason: String
Output only. A human readable string describing why the Trial is
infeasible. This is set only if Trial state is INFEASIBLE
.
custom_job: String
Output only. The CustomJob name linked to the Trial. It’s set for a HyperparameterTuningJob’s Trial.
web_access_uris: BTreeMap<String, String>
Output only. URIs for accessing interactive
shells
(one URI for each training node). Only available if this trial is part of
a
[HyperparameterTuningJob][google.cloud.aiplatform.v1.HyperparameterTuningJob]
and the job’s
[trial_job_spec.enable_web_access][google.cloud.aiplatform.v1.CustomJobSpec.enable_web_access]
field is true
.
The keys are names of each node used for the trial; for example,
workerpool0-0
for the primary node, workerpool1-0
for the first node in
the second worker pool, and workerpool1-1
for the second node in the
second worker pool.
The values are the URIs for each node’s interactive shell.
Implementations§
Trait Implementations§
source§impl Message for Trial
impl Message for Trial
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for Trial
impl PartialEq for Trial
impl StructuralPartialEq for Trial
Auto Trait Implementations§
impl Freeze for Trial
impl RefUnwindSafe for Trial
impl Send for Trial
impl Sync for Trial
impl Unpin for Trial
impl UnwindSafe for Trial
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request