Struct tensorflow::ops::SparseReorder
source · pub struct SparseReorder { /* private fields */ }
Expand description
Builder for the SparseReorder
operation.
Implementations§
source§impl SparseReorder
impl SparseReorder
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>>(
&self,
input_indices: O0,
input_values: O1,
input_shape: O2,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>, O2: Into<Output>>( &self, input_indices: O0, input_values: O1, input_shape: O2, scope: &mut Scope ) -> Result<Operation>
Builds the SparseReorder
operation.
sourcepub fn build_instance(
&self,
input_indices: Output,
input_values: Output,
input_shape: Output,
scope: &mut Scope
) -> Result<SparseReorderInst>
pub fn build_instance( &self, input_indices: Output, input_values: Output, input_shape: Output, scope: &mut Scope ) -> Result<SparseReorderInst>
Builds a new instance of ‘SparseReorder’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations§
source§impl Debug for SparseReorder
impl Debug for SparseReorder
source§impl Default for SparseReorder
impl Default for SparseReorder
source§fn default() -> SparseReorder
fn default() -> SparseReorder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for SparseReorder
impl Send for SparseReorder
impl Sync for SparseReorder
impl Unpin for SparseReorder
impl UnwindSafe for SparseReorder
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