Skip to main content

oar_ocr_core/models/
mod.rs

1//! Model implementations.
2//!
3//! This module contains pure model implementations that handle preprocessing,
4//! inference, and postprocessing. Models are independent of tasks and can be
5//! reused across different task adapters.
6
7pub mod classification;
8pub mod detection;
9pub mod recognition;
10pub mod rectification;