Skip to content

v0.7.0

Compare
Choose a tag to compare
@corochann corochann released this 10 Dec 09:38
· 47 commits to master since this release
56e83de

This is the release note of v0.7.0. See here for the complete list of solved issues and merged PRs.

Note that this is planned to be the final major release. As announced in chainer blog, further development will be limited to only serious bug-fixes and maintenance.

Highlights

  • Graph Conv Neural Network with Sparse pattern is added & SNS dataset is supported to try big sparse graph data training (#398, thanks @knshnb!)
  • MEGNet, CGCNN model is supported (#396, thanks @nd-02110114!)

Changes that break compatibility

  • Use shifted softplus in SchNet (#395)

New features

Models

Dataset

  • SNS Dataset support is added to try big sparse graph data
  • Citation Network: cora, citeseer (#398, #402, thanks @knshnb!)
  • Reddit (#398, #402, thanks @knshnb!)

Dataset class

See table below for usage

Chemical Network
adjacency matrix NumpyTupleDataset PaddingGraphDataset
scatter operation SparseGraphDataset SparseGraphDataset
sparse matmul not supported PaddingGraphDataset (use_coo=True)

Function

  • Add shifted softplus (#395)
    • Used in SchNet

Examples

  • network_graph example is added for cora, citeseer, reddit dataset training (#398, thanks @knshnb!)