Skip to content

Commit

Permalink
adamw backport
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLucibello committed Apr 7, 2022
1 parent ef04fda commit 8e17f2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
[compat]
AbstractTrees = "0.3"
Adapt = "3.0"
ArrayInterface = "3.1, 4"
ArrayInterface = "3.1, 4, 5"
CUDA = "3"
CodecZlib = "0.7"
Colors = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion src/optimise/optimisers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ opt = ADAMW(0.001, (0.89, 0.995), 0.1)
```
"""
ADAMW= 0.001, β = (0.9, 0.999), decay = 0) =
Optimiser(ADAM(1, β), WeightDecay(decay), Descent))
Optimiser(ADAM(η, β), WeightDecay(decay))

"""
AdaBelief(η = 0.001, β::Tuple = (0.9, 0.999), ϵ = $EPS)
Expand Down

0 comments on commit 8e17f2a

Please sign in to comment.