pub struct VerifyReport {
pub root: String,
pub matched: usize,
pub missing_certain: Vec<String>,
pub missing_conditional: Vec<String>,
pub unclaimed: Vec<String>,
pub skipped_other_root: usize,
pub checkpoint_tensors: usize,
}Fields§
§root: StringVarBuilder root this checkpoint was compared against.
matched: usizeAnalyzer parameters matched to at least one tensor.
missing_certain: Vec<String>Parameters the analyzer marked certain that the checkpoint does not contain. These are the actionable ones: either the analyzer is wrong or the checkpoint is.
missing_conditional: Vec<String>Parameters the analyzer already flagged conditional that the checkpoint does not contain. Expected — this is the analyzer and the checkpoint agreeing.
unclaimed: Vec<String>Checkpoint tensors no analyzer parameter claims.
skipped_other_root: usizeParameters belonging to a different builder root, not comparable against this file.
checkpoint_tensors: usizeTrait Implementations§
Source§impl Debug for VerifyReport
impl Debug for VerifyReport
Source§impl Default for VerifyReport
impl Default for VerifyReport
Source§fn default() -> VerifyReport
fn default() -> VerifyReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VerifyReport
impl RefUnwindSafe for VerifyReport
impl Send for VerifyReport
impl Sync for VerifyReport
impl Unpin for VerifyReport
impl UnsafeUnpin for VerifyReport
impl UnwindSafe for VerifyReport
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