Skip to content

Releases: benedekrozemberczki/pytorch_geometric_temporal

v0.56.0 - Index-Batching

28 Mar 14:16
Compare
Choose a tag to compare

This update includes index-batching. Index-batching is a technique that reduces the memory cost of training ST-GNNs with spatiotemporal data with no impact on accuracy, enabling greater scalability and training on the full PeMS dataset without graph partitioning for the first time. Leveraging the reduced memory footprint, this technique also enables GPU-index-batching - a technique that performs preprocessing entirely in GPU memory and utilizes a single CPU-to-GPU mem-copy in place of batch-level CPU-to-GPU transfers throughout training.

We also redid the documentation to use auto-api rather than auto-doc.

What's Changed

New Contributors

Full Changelog: 0.55.0...0.56.0

Bug fixes in import and data loading

09 Feb 07:03
Compare
Choose a tag to compare
  1. Fix SSL import in #262
  2. Fix to_dense_adj function in tsgcn via #271

0.54.0. Simplify test environment and installation

04 Sep 16:37
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.53.0...v0.54.0

HeteroGCLSTM Fixes and Improvements

12 Jul 16:35
Compare
Choose a tag to compare

What's Changed

  • remove unused parameters and variables for MPNNLSTM by @SherylHYX in #154
  • Support for slicing signals by @gfngoncalves in #160
  • Change dicts in hetero_gc_lstm to nn.ParameterDicts by @xunil17 in #180
  • Optimize code to prevent repeated calls to convolution operator by @xunil17 in #181

New Contributors

Full Changelog: v0.52.0...v0.53.0

v0.52.0 Minor fixes and data iterator extensions

04 Apr 19:21
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.51.0...v0.52.0

v0.51.0 Minor fixes and data class extensions

10 Feb 23:10
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.50.0...v0.51.0

Moving to PyG 2.0 and PyTorch 1.10.0 🚀 🛸 🚁

19 Jan 22:38
Compare
Choose a tag to compare
  • Removed coupling to PyG 1.7.0
  • Removed coupling to PyTorch 1.7.
  • DevOps updated
  • Documentation and Installation guide updated

Model and data iterator improvements 🚀 🛸 🚁

31 Dec 11:06
204d71f
Compare
Choose a tag to compare

What's Changed

  • Feature extension: Additional named attributes in Signal/Batch objects by @Flunzmas 🤖
  • Fixed EvolveGCN weight squeezing by @dtortorella 🌃
  • Updated the A3TGCN_example by @poteman 🎇
  • Make attention trainable in A3TGCN and make it support batches by @elmahyai 🌄

Evolve GCN Variants Fix

11 Sep 12:03
Compare
Choose a tag to compare
  • Evolve GCN-O Fix of Weight Updates
  • Evolve GCN-H Fix of Weight Updates

GMAN hyperparameter move out

04 Aug 20:01
Compare
Choose a tag to compare
  • GMAN move out - hyperparameters are not fixed.