Struct tensorflow::ops::BlockLSTM
source · pub struct BlockLSTM { /* private fields */ }
Expand description
Builder for the BlockLSTM
operation.
Implementations§
source§impl BlockLSTM
impl BlockLSTM
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>, O8: Into<Output>>(
&self,
seq_len_max: O0,
x: O1,
cs_prev: O2,
h_prev: O3,
w: O4,
wci: O5,
wcf: O6,
wco: O7,
b: O8,
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>, O8: Into<Output>>( &self, seq_len_max: O0, x: O1, cs_prev: O2, h_prev: O3, w: O4, wci: O5, wcf: O6, wco: O7, b: O8, scope: &mut Scope ) -> Result<Operation>
Builds the BlockLSTM
operation.
sourcepub fn build_instance(
&self,
seq_len_max: Output,
x: Output,
cs_prev: Output,
h_prev: Output,
w: Output,
wci: Output,
wcf: Output,
wco: Output,
b: Output,
scope: &mut Scope
) -> Result<BlockLSTMInst>
pub fn build_instance( &self, seq_len_max: Output, x: Output, cs_prev: Output, h_prev: Output, w: Output, wci: Output, wcf: Output, wco: Output, b: Output, scope: &mut Scope ) -> Result<BlockLSTMInst>
Builds a new instance of ‘BlockLSTM’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for BlockLSTM
impl Send for BlockLSTM
impl Sync for BlockLSTM
impl Unpin for BlockLSTM
impl UnwindSafe for BlockLSTM
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