Core (0.11.0 ==> 0.11.1)
Bug fixes
- Previously cumsum would pass the original axis to the backend, even if the input was permuted. No tests were failing in core since webgl backend ignores the axis param anyway, but other backends (e.g. node) don't. This fix makes cumsum tests pass in tfjs-node. [tf.cumsum should pass the correct axis to backend.cumsum] (#1054).
Documentation
- Added model management methods under tf.io.* to website. [Add @doc annotations to model management methods] (#1055).
Misc
- Fixed spacing typos (#1052). Thanks, @kylemcdonald.
Layers (0.6.1 ==> 0.6.2)
Bug fixes
- Fixed the loading of Pooling1D layers such as MaxPooling1D. [Fix issue re Pooling1D layer deserialization] (#208).
- Fixed the saving and loading of Concatenate layers (tf.layers.concatenate). [Add getConfig() to layers Concatenate and Bidirectoinal] (#206).
Misc
- Fixed typo in Orthogonal Initializer warning message. (#201). Thanks, @timotheebernard.