Skip to content

Commit 07588b1

Browse files
committed
Decrease size of exact space-time learning
1 parent 7e0147a commit 07588b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/exact_space_time_learning.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ end
3939
# Exact inference only works for such grids.
4040
# Times must be increasing, points in space can be anywhere.
4141
N = 50;
42-
T = 1_000;
42+
T = 500;
4343
points_in_space = collect(range(-3.0, 3.0; length=N));
4444
points_in_time = RegularSpacing(0.0, 0.01, T);
4545
x = RectilinearGrid(points_in_space, points_in_time);
@@ -73,7 +73,7 @@ final_params = unpack(training_results.minimizer)
7373
f_post = posterior(build_gp(final_params)(x, final_params.var_noise), y);
7474

7575
# Specify some locations at which to make predictions.
76-
T_pr = 1200;
76+
T_pr = 600;
7777
points_in_time_pr = RegularSpacing(0.0, 0.01, T_pr);
7878
x_pr = RectilinearGrid(points_in_space, points_in_time_pr);
7979

0 commit comments

Comments
 (0)