Can I convert two 3x3 matrices into a single 3x3 matrix using a max pooling layer?
For example let's take 2 matrices:
matrix 1
1 2 2
0 1 0
2 1 1
matrix 2
1 0 10
1 0 1
0 1 0
using maxpool(dim = (2,2), stride =1)
Can I convert two 3x3 matrices into a single 3x3 matrix using a max pooling layer?
For example let's take 2 matrices:
matrix 1
1 2 2
0 1 0
2 1 1
matrix 2
1 0 10
1 0 1
0 1 0
using maxpool(dim = (2,2), stride =1)