hotcoco 1.0.1

Perception evaluation in pure Rust — a pycocotools-compatible COCO/LVIS/Open Images engine with diagnostics and dataset tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Dataset quality and introspection — a tier of its own.
//!
//! Distinct from both the schema ([`crate::types`], which says what a COCO file
//! *contains*) and the metrics engine ([`crate::detection`], which scores
//! predictions against it). This module answers "is this dataset sound, and what
//! is in it?" — the questions you ask before evaluating anything.

pub mod healthcheck;
pub mod stats;

pub use healthcheck::{
    DatasetSummary, Finding, HealthReport, Layer, healthcheck, healthcheck_compatibility,
};
pub use stats::{CategoryStats, DatasetStats, SummaryStats};