pub struct ModelRanks {
pub overall: Option<f32>,
pub coding: Option<f32>,
pub math: Option<f32>,
pub hard_prompts: Option<f32>,
pub instruction_following: Option<f32>,
pub vision_rank: Option<f32>,
pub style_control: Option<f32>,
}Expand description
Arena and task-specific rankings, normalized to 0.0-100.0.
Fields§
§overall: Option<f32>Overall arena score (0.0-100.0).
coding: Option<f32>Coding task score. Future: when category data available.
math: Option<f32>Math task score. Future.
hard_prompts: Option<f32>Hard prompts score. Future.
instruction_following: Option<f32>Instruction following score. Future.
vision_rank: Option<f32>Vision task rank. Future.
style_control: Option<f32>Style control score. Future.
Trait Implementations§
Source§impl Clone for ModelRanks
impl Clone for ModelRanks
Source§fn clone(&self) -> ModelRanks
fn clone(&self) -> ModelRanks
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 Debug for ModelRanks
impl Debug for ModelRanks
Source§impl PartialEq for ModelRanks
impl PartialEq for ModelRanks
impl Copy for ModelRanks
impl StructuralPartialEq for ModelRanks
Auto Trait Implementations§
impl Freeze for ModelRanks
impl RefUnwindSafe for ModelRanks
impl Send for ModelRanks
impl Sync for ModelRanks
impl Unpin for ModelRanks
impl UnwindSafe for ModelRanks
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