pub struct CascadeConfig {
pub model_sequence: Vec<String>,
pub confidence_thresholds: Vec<f64>,
pub enable_early_exit: bool,
pub max_models: usize,
}Expand description
Model cascade configuration.
Fields§
§model_sequence: Vec<String>Ordered list of model IDs (fast to accurate)
confidence_thresholds: Vec<f64>Confidence thresholds for each model
enable_early_exit: boolEnable early exit
max_models: usizeMaximum models to try
Implementations§
Trait Implementations§
Source§impl Clone for CascadeConfig
impl Clone for CascadeConfig
Source§fn clone(&self) -> CascadeConfig
fn clone(&self) -> CascadeConfig
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 CascadeConfig
impl Debug for CascadeConfig
Source§impl<'de> Deserialize<'de> for CascadeConfig
impl<'de> Deserialize<'de> for CascadeConfig
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 CascadeConfig
impl RefUnwindSafe for CascadeConfig
impl Send for CascadeConfig
impl Sync for CascadeConfig
impl Unpin for CascadeConfig
impl UnwindSafe for CascadeConfig
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