Skip to content

Commit

Permalink
Config
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed May 17, 2022
1 parent ff9462c commit 57a7abb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/cifar10/options.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function parse_commandline_arguments()
"--start-epoch"
help = "manual epoch number (useful on restarts)"
arg_type = Int
default = 0
default = 1
"--print-freq"
help = "print frequency"
arg_type = Int
Expand Down
4 changes: 2 additions & 2 deletions examples/src/config.jl
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function get_default_experiment_configuration(::Val{:CIFAR10}, ::Val{:TINY})
abstol=5.0f-2,
reltol=5.0f-2,
ode_solver=VCABM3(),
pretrain_epochs=8,
pretrain_epochs=3,
lr_scheduler=:COSINE,
optimiser=:ADAM,
eta=0.001f0 * scaling_factor(),
Expand Down Expand Up @@ -80,7 +80,7 @@ function get_default_experiment_configuration(::Val{:CIFAR10}, ::Val{:LARGE})
abstol=5.0f-2,
reltol=5.0f-2,
ode_solver=VCABM3(),
pretrain_epochs=13,
pretrain_epochs=3,
lr_scheduler=:COSINE,
optimiser=:ADAM,
eta=0.001f0 * scaling_factor(),
Expand Down

0 comments on commit 57a7abb

Please sign in to comment.