pub struct EmlTree { /* private fields */ }Expand description
Depth-configurable EML evaluation tree.
The tree maps input_count features through layers of affine mixing
and EML operators to produce a single scalar output.
§Architecture
- Level 0:
2^(depth-1)affine combinations of input features (3 params each via softmax3 mixing). - Levels 1..depth-1: EML nodes halving the width at each level, with mixing weights.
- Output: final EML node producing a single scalar.
Implementations§
Source§impl EmlTree
impl EmlTree
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EmlTree
impl RefUnwindSafe for EmlTree
impl Send for EmlTree
impl Sync for EmlTree
impl Unpin for EmlTree
impl UnsafeUnpin for EmlTree
impl UnwindSafe for EmlTree
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