Skip to content

Commit 1bdda76

Browse files
committed
update
1 parent 118a714 commit 1bdda76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.idea/deployment.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SuperMoon/models/HGNN.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def __init__(self, in_ch, n_class, hiddens=[16], dropout=0.5) -> None:
1919

2020
def forward(self, x, H, hyedge_weight=None):
2121
for hyconv in self.hyconvs:
22+
x = F.dropout(x, self.dropout)
2223
x = hyconv(x, H)
2324
x = F.leaky_relu(x, inplace=True)
24-
x = F.dropout(x, self.dropout)
2525
x = self.last_hyconv(x, H)
2626
return F.log_softmax(x, dim=1)

0 commit comments

Comments
 (0)