pub struct AnalyticBackend {
config: AnalyticConfig,
}Expand description
Pure-Rust analytic feature extractor (non-differentiable).
Computes all temporal features using closed-form expressions. This is the baseline and fallback when no ML backend is available.
Fields§
§config: AnalyticConfigImplementations§
Source§impl AnalyticBackend
impl AnalyticBackend
Sourcepub fn with_config(config: AnalyticConfig) -> Self
pub fn with_config(config: AnalyticConfig) -> Self
Create with custom config.
Trait Implementations§
Source§impl Default for AnalyticBackend
impl Default for AnalyticBackend
Source§impl TemporalOps for AnalyticBackend
impl TemporalOps for AnalyticBackend
Auto Trait Implementations§
impl Freeze for AnalyticBackend
impl RefUnwindSafe for AnalyticBackend
impl Send for AnalyticBackend
impl Sync for AnalyticBackend
impl Unpin for AnalyticBackend
impl UnwindSafe for AnalyticBackend
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