mangye16 / ReID-Survey

Deep Learning for Person Re-identification: A Survey and Outlook
MIT License
635 stars 88 forks source link

self.inter_channels in non_local.py #7

Closed TongYoungG closed 4 years ago

TongYoungG commented 4 years ago

作者,你好!

我发现 non_local.py 中的 self.inter_channels 的计算方式如下: 288RI Q5P Q@7_3@2VEM9GK

但是原论文中应该是:self.inter_channels = in_channels // reduc_ratio

请问这是特意这样设置的吗,如果是的话,是基于什么样的理由呢?

Hellomodo commented 4 years ago

这里是我无意中将inter_channels设置成了1。 你可以按原文设置成self.inter_channels = in_channels // reduc_ratio,提高一些计算量,应该也能取得更好的效果,

TongYoungG commented 4 years ago

好的,谢谢!