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

Method _E_step

numpy_ml/lda/lda.py:137–142  ·  view source on GitHub ↗

Maximize the VLB with respect to the variational parameters, γ and ϕ

(self)

Source from the content-addressed store, hash-verified

135 return alpha
136
137 def _E_step(self):
138 """
139 Maximize the VLB with respect to the variational parameters, γ and ϕ
140 """
141 self.phi = self._maximize_phi()
142 self.gamma = self._maximize_gamma()
143
144 def _M_step(self):
145 """

Callers 1

trainMethod · 0.95

Calls 2

_maximize_phiMethod · 0.95
_maximize_gammaMethod · 0.95

Tested by

no test coverage detected