0
Q:

adaptive_average_pool-2d

torch.Size([1, 1, 3, 3])
tensor([[[[1., 2., 3.],
          [4., 5., 6.],
          [7., 8., 9.]]]])
0
inp = torch.tensor([[[[1,2.,3], [4,5,6], [7,8,9]]]], dtype = torch.float)

print(inp .shape)
print(inp)
0
tensor([[[[3., 4.],
          [6., 7.]]]])
0
out = nn.AdaptiveAvgPool2d((2,2))(inp)
print(out)
0

New to Communities?

Join the community