Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.29 KB

CHANGELOG.md

File metadata and controls

34 lines (28 loc) · 1.29 KB

Changelog

v1.1.1

Fixed

  • Argmin and Argmax return incorrect result when multiple min or max values are given. #49
  • Wrong sqrt gradient. #37

Other improvements

  • Small updates

v1.1.0

Fixed

  • Wrong gradient computation in the case that a target variable is scalar and its broadcast is involved: Graph::grad(&[scalar * tensor], &[scalar]) #38

Added

  • New autograd::run API which is more useful version of autograd::with #34

Other improvements

  • Fixed some error messages that are not user-friendly (Tensor::access_elem, Graph::sparse_softmax_crossentropy)
  • Updated dependencies: num, rand_distr

v1.0.3

Fixed

  • Serious memory bug around gradient computation

v1.0.2

Fixed

  • Wrong documentation of Graph::slice

v1.0.1

Fixed

  • Critical memory issue when the number of nodes in a graph exceeded a certain threshold #28
  • Misuse of given indexes in Graph::slice #30
  • Undisposed dependencies

v1.0.0

Introduced Graph and basic API was fixed.