pub struct RuntimeHpoCandidateEvaluation {
pub proposal: RuntimeHpoProposal,
pub score: f64,
pub validation_reports: Vec<RegressionMetricReport>,
pub validation_predictions: VariantValidationPredictions,
pub lineage: Vec<LineageRecord>,
}Expand description
Scheduler-owned evidence retained for a successfully completed trial. Candidate OOF data remains report-only and is never reused as a training input; final SELECT/REFIT is intentionally outside this campaign call.
Fields§
§proposal: RuntimeHpoProposal§score: f64§validation_reports: Vec<RegressionMetricReport>§validation_predictions: VariantValidationPredictions§lineage: Vec<LineageRecord>Trait Implementations§
Source§impl Clone for RuntimeHpoCandidateEvaluation
impl Clone for RuntimeHpoCandidateEvaluation
Source§fn clone(&self) -> RuntimeHpoCandidateEvaluation
fn clone(&self) -> RuntimeHpoCandidateEvaluation
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 moreAuto Trait Implementations§
impl Freeze for RuntimeHpoCandidateEvaluation
impl RefUnwindSafe for RuntimeHpoCandidateEvaluation
impl Send for RuntimeHpoCandidateEvaluation
impl Sync for RuntimeHpoCandidateEvaluation
impl Unpin for RuntimeHpoCandidateEvaluation
impl UnsafeUnpin for RuntimeHpoCandidateEvaluation
impl UnwindSafe for RuntimeHpoCandidateEvaluation
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