pub struct ModelTrainingTrace {
pub model_id: String,
pub variant: String,
pub n_fft: usize,
pub batch: usize,
pub train_steps: usize,
pub params: ParamBreakdown,
pub loss_curve: Vec<LossPoint>,
pub heatmap: ActivationHeatmap,
pub landscape: Option<LossLandscape3D>,
pub final_mel_err: f32,
pub final_spec_err: f32,
}Fields§
§model_id: String§variant: String§n_fft: usize§batch: usize§train_steps: usize§params: ParamBreakdown§loss_curve: Vec<LossPoint>§heatmap: ActivationHeatmap§landscape: Option<LossLandscape3D>§final_mel_err: f32§final_spec_err: f32Trait Implementations§
Source§impl Clone for ModelTrainingTrace
impl Clone for ModelTrainingTrace
Source§fn clone(&self) -> ModelTrainingTrace
fn clone(&self) -> ModelTrainingTrace
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 ModelTrainingTrace
impl Debug for ModelTrainingTrace
Source§impl<'de> Deserialize<'de> for ModelTrainingTrace
impl<'de> Deserialize<'de> for ModelTrainingTrace
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 ModelTrainingTrace
impl RefUnwindSafe for ModelTrainingTrace
impl Send for ModelTrainingTrace
impl Sync for ModelTrainingTrace
impl Unpin for ModelTrainingTrace
impl UnsafeUnpin for ModelTrainingTrace
impl UnwindSafe for ModelTrainingTrace
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more