sceptre 0.1.1

Rust reimplementation of EasyOCR (CRAFT detection + gen2 CRNN recognition) over ONNX.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Model registry and provisioning.
//!
//! [`registry`] enumerates the gen2 detector/recognizer ONNX artifacts (hosted by
//! the `itextresearch` org on Hugging Face). [`download`] fetches and caches them.
//! [`provision`] is the public surface that enumerates (`model_manifest`) and
//! prefetches (`download_models`) the models a configuration requires.

pub(crate) mod download;
pub(crate) mod provision;
pub(crate) mod registry;