Pointformer icon indicating copy to clipboard operation
Pointformer copied to clipboard

Regarding a comment issue in the code 'LocalTransformer', personally I think the comment may be wrong.

Open Camellia-hz opened this issue 2 years ago • 0 comments

output_features = F.max_pool2d(transformed_feats, kernel_size=[1, ns]) # (B, C, npoint) 在论文当中,关于LocalTransformer作者提到是针对每个local region进行maxpool操作。 这样一来,关于上面这行代码,不应该改为output_features = F.max_pool2d(transformed_feats, kernel_size=[1, np])吗?前面的维度变换代码也需要有相应的更改呢?如有错误,烦请批评指正,十分感谢!

Camellia-hz avatar Jan 03 '23 14:01 Camellia-hz