Skip to content

Commit

Permalink
config update
Browse files Browse the repository at this point in the history
  • Loading branch information
odunbar committed Jul 11, 2024
1 parent 4b1b118 commit 184141e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/Emulator/L63/emulate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function main()
# Emulate
cases = ["GP", "RF-prior", "RF-scalar", "RF-scalar-diagin", "RF-svd-nonsep", "RF-nosvd-nonsep", "RF-nosvd-sep"]

case = cases[4]
case = cases[6]

nugget = Float64(1e-12)
u_test = []
Expand All @@ -104,9 +104,9 @@ function main()

rf_optimizer_overrides = Dict(
"scheduler" => DataMisfitController(terminate_at = 1e4),
"cov_sample_multiplier" => 2.0,
"cov_sample_multiplier" => 5.0,
"n_features_opt" => 150,
"n_iteration" => 10,
"n_iteration" => 20,
"accelerator" => NesterovAccelerator(),
# "localization" => EnsembleKalmanProcesses.Localizers.SECNice(0.05,1.0), # localization / s
"n_ensemble" => 200,
Expand Down Expand Up @@ -160,7 +160,7 @@ function main()
optimizer_options = rf_optimizer_overrides,
)
elseif case ["RF-nosvd-nonsep"]
kernel_structure = NonseparableKernel(LowRankFactor(3, nugget))
kernel_structure = NonseparableKernel(LowRankFactor(4, nugget))
n_features = 500
mlt = VectorRandomFeatureInterface(
n_features,
Expand Down

0 comments on commit 184141e

Please sign in to comment.