From f6ab48303d0473958d61da56aa0cd6858ccf9e06 Mon Sep 17 00:00:00 2001 From: odunbar Date: Fri, 29 Sep 2023 18:15:26 -0700 Subject: [PATCH] gets l63 pdf --- examples/L63/emulate.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/L63/emulate.jl b/examples/L63/emulate.jl index 89b6fa5a3..8e55b2ac5 100644 --- a/examples/L63/emulate.jl +++ b/examples/L63/emulate.jl @@ -24,7 +24,7 @@ function main() # Run L63 from 0 -> tmax u0 = [1.0;0.0;0.0] - tmax = 30 + tmax = 20 dt = 0.01 tspan = (0.0,tmax) prob = ODEProblem(lorenz,u0,tspan) @@ -47,7 +47,7 @@ function main() # Create training pairs (with noise) from subsampling [burnin,tmax] tburn = 10 burnin = Int(floor(10/dt)) - n_train_pts = 500 + n_train_pts = 800 ind = shuffle!(rng, Vector(burnin : tmax / dt - 1))[1:n_train_pts] n_tp = length(ind) input = zeros(3,n_tp) @@ -63,7 +63,7 @@ function main() # Emulate cases = ["GP", "RF-scalar", "RF-scalar-diagin", "RF-vector-svd-nonsep"] - case = cases[2] + case = cases[4] decorrelate = true nugget = Float64(1e-12) overrides = Dict(