You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2018/08/24 23:39:54 UTC

[incubator-mxnet] branch v1.3.x updated: Update announcement for Scala improvement (#12346)

This is an automated email from the ASF dual-hosted git repository.

zhasheng pushed a commit to branch v1.3.x
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/v1.3.x by this push:
     new 353f323  Update announcement for Scala improvement (#12346)
353f323 is described below

commit 353f3236793dc79a51228853d065c8e048c25dc8
Author: Yizhi Liu <li...@apache.org>
AuthorDate: Fri Aug 24 16:39:41 2018 -0700

    Update announcement for Scala improvement (#12346)
    
    * update scala improvement for announcement
    
    * update grammar
---
 NEWS.md | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/NEWS.md b/NEWS.md
index db98684..d5ad739 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -35,7 +35,12 @@ MXNet Change Log
 - This is the first step towards optimizing dynamic neural networks with variable computation graphs, by adding symbolic and imperative control flow operators. [Proposal](https://cwiki.apache.org/confluence/display/MXNET/Optimize+dynamic+neural+network+models+with+control+flow+operators).
 - New operators introduced: foreach([#11531](https://github.com/apache/incubator-mxnet/pull/11531)), while_loop([#11566](https://github.com/apache/incubator-mxnet/pull/11566)), cond([#11760](https://github.com/apache/incubator-mxnet/pull/11760)).
 
-### New Features - Rounding GPU Memory Pool for dynamic networks with variable-length input-output (experimental)
+### New Features - Scala API Improvements (experimental)
+- Improvements to MXNet Scala API usability([#10660](https://github.com/apache/incubator-mxnet/pull/10660), [#10787](https://github.com/apache/incubator-mxnet/pull/10787), [#10991](https://github.com/apache/incubator-mxnet/pull/10991))
+- Symbol.api and NDArray.api would bring new set of functions that have complete definition for all arguments.
+- Please see this [Type safe API design document](https://cwiki.apache.org/confluence/display/MXNET/Scala+Type-safe+API+Design+Doc) for more details.
+
+### New Features - Rounding GPU Memory Pool for dynamic networks with variable-length inputs and outputs (experimental)
 - MXNet now supports a new memory pool type for GPU memory (#11041).
 - Unlike the default memory pool requires exact size match to reuse released memory chunks, this new memory pool uses exponential-linear rounding so that similar sized memory chunks can all be reused, which is more suitable for all the workloads with dynamic-shape inputs and outputs. Set environment variable `MXNET_GPU_MEM_POOL_TYPE=Round` to enable.
 
@@ -152,7 +157,7 @@ MXNet Change Log
 - Add DataDesc type for the Scala Package (#11844)
 
 ### Usability Improvements
-- Improvements to MXNet Scala API usability([#10660](https://github.com/apache/incubator-mxnet/pull/10660), [#10787](https://github.com/apache/incubator-mxnet/pull/10787), [#10991](https://github.com/apache/incubator-mxnet/pull/10991))
+- Added NDArray auto-collector for Scala (#11751, #12232)
 - Added docs for mx.initializer.Constant (#10637)
 - Added build from souce instructions on windows (#11276)
 - Added a tutorial explaining how to use the profiler (#11274)