Skip to content
Snippets Groups Projects
Commit 51c735db authored by Moritz Huebner's avatar Moritz Huebner
Browse files

Moritz Huebner: Fixed syntax error in likelihood base class

parent 8d52c679
No related branches found
No related tags found
No related merge requests found
......@@ -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