wpx-1

Results 1 issues of wpx-1

您好,我想请问下。在dhg文档中,有份示例代码,是用于构造具有不同超边权重的超图卷积模型(代码附在下面)。我想问的是,这个超边特征Y是不是得先进将顶点信息传递到边后,即先调用 hg.v2e才可以拿到这个超边特征。 class HGATConv(nn.Module): def __init__( self, in_channels: int, out_channels: int, bias: bool = True, drop_rate: float = 0.5, atten_neg_slope: float = 0.2, ): super().__init__() self.atten_dropout = nn.Dropout(drop_rate) self.atten_act =...