Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Module implementing image captioning.

mod engine;
mod error;
mod output;
mod task;


pub use self::engine::Engine;
pub use self::error::CaptionError;
pub use self::output::CaptionOutput;