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