Owl_nlp_ldaNLP: LDA module
val init : ?iter:int -> int -> Owl_nlp_corpus.t -> modelinit ~iter k v d inits an LDA model for training. The default iteration is 100.
Parameters: * iter: number of iterations. * k: number of topics. * d: corpus.
val show_info : model -> int -> float -> unitFunction for printing out log information, tailored for LDA training.
val include_token : model -> int -> int -> int -> unitInclude a token in model, used in training and you are not supposed to use it.
val exclude_token : model -> int -> int -> int -> unitExclude a token in model, used in training and you are not supposed to use it.