We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 248278b commit 8680766Copy full SHA for 8680766
examples/pointnet++.py
@@ -37,12 +37,12 @@ def forward(self, data):
37
pos, batch = data.pos, data.batch
38
39
idx = fps(pos, batch, ratio=0.5) # 512 points
40
- edge_index = radius(pos[idx], pos, 0.1, batch[idx], batch, 48)
+ edge_index = radius(pos[idx], pos, 0.1, batch[idx], batch, 64)
41
x = F.relu(self.local_sa1(None, pos, edge_index))
42
pos, batch = pos[idx], batch[idx]
43
44
idx = fps(pos, batch, ratio=0.25) # 128 points
45
- edge_index = radius(pos[idx], pos, 0.2, batch[idx], batch, 48)
+ edge_index = radius(pos[idx], pos, 0.2, batch[idx], batch, 64)
46
x = F.relu(self.local_sa2(x, pos, edge_index))
47
48
0 commit comments