pub struct PeepholeLSTMCell {Show 15 fields
pub w_xi: Array2<f64>,
pub w_hi: Array2<f64>,
pub b_i: Array2<f64>,
pub w_ci: Array2<f64>,
pub w_xf: Array2<f64>,
pub w_hf: Array2<f64>,
pub b_f: Array2<f64>,
pub w_cf: Array2<f64>,
pub w_xc: Array2<f64>,
pub w_hc: Array2<f64>,
pub b_c: Array2<f64>,
pub w_xo: Array2<f64>,
pub w_ho: Array2<f64>,
pub b_o: Array2<f64>,
pub w_co: Array2<f64>,
}Expand description
Peephole LSTM cell with direct connections from cell state to gates
Fields§
§w_xi: Array2<f64>§w_hi: Array2<f64>§b_i: Array2<f64>§w_ci: Array2<f64>§w_xf: Array2<f64>§w_hf: Array2<f64>§b_f: Array2<f64>§w_cf: Array2<f64>§w_xc: Array2<f64>§w_hc: Array2<f64>§b_c: Array2<f64>§w_xo: Array2<f64>§w_ho: Array2<f64>§b_o: Array2<f64>§w_co: Array2<f64>Implementations§
Auto Trait Implementations§
impl Freeze for PeepholeLSTMCell
impl RefUnwindSafe for PeepholeLSTMCell
impl Send for PeepholeLSTMCell
impl Sync for PeepholeLSTMCell
impl Unpin for PeepholeLSTMCell
impl UnwindSafe for PeepholeLSTMCell
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