pub struct BiLSTMNetworkCache {
pub forward_caches: Vec<LSTMCellCache>,
pub backward_caches: Vec<LSTMCellCache>,
}
Expand description
Cache for bidirectional LSTM forward pass
Fields§
§forward_caches: Vec<LSTMCellCache>
§backward_caches: Vec<LSTMCellCache>
Trait Implementations§
Source§impl Clone for BiLSTMNetworkCache
impl Clone for BiLSTMNetworkCache
Source§fn clone(&self) -> BiLSTMNetworkCache
fn clone(&self) -> BiLSTMNetworkCache
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 moreAuto Trait Implementations§
impl Freeze for BiLSTMNetworkCache
impl RefUnwindSafe for BiLSTMNetworkCache
impl Send for BiLSTMNetworkCache
impl Sync for BiLSTMNetworkCache
impl Unpin for BiLSTMNetworkCache
impl UnwindSafe for BiLSTMNetworkCache
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