pub struct LSTMBlockCell { /* private fields */ }
Expand description
Builder for the LSTMBlockCell
operation.
Implementations§
Source§impl LSTMBlockCell
impl LSTMBlockCell
Sourcepub fn forget_bias<ArgType: Into<f32>>(self, value: ArgType) -> Self
pub fn forget_bias<ArgType: Into<f32>>(self, value: ArgType) -> Self
Sets the forget_bias
attribute.
Sourcepub fn cell_clip<ArgType: Into<f32>>(self, value: ArgType) -> Self
pub fn cell_clip<ArgType: Into<f32>>(self, value: ArgType) -> Self
Sets the cell_clip
attribute.
Sourcepub fn use_peephole<ArgType: Into<bool>>(self, value: ArgType) -> Self
pub fn use_peephole<ArgType: Into<bool>>(self, value: ArgType) -> Self
Sets the use_peephole
attribute.
Sourcepub fn add_control_input(self, op: Operation) -> Self
pub fn add_control_input(self, op: Operation) -> Self
Adds a control input.
Sourcepub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>, O7: Into<Output>>(
&self,
x: O0,
cs_prev: O1,
h_prev: O2,
w: O3,
wci: O4,
wcf: O5,
wco: O6,
b: O7,
scope: &mut Scope,
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>, O3: Into<Output>, O4: Into<Output>, O5: Into<Output>, O6: Into<Output>, O7: Into<Output>>( &self, x: O0, cs_prev: O1, h_prev: O2, w: O3, wci: O4, wcf: O5, wco: O6, b: O7, scope: &mut Scope, ) -> Result<Operation>
Builds the LSTMBlockCell
operation.
Trait Implementations§
Source§impl Debug for LSTMBlockCell
impl Debug for LSTMBlockCell
Source§impl Default for LSTMBlockCell
impl Default for LSTMBlockCell
Source§fn default() -> LSTMBlockCell
fn default() -> LSTMBlockCell
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LSTMBlockCell
impl RefUnwindSafe for LSTMBlockCell
impl Send for LSTMBlockCell
impl Sync for LSTMBlockCell
impl Unpin for LSTMBlockCell
impl UnwindSafe for LSTMBlockCell
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