BSD-3-Clause licensed by Justin Le
Maintained by [email protected]
This version can be pinned in stack with:hmatrix-backprop-0.1.0.0@sha256:b09533d7948684f7cc9bf1ccdcf1a14b33887838512d98df19d137e3e0724bca,2219

Module documentation for 0.1.0.0

hmatrix-backprop

hmatrix-backprop on Hackage Build Status

hmatrix operations lifted for backprop.

Meant to act as a drop-in replacement to the API of Numeric.LinearAlgebra.Static. Just change your imports, and your functions are automatically backpropagatable. Useful types are all re-exported.

Formulas for gradients come from the following papers:

Some functions are not yet implemented! See module documentation for details. PR’s definitely appreciated :)

Tests

Currently numeric tests are implemented as property tests using hedgehog, but it is possible that the answers might differ from the true values by an amount undetectable by property tests.

All functions currently are tested except for the higher-order functions.

They are tested by “nudging” components of inputs and checking if the change in the function outputs match what is expected from the backpropagated gradient.

TODO

Apart from the exact API of hmatrix, it’d be nice to have:

  1. Statically sized convolutions. Should probably add this to hmatrix instead first, though.

Changes

Changelog

Version 0.1.0.0

Feb 10, 2018

https://github.com/mstksg/hmatrix-backprop/releases/tag/v0.1.0.0

  • Initial release