Skip to content
Snippets Groups Projects
Commit c86ac585 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Fix default log likelihood bug

parent bc39b899
No related branches found
No related tags found
1 merge request!41Add hyper-parameter likelihood
......@@ -14,10 +14,10 @@ import logging
class Likelihood(object):
""" Empty likelihood class to be subclassed by other likelihoods """
def log_likelihood():
def log_likelihood(self):
return np.nan
def noise_log_likelihood():
def noise_log_likelihood(self):
return np.nan
def log_likelihood_ratio(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment