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