MyGit

1.6.0

pyg-team/pytorch_geometric

版本发布时间: 2020-07-07 14:27:50

pyg-team/pytorch_geometric最新发布版本:2.5.3(2024-04-19 19:37:44)

A new major release, introducing TorchScript support, memory-efficient aggregations, bipartite GNN modules, static graphs and much more!

Major Features

conv = SAGEConv(in_channels=(32, 64), out_channels=64)
out = conv((x_src, x_dst), edge_index)
conv = GCNConv(in_channels=32, out_channels=64)

x = torch.randn(batch_size, num_nodes, in_channels)
out = conv(x, edge_index)
print(out.size())
>>> torch.Size([batch_size, num_nodes, out_channels])

Additional Features

Breaking Changes

Complementary Frameworks

Datasets

Bugfixes

相关地址:原始地址 下载(tar) 下载(zip)

查看:2020-07-07发行的版本