latent-inspector 0.1.0

Fast CLI for inspecting and comparing learned representations across self-supervised vision models
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod cache;
pub mod inventory;
pub mod loader;
pub mod preprocess;
pub mod registry;

pub use cache::{ArtifactCacheStatus, CachedArtifactInfo};
pub use inventory::{
    build_model_catalog, build_model_download_report, ArtifactInventorySummary, CacheStatus,
    EvidenceStatus, EvidenceStatusCounts, ModelArtifactInventory, ModelArtifactTransition,
    ModelCatalogReport, ModelCatalogSummary, ModelDownloadAction, ModelDownloadReport,
    ModelInventoryEntry, ModelReadinessCounts, ModelReadinessStatus, RuntimeSupport,
};
pub use loader::{InferenceBackend, ModelOutput, ModelSession, OutputTensorMetadata};
pub use registry::{
    ModelInfo, ModelValidationProfile, ParityTolerances, PreprocessContract, RegistryEntry,
    SSLMethod, TensorContract, TensorRole,
};