parameter lambdas in the shape `[k, len(metadata_dict), l]` where `k` is the number of topics and `l` is the size of vector for multi_metadata (read-only) See `tomotopy.models.DMRModel.get_topic_prior` for the relation between the lambda parameter and the topic prior. .. versionadded:: 0.12.0
(self)
| 826 | |
| 827 | @property |
| 828 | def lambda_(self) -> np.ndarray: |
| 829 | '''parameter lambdas in the shape `[k, len(metadata_dict), l]` where `k` is the number of topics and `l` is the size of vector for multi_metadata (read-only) |
| 830 | |
| 831 | See `tomotopy.models.DMRModel.get_topic_prior` for the relation between the lambda parameter and the topic prior. |
| 832 | |
| 833 | .. versionadded:: 0.12.0 |
| 834 | ''' |
| 835 | return self._lambda_ |
| 836 | |
| 837 | @property |
| 838 | def alpha(self) -> np.ndarray: |
nothing calls this directly
no outgoing calls
no test coverage detected