This commit is contained in:
Dhairya Gandhi 2019-09-27 21:43:39 +05:30
parent 12bc06136d
commit a98a1b8bb5
1 changed files with 1 additions and 1 deletions

View File

@ -113,6 +113,6 @@ You can even store optimiser state alongside the model, to resume training
exactly where you left off.
```julia
opt = ADAM(params(model))
opt = ADAM()
@save "model-$(now()).bson" model opt
```