diff --git a/tupak/core/likelihood.py b/tupak/core/likelihood.py index 35779fc1b1bbed5be5926e494638729ee43177fe..040b45cc38e75013bbb72553bf32bb1ce97067d7 100644 --- a/tupak/core/likelihood.py +++ b/tupak/core/likelihood.py @@ -241,16 +241,15 @@ class ExponentialLikelihood(Analytical1DLikelihood): raise ValueError("Data must be non-negative") self.__y = y - def log_likelihood(self): - # Calculate the mean of the distribution - mu = self.func(self.x, **self.model_parameters) + @property + def mu(self): + """ Returns the mean of the distribution """ + return self.func(self.x, **self.model_parameters) - # return -inf if any mean values are negative - if np.any(mu < 0.): + def log_likelihood(self): + if np.any(self.mu < 0.): return -np.inf - - # Return the summed log likelihood - return -np.sum(np.log(mu) + (self.y / mu)) + return -np.sum(np.log(self.mu) + (self.y / self.mu)) class StudentTLikelihood(Analytical1DLikelihood):