| 6 | using namespace std; |
| 7 | |
| 8 | tomoto::RawDoc::MiscType LLDAModelObject::convertMisc(const tomoto::RawDoc::MiscType& o) const |
| 9 | { |
| 10 | tomoto::RawDoc::MiscType ret; |
| 11 | ret["labels"] = getValueFromMiscDefault<vector<string>>("labels", o, "`LLDAModel` requires a `labels` value in `Iterable[str]` type."); |
| 12 | return ret; |
| 13 | } |
| 14 | |
| 15 | LLDAModelObject::LLDAModelObject(size_t tw, size_t minCnt, size_t minDf, size_t rmTop, |
| 16 | size_t k, PyObject* alpha, float eta, PyObject* seed, |
nothing calls this directly
no outgoing calls
no test coverage detected