Struct tensorflow::ops::LSTMBlockCell
source · 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 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