Maximize the VLB with respect to the variational parameters, γ and ϕ
(self)
| 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 | """ |
no test coverage detected