pub struct RunRecord {
pub avg_score: Option<f64>,
pub created_at: Option<String>,
pub dataset: Option<String>,
pub items: Option<i32>,
pub judge_model: Option<String>,
pub model: Option<String>,
pub run_name: Option<String>,
pub scored: Option<i32>,
pub updated_at: Option<String>,
}Fields§
§avg_score: Option<f64>AvgScore is the mean over the scored examples.
created_at: Option<String>CreatedAt is when the run first landed.
dataset: Option<String>Dataset is the set that was scored.
items: Option<i32>Items is how many examples were attempted.
judge_model: Option<String>JudgeModel is the model that graded.
model: Option<String>Model is the model under test.
run_name: Option<String>RunName is the run’s label.
scored: Option<i32>Scored is how many produced a real score.
updated_at: Option<String>UpdatedAt is when the record last changed.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunRecord
impl<'de> Deserialize<'de> for RunRecord
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 RunRecord
Auto Trait Implementations§
impl Freeze for RunRecord
impl RefUnwindSafe for RunRecord
impl Send for RunRecord
impl Sync for RunRecord
impl Unpin for RunRecord
impl UnsafeUnpin for RunRecord
impl UnwindSafe for RunRecord
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