add missing default parameters for adam optimizer
This commit is contained in:
parent
57c2f4f909
commit
1eee9255e7
1 changed files with 2 additions and 0 deletions
2
ggml.c
2
ggml.c
|
@ -15117,6 +15117,8 @@ struct ggml_opt_params ggml_opt_default_params(enum ggml_opt_type type) {
|
|||
|
||||
.adam = {
|
||||
.n_iter = 10000,
|
||||
.sched = 1.000f,
|
||||
.decay = 0.001f,
|
||||
.alpha = 0.001f,
|
||||
.beta1 = 0.9f,
|
||||
.beta2 = 0.999f,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue