@@ -37,7 +37,7 @@ def integrate(
3737 mean (Float[Array, 'N D']): The mean of the variational distribution.
3838 variance (Float[Array, 'N D']): The variance of the variational
3939 distribution.
40- **likelihood_params (AbstractLikelihood): The likelihood function.
40+ likelihood (AbstractLikelihood): The likelihood function.
4141 """
4242 raise NotImplementedError ("self.integrate not implemented" )
4343
@@ -60,7 +60,7 @@ def __call__(
6060 mean (Float[Array, 'N D']): The mean of the variational distribution.
6161 variance (Float[Array, 'N D']): The variance of the variational
6262 distribution.
63- **likelihood_params (AbstractLikelihood): The likelihood function.
63+ likelihood (AbstractLikelihood): The likelihood function.
6464 """
6565 return self .integrate (fun , y , mean , variance , likelihood )
6666
@@ -96,7 +96,7 @@ def integrate(
9696 mean (Float[Array, 'N D']): The mean of the variational distribution.
9797 variance (Float[Array, 'N D']): The variance of the variational
9898 distribution.
99- **likelihood_params (AbstractLikelihood): The likelihood function.
99+ likelihood (AbstractLikelihood): The likelihood function.
100100
101101 Returns:
102102 Float[Array, 'N']: The expected log likelihood.
@@ -137,7 +137,7 @@ def integrate(
137137 mean (Float[Array, 'N D']): The mean of the variational distribution.
138138 variance (Float[Array, 'N D']): The variance of the variational
139139 distribution.
140- **likelihood_params (Gaussian): The Gaussian likelihood function.
140+ likelihood (Gaussian): The Gaussian likelihood function.
141141
142142 Returns:
143143 Float[Array, 'N']: The expected log likelihood.
0 commit comments