pub struct JudgeVote {
pub model_ref: String,
pub score: f64,
pub cost_micros: u64,
pub detail: String,
}Expand description
One judge’s contribution. Kept per judge so a later question — “which judge was dragging the score?” — is answerable from stored data.
Fields§
§model_ref: String§score: f64Median of this judge’s own self-consistency samples.
cost_micros: u64§detail: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for JudgeVote
impl<'de> Deserialize<'de> for JudgeVote
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for JudgeVote
Auto Trait Implementations§
impl Freeze for JudgeVote
impl RefUnwindSafe for JudgeVote
impl Send for JudgeVote
impl Sync for JudgeVote
impl Unpin for JudgeVote
impl UnsafeUnpin for JudgeVote
impl UnwindSafe for JudgeVote
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