burn-tensor 0.16.1

Tensor library with user-friendly APIs and automatic differentiation support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[burn_tensor_testgen::testgen(tanh_activation)]
mod tests {
    use super::*;
    use burn_tensor::{activation, Tensor, TensorData};

    #[test]
    fn test_tanh() {
        let tensor = TestTensor::<2>::from([[1., 2.], [3., 4.]]);

        let output = activation::tanh(tensor);
        let expected = TensorData::from([[0.7616, 0.9640], [0.9951, 0.9993]]);

        output.into_data().assert_approx_eq(&expected, 3);
    }
}