usls 0.1.11

A Rust library integrated with ONNXRuntime, providing a collection of ML models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Unified label catalogs used across models.
//!
//! Large sets are embedded as text and lazily loaded at first use to
//! minimize compile time and memory while keeping a stable API.

pub mod coco;
pub mod dota;
pub mod hands;
pub mod imagenet;
pub mod object365;

pub use coco::*;
pub use dota::*;
pub use hands::*;
pub use imagenet::*;
pub use object365::*;