{
"array_creation": {
"zeros_shape_0": {
"operation": "zeros",
"shape": [
5
],
"result": {
"data": [
0.0,
0.0,
0.0,
0.0,
0.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"ones_shape_0": {
"operation": "ones",
"shape": [
5
],
"result": {
"data": [
1.0,
1.0,
1.0,
1.0,
1.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"full_shape_0": {
"operation": "full",
"shape": [
5
],
"fill_value": 3.14,
"result": {
"data": [
3.14,
3.14,
3.14,
3.14,
3.14
],
"shape": [
5
],
"dtype": "float64"
}
},
"zeros_shape_1": {
"operation": "zeros",
"shape": [
3,
4
],
"result": {
"data": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"shape": [
3,
4
],
"dtype": "float64"
}
},
"ones_shape_1": {
"operation": "ones",
"shape": [
3,
4
],
"result": {
"data": [
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0
],
"shape": [
3,
4
],
"dtype": "float64"
}
},
"full_shape_1": {
"operation": "full",
"shape": [
3,
4
],
"fill_value": 3.14,
"result": {
"data": [
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14
],
"shape": [
3,
4
],
"dtype": "float64"
}
},
"zeros_shape_2": {
"operation": "zeros",
"shape": [
2,
3,
4
],
"result": {
"data": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"shape": [
2,
3,
4
],
"dtype": "float64"
}
},
"ones_shape_2": {
"operation": "ones",
"shape": [
2,
3,
4
],
"result": {
"data": [
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0
],
"shape": [
2,
3,
4
],
"dtype": "float64"
}
},
"full_shape_2": {
"operation": "full",
"shape": [
2,
3,
4
],
"fill_value": 3.14,
"result": {
"data": [
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14
],
"shape": [
2,
3,
4
],
"dtype": "float64"
}
},
"zeros_shape_3": {
"operation": "zeros",
"shape": [
1,
10
],
"result": {
"data": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"shape": [
1,
10
],
"dtype": "float64"
}
},
"ones_shape_3": {
"operation": "ones",
"shape": [
1,
10
],
"result": {
"data": [
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0,
1.0
],
"shape": [
1,
10
],
"dtype": "float64"
}
},
"full_shape_3": {
"operation": "full",
"shape": [
1,
10
],
"fill_value": 3.14,
"result": {
"data": [
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14,
3.14
],
"shape": [
1,
10
],
"dtype": "float64"
}
},
"zeros_shape_4": {
"operation": "zeros",
"shape": [
0
],
"result": {
"data": [],
"shape": [
0
],
"dtype": "float64"
}
},
"ones_shape_4": {
"operation": "ones",
"shape": [
0
],
"result": {
"data": [],
"shape": [
0
],
"dtype": "float64"
}
},
"zeros_shape_5": {
"operation": "zeros",
"shape": [
0,
5
],
"result": {
"data": [],
"shape": [
0,
5
],
"dtype": "float64"
}
},
"ones_shape_5": {
"operation": "ones",
"shape": [
0,
5
],
"result": {
"data": [],
"shape": [
0,
5
],
"dtype": "float64"
}
},
"arange_0": {
"operation": "arange",
"params": {
"start": 0,
"stop": 10,
"step": 1
},
"result": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
10
],
"dtype": "float64"
}
},
"arange_1": {
"operation": "arange",
"params": {
"start": 5,
"stop": 0,
"step": -1
},
"result": {
"data": [
5.0,
4.0,
3.0,
2.0,
1.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"arange_2": {
"operation": "arange",
"params": {
"start": 0,
"stop": 5,
"step": 0.5
},
"result": {
"data": [
0.0,
0.5,
1.0,
1.5,
2.0,
2.5,
3.0,
3.5,
4.0,
4.5
],
"shape": [
10
],
"dtype": "float64"
}
},
"arange_3": {
"operation": "arange",
"params": {
"start": -5,
"stop": 5,
"step": 2
},
"result": {
"data": [
-5.0,
-3.0,
-1.0,
1.0,
3.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"linspace_0": {
"operation": "linspace",
"params": {
"start": 0,
"stop": 10,
"num": 11
},
"result": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0
],
"shape": [
11
],
"dtype": "float64"
}
},
"linspace_1": {
"operation": "linspace",
"params": {
"start": -1,
"stop": 1,
"num": 5
},
"result": {
"data": [
-1.0,
-0.5,
0.0,
0.5,
1.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"linspace_2": {
"operation": "linspace",
"params": {
"start": 0,
"stop": 1,
"num": 101
},
"result": {
"data": [
0.0,
0.01,
0.02,
0.03,
0.04,
0.05,
0.06,
0.07,
0.08,
0.09,
0.1,
0.11,
0.12,
0.13,
0.14,
0.15,
0.16,
0.17,
0.18,
0.19,
0.2,
0.21,
0.22,
0.23,
0.24,
0.25,
0.26,
0.27,
0.28,
0.29,
0.3,
0.31,
0.32,
0.33,
0.34,
0.35000000000000003,
0.36,
0.37,
0.38,
0.39,
0.4,
0.41000000000000003,
0.42,
0.43,
0.44,
0.45,
0.46,
0.47000000000000003,
0.48,
0.49,
0.5,
0.51,
0.52,
0.53,
0.54,
0.55,
0.56,
0.5700000000000001,
0.58,
0.59,
0.6,
0.61,
0.62,
0.63,
0.64,
0.65,
0.66,
0.67,
0.68,
0.6900000000000001,
0.7000000000000001,
0.71,
0.72,
0.73,
0.74,
0.75,
0.76,
0.77,
0.78,
0.79,
0.8,
0.81,
0.8200000000000001,
0.8300000000000001,
0.84,
0.85,
0.86,
0.87,
0.88,
0.89,
0.9,
0.91,
0.92,
0.93,
0.9400000000000001,
0.9500000000000001,
0.96,
0.97,
0.98,
0.99,
1.0
],
"shape": [
101
],
"dtype": "float64"
}
}
},
"array_manipulation": {
"reshape_0": {
"operation": "reshape",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"new_shape": [
5,
1
],
"result": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5,
1
],
"dtype": "float64"
}
},
"reshape_1": {
"operation": "reshape",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"new_shape": [
1,
5
],
"result": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
1,
5
],
"dtype": "float64"
}
},
"reshape_2": {
"operation": "reshape",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
10
],
"dtype": "float64"
},
"new_shape": [
2,
5
],
"result": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
2,
5
],
"dtype": "float64"
}
},
"reshape_3": {
"operation": "reshape",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
3,
4
],
"dtype": "float64"
},
"new_shape": [
4,
3
],
"result": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
4,
3
],
"dtype": "float64"
}
},
"reshape_4": {
"operation": "reshape",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
3,
4
],
"dtype": "float64"
},
"new_shape": [
2,
6
],
"result": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
2,
6
],
"dtype": "float64"
}
},
"reshape_5": {
"operation": "reshape",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0,
12.0,
13.0,
14.0,
15.0,
16.0,
17.0,
18.0,
19.0,
20.0,
21.0,
22.0,
23.0
],
"shape": [
2,
3,
4
],
"dtype": "float64"
},
"new_shape": [
6,
4
],
"result": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0,
12.0,
13.0,
14.0,
15.0,
16.0,
17.0,
18.0,
19.0,
20.0,
21.0,
22.0,
23.0
],
"shape": [
6,
4
],
"dtype": "float64"
}
},
"reshape_6": {
"operation": "reshape",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0,
12.0,
13.0,
14.0,
15.0,
16.0,
17.0,
18.0,
19.0,
20.0,
21.0,
22.0,
23.0
],
"shape": [
2,
3,
4
],
"dtype": "float64"
},
"new_shape": [
24
],
"result": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0,
12.0,
13.0,
14.0,
15.0,
16.0,
17.0,
18.0,
19.0,
20.0,
21.0,
22.0,
23.0
],
"shape": [
24
],
"dtype": "float64"
}
},
"transpose_0": {
"operation": "transpose",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
4.0,
2.0,
5.0,
3.0,
6.0
],
"shape": [
3,
2
],
"dtype": "float64"
}
},
"transpose_1": {
"operation": "transpose",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
4.0,
7.0,
2.0,
5.0,
8.0,
3.0,
6.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
}
},
"transpose_2": {
"operation": "transpose",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
3,
4
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
4.0,
8.0,
1.0,
5.0,
9.0,
2.0,
6.0,
10.0,
3.0,
7.0,
11.0
],
"shape": [
4,
3
],
"dtype": "float64"
}
},
"transpose_3": {
"operation": "transpose",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0,
12.0,
13.0,
14.0,
15.0,
16.0,
17.0,
18.0,
19.0,
20.0,
21.0,
22.0,
23.0
],
"shape": [
2,
3,
4
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
12.0,
4.0,
16.0,
8.0,
20.0,
1.0,
13.0,
5.0,
17.0,
9.0,
21.0,
2.0,
14.0,
6.0,
18.0,
10.0,
22.0,
3.0,
15.0,
7.0,
19.0,
11.0,
23.0
],
"shape": [
4,
3,
2
],
"dtype": "float64"
}
},
"flatten_0": {
"operation": "flatten",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
6
],
"dtype": "float64"
}
},
"flatten_1": {
"operation": "flatten",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
9
],
"dtype": "float64"
}
},
"flatten_2": {
"operation": "flatten",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0,
12.0,
13.0,
14.0,
15.0,
16.0,
17.0,
18.0,
19.0,
20.0,
21.0,
22.0,
23.0
],
"shape": [
2,
3,
4
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0,
12.0,
13.0,
14.0,
15.0,
16.0,
17.0,
18.0,
19.0,
20.0,
21.0,
22.0,
23.0
],
"shape": [
24
],
"dtype": "float64"
}
},
"squeeze_0": {
"operation": "squeeze",
"input": {
"data": [
1,
2,
3
],
"shape": [
1,
1,
3
],
"dtype": "int64"
},
"result": {
"data": [
1,
2,
3
],
"shape": [
3
],
"dtype": "int64"
}
},
"squeeze_1": {
"operation": "squeeze",
"input": {
"data": [
1,
2,
3
],
"shape": [
3,
1
],
"dtype": "int64"
},
"result": {
"data": [
1,
2,
3
],
"shape": [
3
],
"dtype": "int64"
}
},
"squeeze_2": {
"operation": "squeeze",
"input": {
"data": [
1,
2
],
"shape": [
2,
1,
1
],
"dtype": "int64"
},
"result": {
"data": [
1,
2
],
"shape": [
2
],
"dtype": "int64"
}
}
},
"arithmetic_operations": {
"add_0": {
"operation": "add",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
2.0,
4.0,
6.0,
8.0,
10.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"add_1": {
"operation": "add",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"result": {
"data": [
2.0,
4.0,
6.0,
8.0,
10.0,
12.0
],
"shape": [
2,
3
],
"dtype": "float64"
}
},
"add_2": {
"operation": "add",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"result": {
"data": [
2.0,
4.0,
6.0,
8.0,
10.0,
12.0,
14.0,
16.0,
18.0
],
"shape": [
3,
3
],
"dtype": "float64"
}
},
"subtract_0": {
"operation": "subtract",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
0.0,
0.0,
0.0,
0.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"subtract_1": {
"operation": "subtract",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"shape": [
2,
3
],
"dtype": "float64"
}
},
"subtract_2": {
"operation": "subtract",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0,
0.0
],
"shape": [
3,
3
],
"dtype": "float64"
}
},
"multiply_0": {
"operation": "multiply",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"multiply_1": {
"operation": "multiply",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0,
36.0
],
"shape": [
2,
3
],
"dtype": "float64"
}
},
"multiply_2": {
"operation": "multiply",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0,
36.0,
49.0,
64.0,
81.0
],
"shape": [
3,
3
],
"dtype": "float64"
}
},
"divide_0": {
"operation": "divide",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"input2": {
"data": [
1.0000000001,
2.0000000001,
3.0000000001,
4.0000000001,
5.0000000001
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.9999999999,
0.99999999995,
0.9999999999666667,
0.999999999975,
0.99999999998
],
"shape": [
5
],
"dtype": "float64"
}
},
"divide_1": {
"operation": "divide",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.0000000001,
2.0000000001,
3.0000000001,
4.0000000001,
5.0000000001,
6.0000000001
],
"shape": [
2,
3
],
"dtype": "float64"
},
"result": {
"data": [
0.9999999999,
0.99999999995,
0.9999999999666667,
0.999999999975,
0.99999999998,
0.9999999999833333
],
"shape": [
2,
3
],
"dtype": "float64"
}
},
"divide_2": {
"operation": "divide",
"input1": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.0000000001,
2.0000000001,
3.0000000001,
4.0000000001,
5.0000000001,
6.0000000001,
7.0000000001,
8.0000000001,
9.0000000001
],
"shape": [
3,
3
],
"dtype": "float64"
},
"result": {
"data": [
0.9999999999,
0.99999999995,
0.9999999999666667,
0.999999999975,
0.99999999998,
0.9999999999833333,
0.9999999999857143,
0.9999999999875,
0.9999999999888889
],
"shape": [
3,
3
],
"dtype": "float64"
}
},
"scalar_add_0": {
"operation": "scalar_add",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"scalar": 5.0,
"result": {
"data": [
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
2,
3
],
"dtype": "float64"
}
},
"scalar_subtract_1": {
"operation": "scalar_subtract",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"scalar": 2.5,
"result": {
"data": [
-1.5,
-0.5,
0.5,
1.5,
2.5,
3.5
],
"shape": [
2,
3
],
"dtype": "float64"
}
},
"scalar_multiply_2": {
"operation": "scalar_multiply",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"scalar": 3.0,
"result": {
"data": [
3.0,
6.0,
9.0,
12.0,
15.0,
18.0
],
"shape": [
2,
3
],
"dtype": "float64"
}
},
"scalar_divide_3": {
"operation": "scalar_divide",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"scalar": 2.0,
"result": {
"data": [
0.5,
1.0,
1.5,
2.0,
2.5,
3.0
],
"shape": [
2,
3
],
"dtype": "float64"
}
}
},
"mathematical_functions": {
"sqrt_positive": {
"operation": "sqrt",
"input": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"sqrt_mixed": {
"operation": "sqrt",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.4142135623730951,
1.0,
0.0,
1.0,
1.4142135623730951
],
"shape": [
5
],
"dtype": "float64"
}
},
"sqrt_angles": {
"operation": "sqrt",
"input": {
"data": [
0.0,
0.5235987755982988,
0.7853981633974483,
1.0471975511965976,
1.5707963267948966
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
0.7236012545582676,
0.8862269254527579,
1.0233267079464885,
1.2533141373155001
],
"shape": [
5
],
"dtype": "float64"
}
},
"sqrt_small_positive": {
"operation": "sqrt",
"input": {
"data": [
0.1,
0.5,
1.0,
2.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.31622776601683794,
0.7071067811865476,
1.0,
1.4142135623730951,
2.23606797749979
],
"shape": [
5
],
"dtype": "float64"
}
},
"exp_positive": {
"operation": "exp",
"input": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
2.718281828459045,
54.598150033144236,
8103.083927575384,
8886110.520507872,
72004899337.38586
],
"shape": [
5
],
"dtype": "float64"
}
},
"exp_mixed": {
"operation": "exp",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.1353352832366127,
0.36787944117144233,
1.0,
2.718281828459045,
7.38905609893065
],
"shape": [
5
],
"dtype": "float64"
}
},
"exp_angles": {
"operation": "exp",
"input": {
"data": [
0.0,
0.5235987755982988,
0.7853981633974483,
1.0471975511965976,
1.5707963267948966
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
1.6880917949644685,
2.1932800507380152,
2.849653908226361,
4.810477380965351
],
"shape": [
5
],
"dtype": "float64"
}
},
"exp_small_positive": {
"operation": "exp",
"input": {
"data": [
0.1,
0.5,
1.0,
2.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.1051709180756477,
1.6487212707001282,
2.718281828459045,
7.38905609893065,
148.4131591025766
],
"shape": [
5
],
"dtype": "float64"
}
},
"log_positive": {
"operation": "log",
"input": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.000000082690371e-10,
1.3862943611448906,
2.1972245773473307,
2.7725887222460313,
3.2188758248722005
],
"shape": [
5
],
"dtype": "float64"
}
},
"log_mixed": {
"operation": "log",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.6931471806099453,
1.000000082690371e-10,
-23.025850929940457,
1.000000082690371e-10,
0.6931471806099453
],
"shape": [
5
],
"dtype": "float64"
}
},
"log_angles": {
"operation": "log",
"input": {
"data": [
0.0,
0.5235987755982988,
0.7853981633974483,
1.0471975511965976,
1.5707963267948966
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
-23.025850929940457,
-0.647029583187669,
-0.2415644751431665,
0.04611759727678335,
0.4515827053531168
],
"shape": [
5
],
"dtype": "float64"
}
},
"log_small_positive": {
"operation": "log",
"input": {
"data": [
0.1,
0.5,
1.0,
2.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
-2.302585091994046,
-0.6931471803599453,
1.000000082690371e-10,
0.6931471806099453,
1.6094379124541003
],
"shape": [
5
],
"dtype": "float64"
}
},
"abs_positive": {
"operation": "abs",
"input": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"abs_mixed": {
"operation": "abs",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
2.0,
1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"abs_angles": {
"operation": "abs",
"input": {
"data": [
0.0,
0.5235987755982988,
0.7853981633974483,
1.0471975511965976,
1.5707963267948966
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
0.5235987755982988,
0.7853981633974483,
1.0471975511965976,
1.5707963267948966
],
"shape": [
5
],
"dtype": "float64"
}
},
"abs_small_positive": {
"operation": "abs",
"input": {
"data": [
0.1,
0.5,
1.0,
2.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.1,
0.5,
1.0,
2.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"sin_positive": {
"operation": "sin",
"input": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.8414709848078965,
-0.7568024953079282,
0.4121184852417566,
-0.2879033166650653,
-0.13235175009777303
],
"shape": [
5
],
"dtype": "float64"
}
},
"sin_mixed": {
"operation": "sin",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
-0.9092974268256817,
-0.8414709848078965,
0.0,
0.8414709848078965,
0.9092974268256817
],
"shape": [
5
],
"dtype": "float64"
}
},
"sin_angles": {
"operation": "sin",
"input": {
"data": [
0.0,
0.5235987755982988,
0.7853981633974483,
1.0471975511965976,
1.5707963267948966
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
0.49999999999999994,
0.7071067811865475,
0.8660254037844386,
1.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"sin_small_positive": {
"operation": "sin",
"input": {
"data": [
0.1,
0.5,
1.0,
2.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.09983341664682815,
0.479425538604203,
0.8414709848078965,
0.9092974268256817,
-0.9589242746631385
],
"shape": [
5
],
"dtype": "float64"
}
},
"cos_positive": {
"operation": "cos",
"input": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.5403023058681398,
-0.6536436208636119,
-0.9111302618846769,
-0.9576594803233847,
0.9912028118634736
],
"shape": [
5
],
"dtype": "float64"
}
},
"cos_mixed": {
"operation": "cos",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
-0.4161468365471424,
0.5403023058681398,
1.0,
0.5403023058681398,
-0.4161468365471424
],
"shape": [
5
],
"dtype": "float64"
}
},
"cos_angles": {
"operation": "cos",
"input": {
"data": [
0.0,
0.5235987755982988,
0.7853981633974483,
1.0471975511965976,
1.5707963267948966
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
0.8660254037844387,
0.7071067811865476,
0.5000000000000001,
6.123233995736766e-17
],
"shape": [
5
],
"dtype": "float64"
}
},
"cos_small_positive": {
"operation": "cos",
"input": {
"data": [
0.1,
0.5,
1.0,
2.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.9950041652780258,
0.8775825618903728,
0.5403023058681398,
-0.4161468365471424,
0.28366218546322625
],
"shape": [
5
],
"dtype": "float64"
}
},
"tan_positive": {
"operation": "tan",
"input": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.5574077246549023,
1.1578212823495775,
-0.45231565944180985,
0.3006322420239034,
-0.13352640702153587
],
"shape": [
5
],
"dtype": "float64"
}
},
"tan_mixed": {
"operation": "tan",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
2.185039863261519,
-1.5574077246549023,
0.0,
1.5574077246549023,
-2.185039863261519
],
"shape": [
5
],
"dtype": "float64"
}
},
"tan_angles": {
"operation": "tan",
"input": {
"data": [
0.0,
0.5235987755982988,
0.7853981633974483,
1.0471975511965976,
1.5707963267948966
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.0,
0.5773502691896257,
0.9999999999999999,
1.7320508075688767,
1.633123935319537e+16
],
"shape": [
5
],
"dtype": "float64"
}
},
"tan_small_positive": {
"operation": "tan",
"input": {
"data": [
0.1,
0.5,
1.0,
2.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
0.10033467208545055,
0.5463024898437905,
1.5574077246549023,
-2.185039863261519,
-3.380515006246586
],
"shape": [
5
],
"dtype": "float64"
}
},
"power_0": {
"operation": "power",
"base": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
},
"exponent": 2.0,
"result": {
"data": [
1.0,
16.0,
81.0,
256.0,
625.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"power_1": {
"operation": "power",
"base": {
"data": [
0.1,
0.5,
1.0,
2.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"exponent": 0.5,
"result": {
"data": [
0.31622776601683794,
0.7071067811865476,
1.0,
1.4142135623730951,
2.23606797749979
],
"shape": [
5
],
"dtype": "float64"
}
},
"power_2": {
"operation": "power",
"base": {
"data": [
1.0,
4.0,
9.0,
16.0,
25.0
],
"shape": [
5
],
"dtype": "float64"
},
"exponent": -1.0,
"result": {
"data": [
1.0,
0.25,
0.1111111111111111,
0.0625,
0.04
],
"shape": [
5
],
"dtype": "float64"
}
},
"floor": {
"operation": "floor",
"input": {
"data": [
1.2,
2.7,
-1.5,
-2.3,
3.9
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
2.0,
-2.0,
-3.0,
3.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"ceil": {
"operation": "ceil",
"input": {
"data": [
1.2,
2.7,
-1.5,
-2.3,
3.9
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
2.0,
3.0,
-1.0,
-2.0,
4.0
],
"shape": [
5
],
"dtype": "float64"
}
},
"round": {
"operation": "round",
"input": {
"data": [
1.2,
2.7,
-1.5,
-2.3,
3.9
],
"shape": [
5
],
"dtype": "float64"
},
"result": {
"data": [
1.0,
3.0,
-2.0,
-2.0,
4.0
],
"shape": [
5
],
"dtype": "float64"
}
}
},
"statistical_operations": {
"mean_simple_overall": {
"operation": "mean",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 3.0
},
"mean_with_negative_overall": {
"operation": "mean",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 0.0
},
"mean_2d_overall": {
"operation": "mean",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": null,
"result": 3.5
},
"mean_2d_axis0": {
"operation": "mean",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
2.5,
3.5,
4.5
],
"shape": [
3
],
"dtype": "float64"
}
},
"mean_2d_axis1": {
"operation": "mean",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
2.0,
5.0
],
"shape": [
2
],
"dtype": "float64"
}
},
"mean_3x3_overall": {
"operation": "mean",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": null,
"result": 4.0
},
"mean_3x3_axis0": {
"operation": "mean",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
3.0,
4.0,
5.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"mean_3x3_axis1": {
"operation": "mean",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
1.0,
4.0,
7.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"sum_simple_overall": {
"operation": "sum",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 15.0
},
"sum_with_negative_overall": {
"operation": "sum",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 0.0
},
"sum_2d_overall": {
"operation": "sum",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": null,
"result": 21.0
},
"sum_2d_axis0": {
"operation": "sum",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
5.0,
7.0,
9.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"sum_2d_axis1": {
"operation": "sum",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
6.0,
15.0
],
"shape": [
2
],
"dtype": "float64"
}
},
"sum_3x3_overall": {
"operation": "sum",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": null,
"result": 36.0
},
"sum_3x3_axis0": {
"operation": "sum",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
9.0,
12.0,
15.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"sum_3x3_axis1": {
"operation": "sum",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
3.0,
12.0,
21.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"min_simple_overall": {
"operation": "min",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 1.0
},
"min_with_negative_overall": {
"operation": "min",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": -2.0
},
"min_2d_overall": {
"operation": "min",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": null,
"result": 1.0
},
"min_2d_axis0": {
"operation": "min",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
1.0,
2.0,
3.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"min_2d_axis1": {
"operation": "min",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
1.0,
4.0
],
"shape": [
2
],
"dtype": "float64"
}
},
"min_3x3_overall": {
"operation": "min",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": null,
"result": 0.0
},
"min_3x3_axis0": {
"operation": "min",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
0.0,
1.0,
2.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"min_3x3_axis1": {
"operation": "min",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
0.0,
3.0,
6.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"max_simple_overall": {
"operation": "max",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 5.0
},
"max_with_negative_overall": {
"operation": "max",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 2.0
},
"max_2d_overall": {
"operation": "max",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": null,
"result": 6.0
},
"max_2d_axis0": {
"operation": "max",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
4.0,
5.0,
6.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"max_2d_axis1": {
"operation": "max",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
3.0,
6.0
],
"shape": [
2
],
"dtype": "float64"
}
},
"max_3x3_overall": {
"operation": "max",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": null,
"result": 8.0
},
"max_3x3_axis0": {
"operation": "max",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
6.0,
7.0,
8.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"max_3x3_axis1": {
"operation": "max",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
2.0,
5.0,
8.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"std_simple_overall": {
"operation": "std",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 1.4142135623730951
},
"std_with_negative_overall": {
"operation": "std",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 1.4142135623730951
},
"std_2d_overall": {
"operation": "std",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": null,
"result": 1.707825127659933
},
"std_2d_axis0": {
"operation": "std",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
1.5,
1.5,
1.5
],
"shape": [
3
],
"dtype": "float64"
}
},
"std_2d_axis1": {
"operation": "std",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
0.816496580927726,
0.816496580927726
],
"shape": [
2
],
"dtype": "float64"
}
},
"std_3x3_overall": {
"operation": "std",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": null,
"result": 2.581988897471611
},
"std_3x3_axis0": {
"operation": "std",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
2.449489742783178,
2.449489742783178,
2.449489742783178
],
"shape": [
3
],
"dtype": "float64"
}
},
"std_3x3_axis1": {
"operation": "std",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
0.816496580927726,
0.816496580927726,
0.816496580927726
],
"shape": [
3
],
"dtype": "float64"
}
},
"var_simple_overall": {
"operation": "var",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 2.0
},
"var_with_negative_overall": {
"operation": "var",
"input": {
"data": [
-2.0,
-1.0,
0.0,
1.0,
2.0
],
"shape": [
5
],
"dtype": "float64"
},
"axis": null,
"result": 2.0
},
"var_2d_overall": {
"operation": "var",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": null,
"result": 2.9166666666666665
},
"var_2d_axis0": {
"operation": "var",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
2.25,
2.25,
2.25
],
"shape": [
3
],
"dtype": "float64"
}
},
"var_2d_axis1": {
"operation": "var",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0
],
"shape": [
2,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
0.6666666666666666,
0.6666666666666666
],
"shape": [
2
],
"dtype": "float64"
}
},
"var_3x3_overall": {
"operation": "var",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": null,
"result": 6.666666666666667
},
"var_3x3_axis0": {
"operation": "var",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 0,
"result": {
"data": [
6.0,
6.0,
6.0
],
"shape": [
3
],
"dtype": "float64"
}
},
"var_3x3_axis1": {
"operation": "var",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0
],
"shape": [
3,
3
],
"dtype": "float64"
},
"axis": 1,
"result": {
"data": [
0.6666666666666666,
0.6666666666666666,
0.6666666666666666
],
"shape": [
3
],
"dtype": "float64"
}
},
"percentile_0": {
"operation": "percentile",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0
],
"shape": [
10
],
"dtype": "float64"
},
"percentile": 0,
"result": 1.0
},
"percentile_25": {
"operation": "percentile",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0
],
"shape": [
10
],
"dtype": "float64"
},
"percentile": 25,
"result": 3.25
},
"percentile_50": {
"operation": "percentile",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0
],
"shape": [
10
],
"dtype": "float64"
},
"percentile": 50,
"result": 5.5
},
"percentile_75": {
"operation": "percentile",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0
],
"shape": [
10
],
"dtype": "float64"
},
"percentile": 75,
"result": 7.75
},
"percentile_100": {
"operation": "percentile",
"input": {
"data": [
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0
],
"shape": [
10
],
"dtype": "float64"
},
"percentile": 100,
"result": 10.0
}
},
"comparison_operations": {
"greater_arrays": {
"operation": "greater",
"input1": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"input2": {
"data": [
2.0,
3.0,
4.0,
8.0
],
"shape": [
4
],
"dtype": "float64"
},
"result": [
false,
false,
true,
false
]
},
"greater_scalar": {
"operation": "greater_scalar",
"input": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"scalar": 3.0,
"result": [
false,
false,
true,
true
]
},
"greater_equal_arrays": {
"operation": "greater_equal",
"input1": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"input2": {
"data": [
2.0,
3.0,
4.0,
8.0
],
"shape": [
4
],
"dtype": "float64"
},
"result": [
false,
true,
true,
false
]
},
"greater_equal_scalar": {
"operation": "greater_equal_scalar",
"input": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"scalar": 3.0,
"result": [
false,
true,
true,
true
]
},
"less_arrays": {
"operation": "less",
"input1": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"input2": {
"data": [
2.0,
3.0,
4.0,
8.0
],
"shape": [
4
],
"dtype": "float64"
},
"result": [
true,
false,
false,
true
]
},
"less_scalar": {
"operation": "less_scalar",
"input": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"scalar": 3.0,
"result": [
true,
false,
false,
false
]
},
"less_equal_arrays": {
"operation": "less_equal",
"input1": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"input2": {
"data": [
2.0,
3.0,
4.0,
8.0
],
"shape": [
4
],
"dtype": "float64"
},
"result": [
true,
true,
false,
true
]
},
"less_equal_scalar": {
"operation": "less_equal_scalar",
"input": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"scalar": 3.0,
"result": [
true,
true,
false,
false
]
},
"equal_arrays": {
"operation": "equal",
"input1": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"input2": {
"data": [
2.0,
3.0,
4.0,
8.0
],
"shape": [
4
],
"dtype": "float64"
},
"result": [
false,
true,
false,
false
]
},
"equal_scalar": {
"operation": "equal_scalar",
"input": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"scalar": 3.0,
"result": [
false,
true,
false,
false
]
},
"not_equal_arrays": {
"operation": "not_equal",
"input1": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"input2": {
"data": [
2.0,
3.0,
4.0,
8.0
],
"shape": [
4
],
"dtype": "float64"
},
"result": [
true,
false,
true,
true
]
},
"not_equal_scalar": {
"operation": "not_equal_scalar",
"input": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"scalar": 3.0,
"result": [
true,
false,
true,
true
]
},
"array_equal_true": {
"operation": "array_equal",
"input1": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"input2": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"result": true
},
"array_equal_false": {
"operation": "array_equal",
"input1": {
"data": [
1.0,
3.0,
5.0,
7.0
],
"shape": [
4
],
"dtype": "float64"
},
"input2": {
"data": [
2.0,
3.0,
4.0,
8.0
],
"shape": [
4
],
"dtype": "float64"
},
"result": false
},
"allclose_true": {
"operation": "allclose",
"input1": {
"data": [
1.0,
2.0,
3.0
],
"shape": [
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.0000001,
2.0000002,
3.0000003
],
"shape": [
3
],
"dtype": "float64"
},
"result": true
},
"allclose_false": {
"operation": "allclose",
"input1": {
"data": [
1.0,
2.0,
3.0
],
"shape": [
3
],
"dtype": "float64"
},
"input2": {
"data": [
1.01,
2.02,
3.03
],
"shape": [
3
],
"dtype": "float64"
},
"result": false
}
},
"indexing_operations": {
"get_2d_00": {
"operation": "get",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
3,
4
],
"dtype": "float64"
},
"indices": [
0,
0
],
"result": 0.0
},
"get_2d_12": {
"operation": "get",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
3,
4
],
"dtype": "float64"
},
"indices": [
1,
2
],
"result": 6.0
},
"get_3d_123": {
"operation": "get",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0,
12.0,
13.0,
14.0,
15.0,
16.0,
17.0,
18.0,
19.0,
20.0,
21.0,
22.0,
23.0
],
"shape": [
2,
3,
4
],
"dtype": "float64"
},
"indices": [
1,
2,
3
],
"result": 23.0
},
"slice_row_0": {
"operation": "slice_row",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
3,
4
],
"dtype": "float64"
},
"row": 0,
"result": {
"data": [
0.0,
1.0,
2.0,
3.0
],
"shape": [
4
],
"dtype": "float64"
}
},
"slice_col_1": {
"operation": "slice_col",
"input": {
"data": [
0.0,
1.0,
2.0,
3.0,
4.0,
5.0,
6.0,
7.0,
8.0,
9.0,
10.0,
11.0
],
"shape": [
3,
4
],
"dtype": "float64"
},
"col": 1,
"result": {
"data": [
1.0,
5.0,
9.0
],
"shape": [
3
],
"dtype": "float64"
}
}
}
}