Changelog for backprop-0.2.0.0
Changelog
Version 0.2.0.0
May 1, 2018
https://github.com/mstksg/backprop/releases/tag/v0.2.0.0
- Added
Backpropclass in Numeric.Backprop.Class, which is a typeclass specifically for "backpropagatable" values. This will replaceNum. - API of Numeric.Backprop completely re-written to require values be
instances of
Backpropinstead ofNum. This closes some outstanding issues with the reliance ofNum, and allows backpropagation to work with non-Num instances like variable-length vectors, matrices, lists, tuples, etc. (including types from accelerate) - Numeric.Backprop.Num and Prelude.Backprop.Num modules added, providing
the old interface that uses
Numinstances instead ofBackpropinstances, for those who wish to avoid writing orphan instances when working with external types. - Numeric.Backprop.Explicit and Prelude.Backprop.Explicit modules added,
providing an interface that allows users to manually specify how zeroing,
addition, and one-ing works on a per-value basis. Useful for those who
wish to avoid writing orphan instances of
Backpropfor types with noNuminstances, or if you are mixing and matching styles. backpropWithvariants added, allowing you to specify a "final gradient", instead of assuming it to be 1.- Added
auto, a shorter alias forconstVarinspired by the ad library. - Numeric.Backprop.Tuple module removed. I couldn't find a significant
reason to keep it now that
Numis no longer required for backpropagation.
Version 0.1.5.2
Apr 26, 2018
https://github.com/mstksg/backprop/releases/tag/v0.1.5.2
- Added
coerceVarto Numeric.Backprop - Added
Randominstaces for all tuple types. Same as forBinary, this does incur a random and time dependency only from the tuple types. Again, because these packages are a part of GHC's boot libraries, this is hopefully not too bad.
Version 0.1.5.1
Apr 9, 2018
https://github.com/mstksg/backprop/releases/tag/v0.1.5.1
- Fixed
NFDatainstance forT; before, was shallow. - Added
Typeableinstances for all tuple types, and forBVar. - Added
Eq,Ord,Show, etc. instances forT. - Added
Binaryinstances for all tuple types. Note that this does incur a binary dependency only because of the tuple types; however, this will hopefully be not too much of an issue because binary is a GHC library anyway.
Version 0.1.5.0
Mar 30, 2018
https://github.com/mstksg/backprop/releases/tag/v0.1.5.0
Tadded to Numeric.Backprop.Tuple: basically anHListwith aNuminstance.EqandOrdinstances forBVar. Is this sound?
Internal
- Refactored
Monoidinstances in Numeric.Backprop.Tuple
Version 0.1.4.0
Mar 25, 2018
https://github.com/mstksg/backprop/releases/tag/v0.1.4.0
isoVar,isoVar2,isoVar3, andisoVarN: convenient aliases for applying isomorphisms toBVars. Helpful for use with constructors and deconstructors.opIso2andopIso3added to Numeric.Backprop.Op, for convenience.T0(Unit with numeric instances) added to *Numeric.Backprop.Tuple".
Internal
- Completely decoupled the internal implementation from
Num, which showed some performance benefits. Mostly just to make the code slightly cleaner, and to prepare for some day potentially decoupling the external API fromNumas well.
Version 0.1.3.0
Feb 12, 2018
https://github.com/mstksg/backprop/releases/tag/v0.1.3.0
- Preulude.Backprop module added with lifted versions of several Prelude and base functions.
liftOpXfamily of operators now have a more logical ordering for type variables. This change breaks backwards-compatibility.opIsoNadded to export list of Numeric.BackpropnoGradandnoGrad1added to Numeric.Backprop.Op, for functions with no defined gradient.
Internal
- Completely decoupled the internal implementation from
Num, which showed some performance benefits.
Version 0.1.2.0
Feb 7, 2018
https://github.com/mstksg/backprop/releases/tag/v0.1.2.0
- Added currying and uncurrying functions for tuples in Numeric.Backprop.Tuple.
opIsoN, for isomorphisms between a tuple of values and a value.- (Internal) AD engine now using
Anyfrom ghc-prim instead ofSome Ifrom type-combinators
Version 0.1.1.0
Feb 6, 2018
https://github.com/mstksg/backprop/releases/tag/v0.1.1.0
- Added canonical strict tuple types with
Numinstances, in the module Numeric.Backprop.Tuple. This is meant to be a band-aid for the problem of orphan instances and potential mismatched tuple types. - Fixed bug in
collectVarthat occurs if container sizes change
Internal
- Internal tweaks to the underlying automatic differentiation types that
decouple backpropagation from
Num, internally.Numis now just used externally as a part of the API, which might someday be made optional.
Version 0.1.0.0
Feb 5, 2018
https://github.com/mstksg/backprop/releases/tag/v0.1.0.0
- First non-alpha release.
- More or less complete redesign of library. The entire API is completely
changed, and there is no backwards compatibility!
- Everything is now "implicit" style, and there is no more
BPmonad. - Accessing items in
BVars is now lens-, prism-, and traversal- based, instead of iso- and generics-based. Opis no longer monadic- Mono modules are removed.
- Implicit modules are removed, since they are the default
- Iso module is removed, since
Isos no longer play major role in the implementation of the library.
- Everything is now "implicit" style, and there is no more
- Removed dependency on ad and ad-based ops, which had been pulling in the vast majority of dependencies.
- Moved from .cabal file to hpack system.
Version 0.0.3.0
Alpha
https://github.com/mstksg/backprop/releases/tag/v0.0.3.0
-
Removed samples as registered executables in the cabal file, to reduce dependences to a bare minimum. For convenience, build script now also compiles the samples into the local directory if stack is installed.
-
Added experimental (unsafe) combinators for working with GADTs with existential types,
withGADT, to Numeric.Backprop module. -
Fixed broken links in changelog.
Version 0.0.2.0
Alpha
https://github.com/mstksg/backprop/releases/tag/v0.0.2.0
-
Added optimized numeric
Ops, and re-writeNum/Fractional/Floatinginstances in terms of them. -
Removed all traces of
Summer/Unityfrom the library, eliminating a whole swath of "explicit-Summer"/"explicit-Unity" versions of functions. As a consequence, the library now only works withNuminstances. The API, however, is now much more simple. -
Benchmark suite added for MNIST example.
Version 0.0.1.0
Alpha
https://github.com/mstksg/backprop/releases/tag/v0.0.1.0
-
Initial pre-release, as a request for comments. API is in a usable form and everything is fully documented, but there are definitely some things left to be done. (See README.md)