We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
里面这段代码里面edge_gate = None if self.gate: edge_gate = self.lin_edge_gate(edge_attr).view(-1, H, C) edge_gate = torch.sigmoid(edge_gate) out = self.propagate(edge_index, query=query, key=key, value=value, edge_attr=edge_attr, edge_gate=edge_gate,size=None)
propagate里面没有edge_gate这个参数
The text was updated successfully, but these errors were encountered:
在edge_augument_transformer_conv遇到同样的问题,请问您知道怎么解决了吗
Sorry, something went wrong.
@weijielong @sol924 我用的是pyg==2.0.4版本,应当是版本不兼容的问题
No branches or pull requests
里面这段代码里面edge_gate = None
if self.gate:
edge_gate = self.lin_edge_gate(edge_attr).view(-1, H, C)
edge_gate = torch.sigmoid(edge_gate)
out = self.propagate(edge_index, query=query, key=key, value=value,
edge_attr=edge_attr, edge_gate=edge_gate,size=None)
propagate里面没有edge_gate这个参数
The text was updated successfully, but these errors were encountered: