Struct google_cloud_bigquery::http::model::HparamTuningTrial
source · pub struct HparamTuningTrial {
pub trial_id: Option<i64>,
pub start_time_ms: Option<i64>,
pub end_time_ms: Option<i64>,
pub hparams: Option<TrainingOptions>,
pub evaluation_metrics: Option<EvaluationMetrics>,
pub status: Option<TrialStatus>,
pub error_message: Option<String>,
pub training_loss: Option<f64>,
pub eval_loss: Option<f64>,
pub hparam_tuning_evaluation_metrics: Option<EvaluationMetrics>,
}Fields§
§trial_id: Option<i64>1-based index of the trial.
start_time_ms: Option<i64>Starting time of the trial.
end_time_ms: Option<i64>Ending time of the trial.
hparams: Option<TrainingOptions>The hyperprameters selected for this trial.
evaluation_metrics: Option<EvaluationMetrics>Evaluation metrics of this trial calculated on the test data. Empty in Job API.
status: Option<TrialStatus>The status of the trial.
error_message: Option<String>Error message for FAILED and INFEASIBLE trial.
training_loss: Option<f64>Loss computed on the training data at the end of trial.
eval_loss: Option<f64>Loss computed on the eval data at the end of trial.
hparam_tuning_evaluation_metrics: Option<EvaluationMetrics>Hyperparameter tuning evaluation metrics of this trial calculated on the eval data . Unlike evaluationMetrics, only the fields corresponding to the hparamTuningObjectives are set.
Trait Implementations§
source§impl Clone for HparamTuningTrial
impl Clone for HparamTuningTrial
source§fn clone(&self) -> HparamTuningTrial
fn clone(&self) -> HparamTuningTrial
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for HparamTuningTrial
impl Debug for HparamTuningTrial
source§impl Default for HparamTuningTrial
impl Default for HparamTuningTrial
source§fn default() -> HparamTuningTrial
fn default() -> HparamTuningTrial
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for HparamTuningTrial
impl<'de> Deserialize<'de> for HparamTuningTrial
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for HparamTuningTrial
impl PartialEq for HparamTuningTrial
source§fn eq(&self, other: &HparamTuningTrial) -> bool
fn eq(&self, other: &HparamTuningTrial) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for HparamTuningTrial
impl Serialize for HparamTuningTrial
impl StructuralPartialEq for HparamTuningTrial
Auto Trait Implementations§
impl Freeze for HparamTuningTrial
impl RefUnwindSafe for HparamTuningTrial
impl Send for HparamTuningTrial
impl Sync for HparamTuningTrial
impl Unpin for HparamTuningTrial
impl UnwindSafe for HparamTuningTrial
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
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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>
Wrap the input message
T in a tonic::Request