DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
| Table of Contents |
|---|
Performance
- Added full support for NVIDIA Volta GPU Architecture and CUDA 9. Training is up to 3.5x faster than Pascal when using float16.
- Enabled JIT compilation. Autograd and Gluon hybridize now use less memory and has faster speed. Performance is almost the same with old symbolic style code.
...
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,TripletLossRandom number generators in
mx.nd.random.*andmx.sym.random.*now support both CPU and GPUNDArrayandSymbolnow 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 pythonAdded
multi_precisionoption to optimizer for easier float16 training
New Features - Sparse Tensor Support
...
- Added support for sparse matrices. See help on
mx.sym.sparseandmx.nd.sparsefor more info - Added limited cpu support for two sparse formats in
SymbolandNDArray-CSRNDArrayandRowSparseNDArray - Added a sparse dot product operator and many element-wise sparse operators
- Added a data iterator for sparse data input -
LibSVMIter - Added three optimizers for sparse gradient updates:
Ftrl,SGDandAdam - Added
pushandrow_sparse_pullwithRowSparseNDArrayin distributed kvstore
...