We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b563a8 commit 2403bfeCopy full SHA for 2403bfe
1 file changed
examples/core_examples/linear_regression_with_Fisher.py
@@ -37,7 +37,7 @@ def model(time, m, c):
37
time = np.arange(0, time_duration, 1 / sampling_frequency)
38
N = len(time)
39
sigma = random.rng.normal(1, 0.01, N)
40
-data = model(time, **injection_parameters) + random.normal(0, sigma, N)
+data = model(time, **injection_parameters) + random.rng.normal(0, sigma, N)
41
42
# Now lets instantiate a version of our GaussianLikelihood, giving it
43
# the time, data and signal model
0 commit comments