pub struct BakeReport {
pub backbone: f64,
pub masked: f64,
pub overlaid: f64,
pub pruned_ratio: f64,
pub kept_per_layer: Vec<usize>,
pub sec: f64,
}Expand description
What the bake measured and produced.
Fields§
§backbone: f64Held-out PPL of the untouched backbone.
masked: f64Held-out PPL with the best hard mask (the denoising bottom).
overlaid: f64Held-out PPL after FCD (the final specialist).
pruned_ratio: f64§kept_per_layer: Vec<usize>§sec: f64Auto Trait Implementations§
impl Freeze for BakeReport
impl RefUnwindSafe for BakeReport
impl Send for BakeReport
impl Sync for BakeReport
impl Unpin for BakeReport
impl UnsafeUnpin for BakeReport
impl UnwindSafe for BakeReport
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