Struct tensorflow::ops::BlockLSTMGrad
source · pub struct BlockLSTMGrad { /* private fields */ }
Expand description
Builder for the BlockLSTMGrad
operation.
Implementations§
source§impl BlockLSTMGrad
impl BlockLSTMGrad
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>, O9: Into<Output>, O10: Into<Output>, O11: Into<Output>, O12: Into<Output>, O13: Into<Output>, O14: Into<Output>, O15: Into<Output>, O16: Into<Output>, O17: 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,
i: O9,
cs: O10,
f: O11,
o: O12,
ci: O13,
co: O14,
h: O15,
cs_grad: O16,
h_grad: O17,
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>, O9: Into<Output>, O10: Into<Output>, O11: Into<Output>, O12: Into<Output>, O13: Into<Output>, O14: Into<Output>, O15: Into<Output>, O16: Into<Output>, O17: 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, i: O9, cs: O10, f: O11, o: O12, ci: O13, co: O14, h: O15, cs_grad: O16, h_grad: O17, scope: &mut Scope ) -> Result<Operation>
Builds the BlockLSTMGrad
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,
i: Output,
cs: Output,
f: Output,
o: Output,
ci: Output,
co: Output,
h: Output,
cs_grad: Output,
h_grad: Output,
scope: &mut Scope
) -> Result<BlockLSTMGradInst>
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, i: Output, cs: Output, f: Output, o: Output, ci: Output, co: Output, h: Output, cs_grad: Output, h_grad: Output, scope: &mut Scope ) -> Result<BlockLSTMGradInst>
Builds a new instance of ‘BlockLSTMGrad’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for BlockLSTMGrad
impl Debug for BlockLSTMGrad
source§impl Default for BlockLSTMGrad
impl Default for BlockLSTMGrad
source§fn default() -> BlockLSTMGrad
fn default() -> BlockLSTMGrad
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for BlockLSTMGrad
impl Send for BlockLSTMGrad
impl Sync for BlockLSTMGrad
impl Unpin for BlockLSTMGrad
impl UnwindSafe for BlockLSTMGrad
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