a `list` of (label, list of probabilities of each topic belonging to the label) of the document (for only `tomotopy.models.LLDAModel` and `tomotopy.models.PLDAModel` models, read-only) .. versionadded:: 0.3.0
(self)
| 154 | |
| 155 | @property |
| 156 | def labels(self) -> List[Tuple[str, List[float]]]: |
| 157 | '''a `list` of (label, list of probabilities of each topic belonging to the label) of the document (for only `tomotopy.models.LLDAModel` and `tomotopy.models.PLDAModel` models, read-only) |
| 158 | |
| 159 | .. versionadded:: 0.3.0''' |
| 160 | return super()._labels |
| 161 | |
| 162 | @property |
| 163 | def eta(self) -> List[float]: |
nothing calls this directly
no outgoing calls
no test coverage detected