pub struct BenchmarkBaseline {
pub suite: BenchmarkSuite,
pub model_name: String,
pub accuracy: f64,
}Expand description
Published baseline accuracy for reference comparison.
Fields§
§suite: BenchmarkSuite§model_name: StringBaseline model name (e.g. “GPT-4o (OpenAI, April 2025)”).
accuracy: f64Trait Implementations§
Source§impl Clone for BenchmarkBaseline
impl Clone for BenchmarkBaseline
Source§fn clone(&self) -> BenchmarkBaseline
fn clone(&self) -> BenchmarkBaseline
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 BenchmarkBaseline
impl RefUnwindSafe for BenchmarkBaseline
impl Send for BenchmarkBaseline
impl Sync for BenchmarkBaseline
impl Unpin for BenchmarkBaseline
impl UnsafeUnpin for BenchmarkBaseline
impl UnwindSafe for BenchmarkBaseline
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