Improve whitespaces in docs

This commit is contained in:
janEbert 2019-08-31 11:43:34 +02:00
parent ab86e350f2
commit ba80c2e8ab
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ e.g.
```julia ```julia
function loss_total(xs::AbstractVector{<:Vector}, ys::AbstractVector{<:Vector}) function loss_total(xs::AbstractVector{<:Vector}, ys::AbstractVector{<:Vector})
sum(zip(xs, ys)) do (x, y_target) sum(zip(xs, ys)) do (x, y_target)
y_pred = model(x) # evaluate the model y_pred = model(x) # evaluate the model
return loss(y_pred, y_target) return loss(y_pred, y_target)
end end
end end