From 8cada6a9a9c844568d99120a52a273948c4db1e9 Mon Sep 17 00:00:00 2001 From: Sathvik Bhagavan Date: Thu, 21 Mar 2024 15:01:59 +0000 Subject: [PATCH] fixup! test: make verbose = false for NNODE tests --- test/NNODE_tests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/NNODE_tests.jl b/test/NNODE_tests.jl index 8d27171615..8475737e05 100644 --- a/test/NNODE_tests.jl +++ b/test/NNODE_tests.jl @@ -168,7 +168,7 @@ end points = 200 alg = NNODE(chain, opt, autodiff = false, strategy = NeuralPDE.WeightedIntervalTraining(weights, points)) - sol = solve(prob_oop, alg, verbose = true, maxiters = 5000, saveat = 0.01) + sol = solve(prob_oop, alg, verbose = false, maxiters = 5000, saveat = 0.01) @test abs(mean(sol) - mean(true_sol)) < 0.2 end