pub struct LSTMNetworkCache {
pub cell_caches: Vec<LSTMCellCache>,
}
Expand description
Holds cached values for all layers during network forward pass
Fields§
§cell_caches: Vec<LSTMCellCache>
Trait Implementations§
Source§impl Clone for LSTMNetworkCache
impl Clone for LSTMNetworkCache
Source§fn clone(&self) -> LSTMNetworkCache
fn clone(&self) -> LSTMNetworkCache
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 LSTMNetworkCache
impl RefUnwindSafe for LSTMNetworkCache
impl Send for LSTMNetworkCache
impl Sync for LSTMNetworkCache
impl Unpin for LSTMNetworkCache
impl UnwindSafe for LSTMNetworkCache
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