Skip to content

Commit

Permalink
gets l63 pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
odunbar committed Sep 30, 2023
1 parent 834b867 commit f6ab483
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/L63/emulate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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(
Expand Down

0 comments on commit f6ab483

Please sign in to comment.