MCPcopy Index your code
hub / github.com/ddbourgin/numpy-ml / _M_step

Method _M_step

numpy_ml/lda/lda.py:144–149  ·  view source on GitHub ↗

Maximize the VLB with respect to the model parameters, α and β

(self)

Source from the content-addressed store, hash-verified

142 self.gamma = self._maximize_gamma()
143
144 def _M_step(self):
145 """
146 Maximize the VLB with respect to the model parameters, α and β
147 """
148 self.beta = self._maximize_beta()
149 self.alpha = self._maximize_alpha()
150
151 def VLB(self):
152 """

Callers 1

trainMethod · 0.95

Calls 2

_maximize_betaMethod · 0.95
_maximize_alphaMethod · 0.95

Tested by

no test coverage detected