We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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])吗?前面的维度变换代码也需要有相应的更改呢?如有错误,烦请批评指正,十分感谢!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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])吗?前面的维度变换代码也需要有相应的更改呢?如有错误,烦请批评指正,十分感谢!
The text was updated successfully, but these errors were encountered: