diff --git a/examples/other_examples/linear_regression.py b/examples/other_examples/linear_regression.py index 7d659a6737ea7eac6b9ff149d3f08f1052539a71..23b22c44084e12ff6e8f53a8e814e78a866e1973 100644 --- a/examples/other_examples/linear_regression.py +++ b/examples/other_examples/linear_regression.py @@ -73,6 +73,8 @@ class GaussianLikelihood(tupak.Likelihood): self.sigma = sigma self.N = len(x) self.function = function + + # These lines of code infer the parameters from the provided function parameters = inspect.getargspec(function).args parameters.pop(0) self.parameters = dict.fromkeys(parameters)