Skip to main content

oxicuda_seq/perceptron/
mod.rs

1//! Structured-perceptron sequence taggers (Collins 2002), including the
2//! averaged-perceptron variant.
3
4pub mod structured_perceptron;
5
6pub use structured_perceptron::{
7    PerceptronConfig, PerceptronExample, PerceptronTrainResult, StructuredPerceptron,
8    train_perceptron,
9};