pub struct MethodsHpoCompletedReport {
pub trial_id: i64,
pub variant_id: VariantId,
pub terminal_state: MethodsHpoCompletedState,
pub score: f64,
pub report: RegressionMetricReport,
}Expand description
The sole report permitted to terminalize a persisted trial: the scalar cross-fold validation OOF average used by SELECT.
Fields§
§trial_id: i64§variant_id: VariantId§terminal_state: MethodsHpoCompletedStateOnly terminally completed trials may carry report-grade OOF evidence.
failed and pruned are deliberately not representable here.
score: f64§report: RegressionMetricReportTrait Implementations§
Source§impl Clone for MethodsHpoCompletedReport
impl Clone for MethodsHpoCompletedReport
Source§fn clone(&self) -> MethodsHpoCompletedReport
fn clone(&self) -> MethodsHpoCompletedReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MethodsHpoCompletedReport
impl Debug for MethodsHpoCompletedReport
Source§impl<'de> Deserialize<'de> for MethodsHpoCompletedReport
impl<'de> Deserialize<'de> for MethodsHpoCompletedReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MethodsHpoCompletedReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MethodsHpoCompletedReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for MethodsHpoCompletedReport
impl Serialize for MethodsHpoCompletedReport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for MethodsHpoCompletedReport
Auto Trait Implementations§
impl Freeze for MethodsHpoCompletedReport
impl RefUnwindSafe for MethodsHpoCompletedReport
impl Send for MethodsHpoCompletedReport
impl Sync for MethodsHpoCompletedReport
impl Unpin for MethodsHpoCompletedReport
impl UnsafeUnpin for MethodsHpoCompletedReport
impl UnwindSafe for MethodsHpoCompletedReport
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