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