diff --git a/tests/softmax_test.rs b/tests/softmax_test.rs index 3d700ad..baaf580 100644 --- a/tests/softmax_test.rs +++ b/tests/softmax_test.rs @@ -1,3 +1,5 @@ +#![allow(clippy::excessive_precision)] + use ndarray::{array, Array, Array1, Array2, Ix1}; use Transformer::math::softmax::{softmax_matrix, softmax_vector};