scirs2-text 0.4.3

Text processing module for SciRS2 (scirs2-text)
Documentation
1
2
3
4
5
6
7
8
9
//! Topic modelling sub-crate.
//!
//! Currently provides the Hierarchical Dirichlet Process (HDP) model, which
//! automatically selects the number of topics from data.

/// Hierarchical Dirichlet Process topic model.
pub mod hdp;

pub use hdp::{Hdp, HdpConfig, HdpState, HdpTopicConfig, HdpTopicModel, TopicError};