| 444 | } |
| 445 | |
| 446 | py::UniqueCObj<CorpusObject> LDAModelObject::getDocs() const |
| 447 | { |
| 448 | auto* inst = getInst<tomoto::ILDAModel>(); |
| 449 | auto ret = py::UniqueCObj<CorpusObject>{ (CorpusObject*)PyObject_CallFunctionObjArgs((PyObject*)py::Type<CorpusObject>, Py_None, getObject(), nullptr) }; |
| 450 | return ret; |
| 451 | } |
| 452 | |
| 453 | py::UniqueCObj<VocabObject> LDAModelObject::getVocabs() const |
| 454 | { |
nothing calls this directly
no outgoing calls
no test coverage detected