pub struct ConfidenceHead {
pub w: Vec<f32>,
pub b: f32,
pub in_dim: usize,
pub with_markov: bool,
}Expand description
AcceptRatePredictor: raw linear proj over [hidden ; markov_prev_embedding(rank)] (with_markov=true on the q38 arm-a export) — output is the PRE-sigmoid scalar.
Fields§
§w: Vec<f32>§b: f32§in_dim: usize§with_markov: boolAuto Trait Implementations§
impl Freeze for ConfidenceHead
impl RefUnwindSafe for ConfidenceHead
impl Send for ConfidenceHead
impl Sync for ConfidenceHead
impl Unpin for ConfidenceHead
impl UnsafeUnpin for ConfidenceHead
impl UnwindSafe for ConfidenceHead
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