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