Fix inline code block

This commit is contained in:
harryscholes 2020-06-19 09:24:44 +01:00
parent 19b45b49d3
commit 57efd7fead
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ testmode!(m, mode = true) = m
trainmode!(m, mode = true) trainmode!(m, mode = true)
Set a layer of model's train mode (see below). 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 _Note_: if you manually set a model into train mode, you need to manually place
it into test mode during testing phase. it into test mode during testing phase.