pub struct LstmDataFloat32<'data> {
pub(crate) model: ModelType,
pub(crate) dic: ZeroMap<'data, UnvalidatedStr, u16>,
pub(crate) embedding: LstmMatrix2<'data>,
pub(crate) fw_w: LstmMatrix3<'data>,
pub(crate) fw_u: LstmMatrix3<'data>,
pub(crate) fw_b: LstmMatrix2<'data>,
pub(crate) bw_w: LstmMatrix3<'data>,
pub(crate) bw_u: LstmMatrix3<'data>,
pub(crate) bw_b: LstmMatrix2<'data>,
pub(crate) time_w: LstmMatrix3<'data>,
pub(crate) time_b: LstmMatrix1<'data>,
}
Expand description
The struct that stores a LSTM model.
🚧 This code is considered unstable; it may change at any time, in breaking or non-breaking ways,
including in SemVer minor releases. While the serde representation of data structs is guaranteed
to be stable, their Rust representation might not be. Use with caution.
Fields§
§model: ModelType
Type of the model
dic: ZeroMap<'data, UnvalidatedStr, u16>
The grapheme cluster dictionary used to train the model
embedding: LstmMatrix2<'data>
The embedding layer. Shape (dic.len + 1, e)
fw_w: LstmMatrix3<'data>
The forward layer’s first matrix. Shape (h, 4, e)
fw_u: LstmMatrix3<'data>
The forward layer’s second matrix. Shape (h, 4, h)
fw_b: LstmMatrix2<'data>
The forward layer’s bias. Shape (h, 4)
bw_w: LstmMatrix3<'data>
The backward layer’s first matrix. Shape (h, 4, e)
bw_u: LstmMatrix3<'data>
The backward layer’s second matrix. Shape (h, 4, h)
bw_b: LstmMatrix2<'data>
The backward layer’s bias. Shape (h, 4)
time_w: LstmMatrix3<'data>
The output layer’s weights. Shape (2, 4, h)
time_b: LstmMatrix1<'data>
The output layer’s bias. Shape (4)
Trait Implementations§
Source§impl<'data> Clone for LstmDataFloat32<'data>
impl<'data> Clone for LstmDataFloat32<'data>
Source§fn clone(&self) -> LstmDataFloat32<'data>
fn clone(&self) -> LstmDataFloat32<'data>
Returns a copy 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 moreSource§impl<'data> Debug for LstmDataFloat32<'data>
impl<'data> Debug for LstmDataFloat32<'data>
Source§impl<'data> PartialEq for LstmDataFloat32<'data>
impl<'data> PartialEq for LstmDataFloat32<'data>
Source§impl<'a> Yokeable<'a> for LstmDataFloat32<'static>
impl<'a> Yokeable<'a> for LstmDataFloat32<'static>
Source§type Output = LstmDataFloat32<'a>
type Output = LstmDataFloat32<'a>
This type MUST be
Self
with the 'static
replaced with 'a
, i.e. Self<'a>
Source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
Source§impl<'zf, 'zf_inner> ZeroFrom<'zf, LstmDataFloat32<'zf_inner>> for LstmDataFloat32<'zf>
impl<'zf, 'zf_inner> ZeroFrom<'zf, LstmDataFloat32<'zf_inner>> for LstmDataFloat32<'zf>
Source§fn zero_from(this: &'zf LstmDataFloat32<'zf_inner>) -> Self
fn zero_from(this: &'zf LstmDataFloat32<'zf_inner>) -> Self
Clone the other
C
into a struct that may retain references into C
.impl<'data> StructuralPartialEq for LstmDataFloat32<'data>
Auto Trait Implementations§
impl<'data> Freeze for LstmDataFloat32<'data>
impl<'data> RefUnwindSafe for LstmDataFloat32<'data>
impl<'data> Send for LstmDataFloat32<'data>
impl<'data> Sync for LstmDataFloat32<'data>
impl<'data> Unpin for LstmDataFloat32<'data>
impl<'data> UnwindSafe for LstmDataFloat32<'data>
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