tensor([
[0., 0., 0., 0., 0.],
[0., 1., 2., 3., 0.],
[0., 4., 5., 6., 0.],
[0., 0., 0., 0., 0.]
])
tensor([
[0, 0, 0, 0, 0],
[0, 1, 2, 3, 0],
[0, 4, 5, 6, 0],
[0, 0, 0, 0, 0]])
tensor([[-1., 1., 7.],
[14., 13., 22.]])
odict_keys(['weight', 'bias'])
[Parameter containing:
tensor([[[[-1., 0., -1.],
[ 0., 5., 0.],
[-1., 0., -1.]]]], requires_grad=True), Parameter containing:
tensor([-0.2403], requires_grad=True)]
tensor([[[[-1., 1., 7.],
[14., 13., 22.]]]], grad_fn=<ConvolutionBackward0>)


tensor([[ 0., 8.],
[21., 43.]])
tensor([[[[ 0., 8.],
[21., 43.]]]], grad_fn=<ConvolutionBackward0>)