pub struct TrainingSpectralSnapshot {
pub beta_per_layer: Vec<f32>,
pub k_eigenvalue_per_layer: Vec<f32>,
pub spatial_determinant_per_layer: Vec<f32>,
pub lifted_determinant_per_layer: Vec<f32>,
pub regime_per_layer: Vec<DeltaRegime>,
pub beta_histogram: BetaHistogram,
pub k_coherence_per_layer: Vec<f32>,
pub correction_norm_per_layer: Vec<f32>,
}Fields§
§beta_per_layer: Vec<f32>§k_eigenvalue_per_layer: Vec<f32>§spatial_determinant_per_layer: Vec<f32>§lifted_determinant_per_layer: Vec<f32>§regime_per_layer: Vec<DeltaRegime>§beta_histogram: BetaHistogram§k_coherence_per_layer: Vec<f32>§correction_norm_per_layer: Vec<f32>Trait Implementations§
Source§impl Clone for TrainingSpectralSnapshot
impl Clone for TrainingSpectralSnapshot
Source§fn clone(&self) -> TrainingSpectralSnapshot
fn clone(&self) -> TrainingSpectralSnapshot
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 TrainingSpectralSnapshot
impl Debug for TrainingSpectralSnapshot
Source§impl<'de> Deserialize<'de> for TrainingSpectralSnapshot
impl<'de> Deserialize<'de> for TrainingSpectralSnapshot
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
Source§impl From<&SpectralDiagnostics> for TrainingSpectralSnapshot
impl From<&SpectralDiagnostics> for TrainingSpectralSnapshot
Source§fn from(spectral: &SpectralDiagnostics) -> Self
fn from(spectral: &SpectralDiagnostics) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TrainingSpectralSnapshot
impl PartialEq for TrainingSpectralSnapshot
Source§impl Serialize for TrainingSpectralSnapshot
impl Serialize for TrainingSpectralSnapshot
impl StructuralPartialEq for TrainingSpectralSnapshot
Auto Trait Implementations§
impl Freeze for TrainingSpectralSnapshot
impl RefUnwindSafe for TrainingSpectralSnapshot
impl Send for TrainingSpectralSnapshot
impl Sync for TrainingSpectralSnapshot
impl Unpin for TrainingSpectralSnapshot
impl UnsafeUnpin for TrainingSpectralSnapshot
impl UnwindSafe for TrainingSpectralSnapshot
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