Skip to content

Commit

Permalink
Revert changes to arg_iter_config_sql.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelfneumann committed Jun 22, 2023
1 parent 672f0d9 commit e269b50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions examples/configs/arg_iter_config_sql.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ arg_iter_type = "iter"
steps=102902

[sweep_args]
opt2 = [5, 6]
opt1 = "1:2"
"opt3+opt4" = [["a", 1], ["b", 2]]
opt2 = [5,6,7,8,9]
opt1 = "1:50"
"opt3+opt4" = [["a", 1], ["b", 2], ["c", 3]]
5 changes: 3 additions & 2 deletions examples/experiment.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,12 @@ function main_experiment(config::Dict, extra_arg = nothing; progress=false, test
throw("Oh No!!!")
end

Dict("mean"=>0.1,
Dict(
"mean"=>0.1,
"vec"=>rand(100),
"mat"=>rand(10, 10),
"vec_vec"=>[rand(10) for _ in 1:10],
"3darr"=>reshape(collect(1:27), 3, 3, 3),
"vec_vec"=>[rand(10) for _ in 1:10],
)
end
end
Expand Down

0 comments on commit e269b50

Please sign in to comment.