Skip to content

Commit

Permalink
delete print
Browse files Browse the repository at this point in the history
  • Loading branch information
aartbik committed Jun 18, 2024
1 parent aae2ace commit 89e5009
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/mpact/models/gcn.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def forward(self, input_tensor, adj_mat):
x = F.relu(x)
x = self.dropout(x)
x = self.gc2(x, adj_mat)
print(x)
return F.log_softmax(x, dim=1)


Expand Down

0 comments on commit 89e5009

Please sign in to comment.