Skip to content

Commit 73cb905

Browse files
authored
Remove extra parenthesis
1 parent f2998cf commit 73cb905

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/losses/functions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ julia> Flux.mse(y_model, y_true)
4444
"""
4545
function mse(ŷ, y; agg = mean)
4646
_check_sizes(ŷ, y)
47-
agg(abs2.(ŷ .- y)))
47+
agg(abs2.(ŷ .- y))
4848
end
4949

5050
"""

0 commit comments

Comments
 (0)