Skip to content

Commit

Permalink
Merge pull request #33 from gsp-27/patch-1
Browse files Browse the repository at this point in the history
Update pointnet.py
  • Loading branch information
fxia22 authored Feb 28, 2019
2 parents 2ec315f + 1551005 commit 610f826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pointnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def forward(self, x):
x = F.relu(self.bn1(self.fc1(x)))
x = F.relu(self.bn2(self.fc2(x)))
x = self.fc3(x)
return F.log_softmax(x, dim=0), trans
return F.log_softmax(x, dim=1), trans

class PointNetDenseCls(nn.Module):
def __init__(self, k = 2):
Expand Down

0 comments on commit 610f826

Please sign in to comment.