118 lines
3.5 KiB
Julia
118 lines
3.5 KiB
Julia
using Test
|
||
using Flux: onehotbatch, mse, crossentropy, logitcrossentropy,
|
||
σ, binarycrossentropy, logitbinarycrossentropy
|
||
|
||
const ϵ = 1e-7
|
||
|
||
@testset "losses" begin
|
||
# First, regression-style y's
|
||
y = [1, 1, 0, 0]
|
||
ŷ = [.9, .1, .1, .9]
|
||
|
||
@testset "mse" begin
|
||
@test mse(ŷ, y) ≈ (.1^2 + .9^2)/2
|
||
end
|
||
|
||
@testset "mae" begin
|
||
@test Flux.mae(ŷ, y) ≈ 1/2
|
||
end
|
||
|
||
@testset "huber_loss" begin
|
||
@test Flux.huber_loss(ŷ, y) ≈ 0.20500000000000002
|
||
end
|
||
|
||
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
|
||
|
||
# Now onehot y's
|
||
y = onehotbatch([1, 1, 0, 0], 0:1)
|
||
ŷ = [.1 .9; .9 .1; .9 .1; .1 .9]'
|
||
v = log(.1 / .9)
|
||
logŷ = [v 0.0; 0.0 v; 0.0 v; v 0.0]'
|
||
lossvalue = 1.203972804325936
|
||
|
||
@testset "crossentropy" begin
|
||
@test crossentropy(ŷ, y) ≈ lossvalue
|
||
end
|
||
|
||
@testset "logitcrossentropy" begin
|
||
@test logitcrossentropy(logŷ, y) ≈ lossvalue
|
||
end
|
||
|
||
@testset "weighted_crossentropy" begin
|
||
@test crossentropy(ŷ, y, weight = ones(2)) ≈ lossvalue
|
||
@test crossentropy(ŷ, y, weight = [.5, .5]) ≈ lossvalue/2
|
||
@test crossentropy(ŷ, y, weight = [2, .5]) ≈ 1.5049660054074199
|
||
end
|
||
|
||
@testset "weighted_logitcrossentropy" begin
|
||
@test logitcrossentropy(logŷ, y, weight = ones(2)) ≈ lossvalue
|
||
@test logitcrossentropy(logŷ, y, weight = [.5, .5]) ≈ lossvalue/2
|
||
@test logitcrossentropy(logŷ, y, weight = [2, .5]) ≈ 1.5049660054074199
|
||
end
|
||
|
||
logŷ, y = randn(3), rand(3)
|
||
@testset "binarycrossentropy" begin
|
||
@test binarycrossentropy.(σ.(logŷ), y; ϵ=0) ≈ -y.*log.(σ.(logŷ)) - (1 .- y).*log.(1 .- σ.(logŷ))
|
||
@test binarycrossentropy.(σ.(logŷ), y) ≈ -y.*log.(σ.(logŷ) .+ eps.(σ.(logŷ))) - (1 .- y).*log.(1 .- σ.(logŷ) .+ eps.(σ.(logŷ)))
|
||
end
|
||
|
||
@testset "logitbinarycrossentropy" begin
|
||
@test logitbinarycrossentropy.(logŷ, y) ≈ binarycrossentropy.(σ.(logŷ), y; ϵ=0)
|
||
end
|
||
|
||
y = [1 2 3]
|
||
y1 = [4.0 5.0 6.0]
|
||
@testset "kldivergence" begin
|
||
@test Flux.kldivergence(y, y1) ≈ 4.761838062403337
|
||
@test Flux.kldivergence(y, y) ≈ 0
|
||
end
|
||
|
||
y = [1 2 3 4]
|
||
y1 = [5.0 6.0 7.0 8.0]
|
||
@testset "hinge" begin
|
||
@test Flux.hinge(y, y1) ≈ 0
|
||
@test Flux.hinge(y, 0.5 .* y) ≈ 0.125
|
||
end
|
||
|
||
@testset "squared_hinge" begin
|
||
@test Flux.squared_hinge(y, y1) ≈ 0
|
||
@test Flux.squared_hinge(y, 0.5 .* y) ≈ 0.0625
|
||
end
|
||
|
||
y = [0.1 0.2 0.3]
|
||
y1 = [0.4 0.5 0.6]
|
||
@testset "poisson" begin
|
||
@test Flux.poisson(y, y1) ≈ 1.0160455586700767
|
||
@test Flux.poisson(y, y) ≈ 0.5044459776946685
|
||
end
|
||
|
||
y = [1.0 0.5 0.3 2.4]
|
||
y1 = [0 1.4 0.5 1.2]
|
||
@testset "dice_coeff_loss" begin
|
||
@test Flux.dice_coeff_loss(y, y1) ≈ 0.2799999999999999
|
||
@test Flux.dice_coeff_loss(y,y) ≈ 0.0
|
||
end
|
||
|
||
@testset "tversky_loss" begin
|
||
@test Flux.tversky_loss(y,y1) ≈ 0.028747433264887046
|
||
@test Flux.tversky_loss(y,y1,0.8) ≈ 0.050200803212851364
|
||
@test Flux.tversky_loss(y,y) ≈ -0.5576923076923075
|
||
end
|
||
|
||
@testset "no spurious promotions" begin
|
||
for T in (Float32, Float64)
|
||
y = rand(T, 2)
|
||
ŷ = rand(T, 2)
|
||
for f in (mse, crossentropy, logitcrossentropy, Flux.kldivergence, Flux.hinge, Flux.poisson,Flux.mae,Flux.huber_loss,Flux.msle,Flux.squared_hinge,Flux.dice_coeff_loss,Flux.tversky_loss)
|
||
fwd, back = Flux.pullback(f, ŷ, y)
|
||
@test fwd isa T
|
||
@test eltype(back(one(T))[1]) == T
|
||
end
|
||
end
|
||
end
|
||
end
|