Updated test for msle

This commit is contained in:
Adarsh Kumar 2020-02-06 01:21:51 +05:30 committed by GitHub
parent 7710bb0b4b
commit 659ba074d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ const ϵ = 1e-7
@test Flux.huber_loss(ŷ, y) 0.0012499999999999994
end
y = [123,456,789]
y1 = [345,332,789]
y = [123.0,456.0,789.0]
y1 = [345.0,332.0,789.0]
@testset "msle" begin
@test Flux.msle(y1, y) 0.38813985859136585
end