Skip to content

Commit

Permalink
updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gartangh committed Mar 8, 2020
1 parent 746e331 commit fc3af68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layers/stateless.jl
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ tversky_loss(ŷ, y; β=eltype(ŷ)(0.7)) = 1 - (sum(y .* ŷ) + 1) / (sum(y .*
"""
flatten(x::AbstractArray)
Transforms (w,h,c,b)-shaped input into (w*h*c,b)-shaped output,
Transforms (w,h,c,b)-shaped input into (w x h x c,b)-shaped output,
by linearizing all values for each element in the batch.
"""
function flatten(x::AbstractArray)
Expand Down

0 comments on commit fc3af68

Please sign in to comment.