Struct tensorflow::ops::ArgMin
source · [−]pub struct ArgMin { /* private fields */ }
Expand description
Builder for the ArgMin
operation.
Implementations
sourceimpl ArgMin
impl ArgMin
sourcepub fn output_type<ArgType: Into<DataType>>(self, value: ArgType) -> Self
pub fn output_type<ArgType: Into<DataType>>(self, value: ArgType) -> Self
Sets the output_type
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,
input: O0,
dimension: O1,
scope: &mut Scope
) -> Result<Operation>
pub fn build<O0: Into<Output>, O1: Into<Output>>(
&self,
input: O0,
dimension: O1,
scope: &mut Scope
) -> Result<Operation>
Builds the ArgMin
operation.
sourcepub fn build_instance(
&self,
input: Output,
dimension: Output,
scope: &mut Scope
) -> Result<ArgMinInst>
pub fn build_instance(
&self,
input: Output,
dimension: Output,
scope: &mut Scope
) -> Result<ArgMinInst>
Builds a new instance of ‘ArgMin’ Operation with it’s Outputs and Inputs exposed as methods.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ArgMin
impl Send for ArgMin
impl Sync for ArgMin
impl Unpin for ArgMin
impl UnwindSafe for ArgMin
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more