| 269 | } |
| 270 | |
| 271 | std::vector<tomoto::Float> LDAModelObject::getWordPrior(const std::string& word) const |
| 272 | { |
| 273 | auto* inst = getInst<tomoto::ILDAModel>(); |
| 274 | return inst->getWordPrior(word); |
| 275 | } |
| 276 | |
| 277 | void LDAModelObject::train(size_t iteration, size_t workers, size_t ps, bool freezeTopics, size_t callbackInterval, PyObject* callback) |
| 278 | { |
nothing calls this directly
no outgoing calls
no test coverage detected