From fcc4cf8240dc6248dd9d5c1afd40e2850f712d37 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Fri, 27 Sep 2024 11:32:36 +1200 Subject: [PATCH] reduce again --- test/classifier.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/classifier.jl b/test/classifier.jl index b3857b0..89f1e40 100644 --- a/test/classifier.jl +++ b/test/classifier.jl @@ -111,7 +111,7 @@ end # check different resources (CPU1, CUDALibs, etc)) give about the same loss: reference = losses[1] println("losses for each resource: $losses") -@test all(x -> abs(x - reference) / reference < 5e-3, losses[2:end]) +@test all(x -> abs(x - reference) / reference < 1e-2, losses[2:end]) # # NEURAL NETWORK BINARY CLASSIFIER