gpt4 book ai didi

python - 属性错误 : 'torch.return_types.max' object has no attribute 'dim' - Maxpooling Channel

转载 作者:行者123 更新时间:2023-12-03 15:18:47 32 4
gpt4 key购买 nike

我正在尝试对 channel 维度进行 maxpooling:

class ChannelPool(nn.Module):
def forward(self, input):
return torch.max(input, dim=1)

但我得到了错误
AttributeError: 'torch.return_types.max' object has no attribute 'dim'

最佳答案

torch.max 函数返回一个元组,所以:

class ChannelPool(nn.Module):
def forward(self, input):
input_max, input_indexes = torch.max(input, dim=1)
return input_max

关于python - 属性错误 : 'torch.return_types.max' object has no attribute 'dim' - Maxpooling Channel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60847083/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com