pub struct FinalHyperParameterTuningJobObjectiveMetric {
pub metric_name: String,
pub type_: Option<String>,
pub value: f32,
}
Expand description
Shows the final value for the objective metric for a training job that was launched by a hyperparameter tuning job. You define the objective metric in the HyperParameterTuningJobObjective
parameter of HyperParameterTuningJobConfig.
Fields§
§metric_name: String
The name of the objective metric.
type_: Option<String>
Whether to minimize or maximize the objective metric. Valid values are Minimize and Maximize.
value: f32
The value of the objective metric.
Trait Implementations§
Source§impl Clone for FinalHyperParameterTuningJobObjectiveMetric
impl Clone for FinalHyperParameterTuningJobObjectiveMetric
Source§fn clone(&self) -> FinalHyperParameterTuningJobObjectiveMetric
fn clone(&self) -> FinalHyperParameterTuningJobObjectiveMetric
Returns a duplicate 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 Default for FinalHyperParameterTuningJobObjectiveMetric
impl Default for FinalHyperParameterTuningJobObjectiveMetric
Source§fn default() -> FinalHyperParameterTuningJobObjectiveMetric
fn default() -> FinalHyperParameterTuningJobObjectiveMetric
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FinalHyperParameterTuningJobObjectiveMetric
impl<'de> Deserialize<'de> for FinalHyperParameterTuningJobObjectiveMetric
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 FinalHyperParameterTuningJobObjectiveMetric
impl PartialEq for FinalHyperParameterTuningJobObjectiveMetric
Source§fn eq(&self, other: &FinalHyperParameterTuningJobObjectiveMetric) -> bool
fn eq(&self, other: &FinalHyperParameterTuningJobObjectiveMetric) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FinalHyperParameterTuningJobObjectiveMetric
Auto Trait Implementations§
impl Freeze for FinalHyperParameterTuningJobObjectiveMetric
impl RefUnwindSafe for FinalHyperParameterTuningJobObjectiveMetric
impl Send for FinalHyperParameterTuningJobObjectiveMetric
impl Sync for FinalHyperParameterTuningJobObjectiveMetric
impl Unpin for FinalHyperParameterTuningJobObjectiveMetric
impl UnwindSafe for FinalHyperParameterTuningJobObjectiveMetric
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