pub struct EvalBaselineReport {
pub model_id: String,
pub available: bool,
pub current_artifacts: u64,
pub metrics: EvalMetrics,
pub delta_mrr_at_10: f64,
pub delta_recall_at_10: f64,
pub delta_path_hit_rate: f64,
pub delta_symbol_hit_rate: f64,
}Fields§
§model_id: String§available: bool§current_artifacts: u64§metrics: EvalMetrics§delta_mrr_at_10: f64§delta_recall_at_10: f64§delta_path_hit_rate: f64§delta_symbol_hit_rate: f64Trait Implementations§
Source§impl Debug for EvalBaselineReport
impl Debug for EvalBaselineReport
Auto Trait Implementations§
impl Freeze for EvalBaselineReport
impl RefUnwindSafe for EvalBaselineReport
impl Send for EvalBaselineReport
impl Sync for EvalBaselineReport
impl Unpin for EvalBaselineReport
impl UnsafeUnpin for EvalBaselineReport
impl UnwindSafe for EvalBaselineReport
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more