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 7e0147a commit 07588b1Copy full SHA for 07588b1
examples/exact_space_time_learning.jl
@@ -39,7 +39,7 @@ end
39
# Exact inference only works for such grids.
40
# Times must be increasing, points in space can be anywhere.
41
N = 50;
42
-T = 1_000;
+T = 500;
43
points_in_space = collect(range(-3.0, 3.0; length=N));
44
points_in_time = RegularSpacing(0.0, 0.01, T);
45
x = RectilinearGrid(points_in_space, points_in_time);
@@ -73,7 +73,7 @@ final_params = unpack(training_results.minimizer)
73
f_post = posterior(build_gp(final_params)(x, final_params.var_noise), y);
74
75
# Specify some locations at which to make predictions.
76
-T_pr = 1200;
+T_pr = 600;
77
points_in_time_pr = RegularSpacing(0.0, 0.01, T_pr);
78
x_pr = RectilinearGrid(points_in_space, points_in_time_pr);
79
0 commit comments