pub struct TuckerConfig {
pub ranks: Vec<usize>,
pub tolerance: f64,
pub max_iters: usize,
}Expand description
Tucker decomposition configuration
Fields§
§ranks: Vec<usize>Target ranks for each mode
tolerance: f64Tolerance for truncation
max_iters: usizeMax iterations for HOSVD power method
Trait Implementations§
Source§impl Clone for TuckerConfig
impl Clone for TuckerConfig
Source§fn clone(&self) -> TuckerConfig
fn clone(&self) -> TuckerConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TuckerConfig
impl Debug for TuckerConfig
Auto Trait Implementations§
impl Freeze for TuckerConfig
impl RefUnwindSafe for TuckerConfig
impl Send for TuckerConfig
impl Sync for TuckerConfig
impl Unpin for TuckerConfig
impl UnwindSafe for TuckerConfig
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