zantetsu-trainer 0.1.4

Background sync and RLAIF training loop for Zantetsu
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! # Zantetsu Trainer
//!
//! Training pipeline for the neural CRF model.
//! Includes data loading, model training, and model export.

pub mod data;
pub mod model;
pub mod trainer;

pub use data::{BIO_LABELS, CharVocab, TrainingExample, load_bio_dataset};
pub use model::{CrfModel, NUM_LABELS, viterbi_decode};
pub use trainer::{Trainer, run_training};