Skip to content

Commit

Permalink
Update models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
amar-iastate authored Aug 2, 2018
1 parent 8d8e0bd commit 8e42cae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygcn/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ def forward(self, x, adj):
x = F.relu(self.gc1(x, adj))
x = F.dropout(x, self.dropout, training=self.training)
x = self.gc2(x, adj)
return F.log_softmax(x)
return F.log_softmax(x, dim =1)

0 comments on commit 8e42cae

Please sign in to comment.