pub struct FisherConfig {
pub eps: f32,
pub max_iters: usize,
pub tol: f32,
}Expand description
Fisher metric configuration
Fields§
§eps: f32Regularization epsilon for numerical stability
max_iters: usizeMaximum CG iterations
tol: f32Convergence threshold
Trait Implementations§
Source§impl Clone for FisherConfig
impl Clone for FisherConfig
Source§fn clone(&self) -> FisherConfig
fn clone(&self) -> FisherConfig
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 FisherConfig
impl Debug for FisherConfig
Source§impl Default for FisherConfig
impl Default for FisherConfig
Source§impl<'de> Deserialize<'de> for FisherConfig
impl<'de> Deserialize<'de> for FisherConfig
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
Auto Trait Implementations§
impl Freeze for FisherConfig
impl RefUnwindSafe for FisherConfig
impl Send for FisherConfig
impl Sync for FisherConfig
impl Unpin for FisherConfig
impl UnwindSafe for FisherConfig
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