| 611 | } |
| 612 | |
| 613 | py::UniqueObj DocumentObject::getZFromLDA() const |
| 614 | { |
| 615 | return docVisit<tomoto::DocumentLDA>(getBoundDoc(), [](auto* doc) |
| 616 | { |
| 617 | return buildPyValueReorder(doc->Zs, doc->wOrder, [](tomoto::Tid x) -> int16_t { return x; }); |
| 618 | }); |
| 619 | } |
| 620 | |
| 621 | std::vector<float> DocumentObject::getCountVector() const |
| 622 | { |
nothing calls this directly
no test coverage detected