Struct tensorflow::ops::GRUBlockCellGrad
source · pub struct GRUBlockCellGrad { /* private fields */ }
Expand description
Builder for the GRUBlockCellGrad
operation.
Implementations§
source§impl GRUBlockCellGrad
impl GRUBlockCellGrad
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>>(
&self,
x: O0,
h_prev: O1,
w_ru: O2,
w_c: O3,
b_ru: O4,
b_c: O5,
r: O6,
u: O7,
c: O8,
d_h: O9,
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>>( &self, x: O0, h_prev: O1, w_ru: O2, w_c: O3, b_ru: O4, b_c: O5, r: O6, u: O7, c: O8, d_h: O9, scope: &mut Scope ) -> Result<Operation>
Builds the GRUBlockCellGrad
operation.
sourcepub fn build_instance(
&self,
x: Output,
h_prev: Output,
w_ru: Output,
w_c: Output,
b_ru: Output,
b_c: Output,
r: Output,
u: Output,
c: Output,
d_h: Output,
scope: &mut Scope
) -> Result<GRUBlockCellGradInst>
pub fn build_instance( &self, x: Output, h_prev: Output, w_ru: Output, w_c: Output, b_ru: Output, b_c: Output, r: Output, u: Output, c: Output, d_h: Output, scope: &mut Scope ) -> Result<GRUBlockCellGradInst>
Builds a new instance of ‘GRUBlockCellGrad’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for GRUBlockCellGrad
impl Debug for GRUBlockCellGrad
source§impl Default for GRUBlockCellGrad
impl Default for GRUBlockCellGrad
source§fn default() -> GRUBlockCellGrad
fn default() -> GRUBlockCellGrad
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for GRUBlockCellGrad
impl Send for GRUBlockCellGrad
impl Sync for GRUBlockCellGrad
impl Unpin for GRUBlockCellGrad
impl UnwindSafe for GRUBlockCellGrad
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