normalization of methods

This commit is contained in:
Miha Kralj
2026-02-10 21:33:16 -08:00
parent 915d7a007b
commit 6d6259a47d
527 changed files with 10525 additions and 2123 deletions
@@ -228,7 +228,7 @@ public class SigmoidValidationTests
// Span calculation
double[] spanOutput = new double[source.Length];
Sigmoid.Calculate(source.AsSpan(), spanOutput.AsSpan(), k, x0);
Sigmoid.Batch(source.AsSpan(), spanOutput.AsSpan(), k, x0);
// Streaming calculation
var sigmoid = new Sigmoid(k, x0);