pub struct MiniBatchDictionaryLearning {
pub components: Array2<f64>,
pub n_components: usize,
pub alpha: f64,
pub batch_size: usize,
pub n_iter: usize,
}Expand description
Fitted MiniBatchDictionaryLearning.
Fields§
§components: Array2<f64>Dictionary (n_components × d).
n_components: usizeKept rank.
alpha: f64L1 penalty α used.
batch_size: usizeBatch size.
n_iter: usizeIterations run.
Implementations§
Source§impl MiniBatchDictionaryLearning
impl MiniBatchDictionaryLearning
Trait Implementations§
Source§impl Clone for MiniBatchDictionaryLearning
impl Clone for MiniBatchDictionaryLearning
Source§fn clone(&self) -> MiniBatchDictionaryLearning
fn clone(&self) -> MiniBatchDictionaryLearning
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MiniBatchDictionaryLearning
impl Debug for MiniBatchDictionaryLearning
Source§impl<'de> Deserialize<'de> for MiniBatchDictionaryLearning
impl<'de> Deserialize<'de> for MiniBatchDictionaryLearning
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for MiniBatchDictionaryLearning
Auto Trait Implementations§
impl Freeze for MiniBatchDictionaryLearning
impl RefUnwindSafe for MiniBatchDictionaryLearning
impl Send for MiniBatchDictionaryLearning
impl Sync for MiniBatchDictionaryLearning
impl Unpin for MiniBatchDictionaryLearning
impl UnsafeUnpin for MiniBatchDictionaryLearning
impl UnwindSafe for MiniBatchDictionaryLearning
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