v0.2.0
Pre-releasehttps://github.com/sociomantic-tsunami/dmxnet/milestone/2
Migration Instructions
-
Integration tests have moved from
test/
tointegrationtest/
. -
Travis config now uses the
beaver dlang
functionality provided
in beaver 0.2.x.
Features
-
-debug=MXNetHandleManualFree
When this new debug option is enabled, the library will report to
stderr
whenever a MXNet handle is freed by theHandle
class
destructor instead of by an explicit call to thefreeHandle
method. This can be used to track down leaks of MXNet-allocated
resources in an application using dmxnet. -
mxnet.Handle.debugReport
This
private
function has been added to provide a standard means
of writing debug error messages tostderr
. All existing debug
messages in themxnet.Handle
module are now provided by calls
to this function. -
mxnet.Symbol.Dot
The new
Dot
class wraps thedot
atomic symbol provided
by the C++ MXNet library. This represents a generalized dot
product of its inputs. -
mxnet.NDArray.NDArray
Some small documentation improvements have been added to the
opSubAssign
andopMulAssign
methods. -
mxnet.Symbol.SoftmaxOutput
Improved and extended documentation has been provided for the
SoftmaxOutput
class.