Fixed broken @ref in docstring

This commit is contained in:
Kyle Daruwalla 2020-03-01 12:44:36 -06:00
parent 4cebf36361
commit 35e460b044
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ testmode!(m, mode = true) = m
trainmode!(m, mode = true)
Set a layer of model's train mode (see below).
Symmetric to [`testmode`](@ref) (i.e. `trainmode!(m, mode) == testmode!(m, !mode)).
Symmetric to [`testmode!`](@ref) (i.e. `trainmode!(m, mode) == testmode!(m, !mode)).
_Note_: if you manually set a model into train mode, you need to manually place
it into test mode.