HCCF icon indicating copy to clipboard operation
HCCF copied to clipboard

HCCF, SIGIR 2022

Results 1 HCCF issues
Sort by recently updated
recently updated
newest added

1.HGNN层,似乎没有用到leakyReLU,但是论文中这里说用到了激活函数。 ``` class HGNNLayer(nn.Module): def __init__(self): super(HGNNLayer, self).__init__() self.act = nn.LeakyReLU(negative_slope=args.leaky) def forward(self, adj, embeds): # lat = self.act(adj.T @ embeds) # ret = self.act(adj @ lat) lat = (adj.T...