Skip to content

Commit

Permalink
fix gat and unigat bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanfeng97 committed Sep 16, 2023
1 parent 55df18c commit e92ed01
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion dhg/nn/convs/graphs/gat_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,4 @@ def forward(self, X: torch.Tensor, g: Graph) -> torch.Tensor:
X = self.act(X)
if self.bn is not None:
X = self.bn(X)
X = self.drop(X)
return X
1 change: 0 additions & 1 deletion dhg/nn/convs/hypergraphs/unignn_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ def forward(self, X: torch.Tensor, hg: Hypergraph) -> torch.Tensor:
X = self.act(X)
if self.bn is not None:
X = self.bn(X)
X = self.drop(X)
return X


Expand Down

0 comments on commit e92ed01

Please sign in to comment.