You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the paper, the first MLP (64, 64) has two layers and the second MLP (64,128,1024) has three layers.
In the implementation of PointNetfeat here, the first MLP has just one layer of size 64 and the second MLP has two layers of sizes 128 and 1024 as can be seen from the code below:
In the paper, the first MLP (64, 64) has two layers and the second MLP (64,128,1024) has three layers.
In the implementation of PointNetfeat here, the first MLP has just one layer of size 64 and the second MLP has two layers of sizes 128 and 1024 as can be seen from the code below:
It works fine, but to be consistent with the paper the following modifications can be made:
and then modify the forward method accordingly.
The text was updated successfully, but these errors were encountered: