From 58083a49a059988625e09fd8bb6147f657d6ba4a Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Fri, 20 Dec 2024 02:39:52 -0800 Subject: [PATCH] fix test value off by -07 --- axon/basic_test.goal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axon/basic_test.goal b/axon/basic_test.goal index 25cbae59..2f68708f 100644 --- a/axon/basic_test.goal +++ b/axon/basic_test.goal @@ -872,7 +872,7 @@ func NetTestLearn(t *testing.T, tol float32, gpu bool) { hidDwts := []float32{0.0034167361, 0.0049937717, 0.00403544, 0.004449356} outDwts := []float32{0.0009000063, 0.005000009, 0.0022999954, 0.0025999974} - hidWts := []float32{0.52048916, 0.52992797, 0.5241941, 0.5266715} + hidWts := []float32{0.52048916, 0.52992797, 0.5241945, 0.5266715} outWts := []float32{0.5053999, 0.52996504, 0.51379675, 0.51559514} hiddwt := make([]float32, 4*nLearnParams)