Skip to content

Releases: anjandeepsahni/torchutils

0.0.4

23 Jan 14:53
Compare
Choose a tag to compare

New features:

  • Now compatibile with PyTorch >= 1.0.0. Previously, >= 1.3.0.

0.0.3

22 Jan 13:52
Compare
Choose a tag to compare

New features:

  • FLOPs support for softmax, embedding, sigmoid, tanh, lstm, rnn, gru.
  • Calculate and track running statistics of data.
  • Get statistics of dataset (mean, standard deviation and variance).
  • Calculate and track accuracy of predictions.
  • Calculate and track hamming loss of predictions.
  • Track and maintain running average of loss.
  • Plot (average) gradients for each layer in model.

Bug fixes:

  • Multi-input model support for model summary and FLOPs.

Deprecations:

  • get_current_lr() is deprecated, use get_lr() instead.
  • set_current_lr() is deprecated, use set_lr() instead.

0.0.2

22 Jan 13:50
Compare
Choose a tag to compare

New features:

  • Model summary.
  • Model FLOPs.
  • Model 'trainable' parameter count.

Bug fixes:

  • Model parameter count.

0.0.1

22 Jan 13:42
Compare
Choose a tag to compare

New features:

  • Save and load checkpoints.
  • Model parameter count.
  • Get and set optimizer learning rate.
  • Set random seed.