This commit is contained in:
Dhairya Gandhi 2019-09-27 21:43:39 +05:30
parent 12bc06136d
commit a98a1b8bb5

View File

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