Struct tensorflow::ops::LSTMBlockCellGrad
source · pub struct LSTMBlockCellGrad { /* private fields */ }
Expand description
Builder for the LSTMBlockCellGrad
operation.
Implementations§
source§impl LSTMBlockCellGrad
impl LSTMBlockCellGrad
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>>(
&self,
x: O0,
cs_prev: O1,
h_prev: O2,
w: O3,
wci: O4,
wcf: O5,
wco: O6,
b: O7,
i: O8,
cs: O9,
f: O10,
o: O11,
ci: O12,
co: O13,
cs_grad: O14,
h_grad: O15,
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>>( &self, x: O0, cs_prev: O1, h_prev: O2, w: O3, wci: O4, wcf: O5, wco: O6, b: O7, i: O8, cs: O9, f: O10, o: O11, ci: O12, co: O13, cs_grad: O14, h_grad: O15, scope: &mut Scope ) -> Result<Operation>
Builds the LSTMBlockCellGrad
operation.
sourcepub fn build_instance(
&self,
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,
cs_grad: Output,
h_grad: Output,
scope: &mut Scope
) -> Result<LSTMBlockCellGradInst>
pub fn build_instance( &self, 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, cs_grad: Output, h_grad: Output, scope: &mut Scope ) -> Result<LSTMBlockCellGradInst>
Builds a new instance of ‘LSTMBlockCellGrad’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for LSTMBlockCellGrad
impl Debug for LSTMBlockCellGrad
source§impl Default for LSTMBlockCellGrad
impl Default for LSTMBlockCellGrad
source§fn default() -> LSTMBlockCellGrad
fn default() -> LSTMBlockCellGrad
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for LSTMBlockCellGrad
impl Send for LSTMBlockCellGrad
impl Sync for LSTMBlockCellGrad
impl Unpin for LSTMBlockCellGrad
impl UnwindSafe for LSTMBlockCellGrad
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