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