We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d738d3 commit 0cd0cabCopy full SHA for 0cd0cab
example/real_data_expt/rwmh/run_rwmh.jl
@@ -41,14 +41,14 @@ function run_simulation(
41
# add cost tuning
42
df[!, "cost_tuning"] .= cost_tuning
43
44
- jld_pth = joinpath(@__DIR__, "results/")
+ jld_pth = joinpath(@__DIR__, "result/")
45
if save_jld
46
if !isdir(jld_pth)
47
mkpath(jld_pth)
48
end
49
JLD2.save(
50
joinpath(jld_pth, "rwmh_$(name)_$seed.jld2"),
51
- "output" => output,
+ "output", output,
52
)
53
54
return df, output
0 commit comments