pub struct MultiTurnEvaluation {
pub mean_accuracy: Option<f64>,
pub mean_latency: Option<f64>,
pub total_cost: f64,
pub confidence_interval: f64,
pub n_runs: usize,
}Expand description
Multi-turn evaluation results.
Fields§
§mean_accuracy: Option<f64>Mean accuracy across runs.
mean_latency: Option<f64>Mean latency across runs.
total_cost: f64Total cost across runs.
confidence_interval: f64Confidence interval level.
n_runs: usizeNumber of runs performed.
Trait Implementations§
Source§impl Clone for MultiTurnEvaluation
impl Clone for MultiTurnEvaluation
Source§fn clone(&self) -> MultiTurnEvaluation
fn clone(&self) -> MultiTurnEvaluation
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 MultiTurnEvaluation
impl Debug for MultiTurnEvaluation
Source§impl<'de> Deserialize<'de> for MultiTurnEvaluation
impl<'de> Deserialize<'de> for MultiTurnEvaluation
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
Auto Trait Implementations§
impl Freeze for MultiTurnEvaluation
impl RefUnwindSafe for MultiTurnEvaluation
impl Send for MultiTurnEvaluation
impl Sync for MultiTurnEvaluation
impl Unpin for MultiTurnEvaluation
impl UnsafeUnpin for MultiTurnEvaluation
impl UnwindSafe for MultiTurnEvaluation
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