Thanks for sharing your code, which is a great and novel work.
When I read the code about the ConvFace in the first Mesh Conv Block, I found that the fea for the center face is ignored actually, see the code here.
|
fea = torch.sum(neighbor_fea, 3) |
Maybe the correct code is
fea = torch.sum(fea, 3)
Will it affect the results in the article? Thanks for your work and the attention again.