DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Added enhancements to the
Gluonpackage, a high-level interface designed to be easy to use while keeping most of the flexibility of low level API. Gluon supports both imperative and symbolic programming, making it easy to train complex models imperatively with minimal impact on performance. Neural networks (and other machine learning models) can be defined and trained withgluon.nnandgluon.rnnpackages.Added new loss functions -SigmoidBinaryCrossEntropyLoss,CTCLoss,HuberLoss,HingeLoss,SquaredHingeLoss,LogisticLoss,TripletLoss.gluon.Trainernow allows reading and setting learning rate withtrainer.learning_rateproperty.Added API
HybridBlock.exportfor exporting gluon models to MXNet format.Added
ConvLSTMtogluon.contrib.
...
Added limited support for fancy indexing, which allows you to very quickly access and modify complicated subsets of an array's values.
x[idx_arr0, idx_arr1, ..., idx_arrn]is now supported. Full support coming soon in next release. Checkout master to get a preview.
Added new loss functions -SigmoidBinaryCrossEntropyLoss,CTCLoss,HuberLoss,HingeLoss,SquaredHingeLoss,LogisticLoss, TripletLoss.Random number generators in
mx.nd.random.*andmx.sym.random.*now support both CPU and GPU.NDArrayandSymbolnow supports "fluent" methods. You can now usex.exp()etc instead ofmx.nd.exp(x)ormx.sym.exp(x).Added
mx.rtc.CudaModulefor writing and running CUDA kernels from python. See documentation for examples.Added
multi_precisionoption to optimizer for easier float16 training.
...