Relating the PointNet++ classification model to the original paper architecture description (part 2) #4496
-
In a prior discussion #3924 I had asked about connection the PointNet++ architecture to what is in the original paper. The response there was very helpful, thank you very much! In this next post, I just realized that there's something else I'm a little confused about. In the PointNet++ paper, it talks about MSG and MRG architectures and in the appendix, says: Does PyTorch Geometric use these variants? It seems like the classification variant (implemented here) does not use these and instead uses the first network architecture in the above screenshot. By going through the network step by step, it seems like it's entirely explained by the set abstraction modules. There is some "concatenation" in the sense that Is my understanding correct that if we want to try MSG and MRG variants, that we will need to adjust the code accordingly? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, the example does not include MSG and MRG variants, sorry about that. I would definitely accept a PR that integrate these :) |
Beta Was this translation helpful? Give feedback.
Yes, the example does not include MSG and MRG variants, sorry about that. I would definitely accept a PR that integrate these :)