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/03/08 20:48:01 UTC

[incubator-mxnet] branch nlp_toolkit updated (29f7f43 -> 649b086)

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

zhasheng pushed a change to branch nlp_toolkit
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from 29f7f43  gluon dataset download refactor (#10008)
     add 2a9c7d9  [Perl] Sparse feature. (#9988)
     add 0fe04e9  add SameType as default type inference function in imperative mode (#9942)
     add 098c9d9  add name (#10007)
     add 117c509  Fix bug for Dropout with axes, also adding unit test (#10030)
     add 39c0fd8  Fix ndarray assignment issue with basic indexing (#10022)
     add 7b4594d  Update an incorrect description in the API doc.  (#10034)
     add c162c9d  update namespace (#10036)
     add c3f7961  correct resnet link in model zoo page (#10033)
     add f04edb5  [MXNET-31] Support variable sequence length in gluon.RecurrentCell  (#9934)
     add 649b086  add axes support for dropouts in gluon (#10032)

No new revisions were added by this update.

Summary of changes:
 CONTRIBUTORS.md                                    |    6 +-
 docker/install/perl.sh                             |    2 +-
 docker_multiarch/Dockerfile.run.ubuntu-17.04.perl  |    2 +-
 docs/api/perl/index.md                             |    5 +-
 docs/install/build_from_source.md                  |    2 +-
 docs/install/osx_setup.md                          |    2 +-
 docs/install/ubuntu_setup.md                       |    2 +-
 perl-package/AI-MXNet/Changes                      |    3 +
 perl-package/AI-MXNet/MANIFEST                     |   10 +
 perl-package/AI-MXNet/META.json                    |    9 +-
 perl-package/AI-MXNet/META.yml                     |    7 +-
 perl-package/AI-MXNet/Makefile.PL                  |   12 +-
 perl-package/AI-MXNet/README                       |    2 +-
 .../sparse/matrix_factorization/README.md          |    7 +-
 .../sparse/matrix_factorization/get_data.sh        |   15 +-
 .../examples/sparse/matrix_factorization/train.pl  |  184 +++
 .../AI-MXNet/examples}/sparse/wide_deep/README.md  |    4 +-
 .../AI-MXNet/examples/sparse/wide_deep/get_data.sh |   17 +-
 .../AI-MXNet/examples/sparse/wide_deep/train.pl    |  301 +++++
 perl-package/AI-MXNet/lib/AI/MXNet.pm              |    5 +-
 perl-package/AI-MXNet/lib/AI/MXNet/AutoGrad.pm     |    2 +-
 perl-package/AI-MXNet/lib/AI/MXNet/Base.pm         |  131 +-
 perl-package/AI-MXNet/lib/AI/MXNet/CachedOp.pm     |    4 +-
 perl-package/AI-MXNet/lib/AI/MXNet/Executor.pm     |    2 +-
 perl-package/AI-MXNet/lib/AI/MXNet/IO.pm           |   23 +-
 perl-package/AI-MXNet/lib/AI/MXNet/KVStore.pm      |  168 ++-
 perl-package/AI-MXNet/lib/AI/MXNet/Module.pm       |    8 +-
 perl-package/AI-MXNet/lib/AI/MXNet/Module/Base.pm  |    6 +-
 perl-package/AI-MXNet/lib/AI/MXNet/Monitor.pm      |    2 +-
 perl-package/AI-MXNet/lib/AI/MXNet/NDArray.pm      |   96 +-
 perl-package/AI-MXNet/lib/AI/MXNet/NDArray/Base.pm |   43 +-
 .../AI-MXNet/lib/AI/MXNet/NDArray/Sparse.pm        | 1342 ++++++++++++++++++++
 perl-package/AI-MXNet/lib/AI/MXNet/Optimizer.pm    |  743 +++++++++--
 perl-package/AI-MXNet/lib/AI/MXNet/Symbol.pm       |   40 +-
 perl-package/AI-MXNet/lib/AI/MXNet/Symbol/Base.pm  |    2 +-
 .../MXNet/{Contrib/NDArray.pm => Symbol/Sparse.pm} |   11 +-
 perl-package/AI-MXNet/lib/AI/MXNet/TestUtils.pm    |  456 ++++++-
 perl-package/AI-MXNet/lib/AI/MXNet/Types.pm        |   12 +-
 perl-package/AI-MXNet/t/test_autograd.t            |  105 +-
 perl-package/AI-MXNet/t/test_init.t                |   24 +-
 perl-package/AI-MXNet/t/test_io.t                  |   48 +-
 perl-package/AI-MXNet/t/test_kvstore.t             |   93 +-
 perl-package/AI-MXNet/t/test_module.t              |  257 +++-
 perl-package/AI-MXNet/t/test_optimizers.t          |  629 ++++++++-
 perl-package/AI-MXNet/t/test_sparse_ndarray.t      | 1005 +++++++++++++++
 perl-package/AI-MXNetCAPI/Changes                  |    3 +
 perl-package/AI-MXNetCAPI/META.json                |    2 +-
 perl-package/AI-MXNetCAPI/META.yml                 |    2 +-
 perl-package/AI-MXNetCAPI/README                   |    2 +-
 perl-package/AI-MXNetCAPI/lib/AI/MXNetCAPI.pm      |    2 +-
 perl-package/AI-MXNetCAPI/mxnet.i                  |  216 +++-
 perl-package/AI-MXNetCAPI/mxnet_typemaps.i         |   45 +-
 perl-package/AI-NNVMCAPI/Changes                   |    3 +
 perl-package/AI-NNVMCAPI/META.json                 |    2 +-
 perl-package/AI-NNVMCAPI/META.yml                  |    2 +-
 perl-package/AI-NNVMCAPI/README                    |    2 +-
 perl-package/AI-NNVMCAPI/lib/AI/NNVMCAPI.pm        |    2 +-
 perl-package/README.md                             |    5 +-
 python/mxnet/gluon/contrib/data/text.py            |    3 +-
 python/mxnet/gluon/contrib/rnn/rnn_cell.py         |   36 +-
 python/mxnet/gluon/data/vision/datasets.py         |    8 +-
 python/mxnet/gluon/model_zoo/vision/__init__.py    |    2 +-
 python/mxnet/gluon/nn/basic_layers.py              |    9 +-
 python/mxnet/gluon/rnn/rnn_cell.py                 |  125 +-
 python/mxnet/gluon/utils.py                        |    8 +-
 python/mxnet/ndarray/ndarray.py                    |    2 +
 python/mxnet/ndarray/sparse.py                     |    2 +-
 src/common/exec_utils.h                            |   61 +
 src/executor/exec_pass.h                           |   11 -
 src/executor/infer_graph_attr_pass.cc              |   56 +-
 src/imperative/imperative_utils.h                  |   14 +-
 src/operator/nn/dropout-inl.h                      |    2 +-
 tests/ci_build/install/ubuntu_install_perl.sh      |    2 +-
 tests/python/unittest/test_gluon.py                |   40 +
 tests/python/unittest/test_gluon_contrib.py        |    3 -
 tests/python/unittest/test_gluon_rnn.py            |   76 ++
 tests/python/unittest/test_ndarray.py              |    5 +
 tests/python/unittest/test_operator.py             |   39 +-
 tests/travis/setup.sh                              |    4 +-
 79 files changed, 6163 insertions(+), 482 deletions(-)
 copy {example => perl-package/AI-MXNet/examples}/sparse/matrix_factorization/README.md (60%)
 copy example/gluon/embedding_learning/get_cub200_data.sh => perl-package/AI-MXNet/examples/sparse/matrix_factorization/get_data.sh (76%)
 create mode 100755 perl-package/AI-MXNet/examples/sparse/matrix_factorization/train.pl
 copy {example => perl-package/AI-MXNet/examples}/sparse/wide_deep/README.md (89%)
 copy matlab/get_inception_model.sh => perl-package/AI-MXNet/examples/sparse/wide_deep/get_data.sh (74%)
 create mode 100755 perl-package/AI-MXNet/examples/sparse/wide_deep/train.pl
 create mode 100644 perl-package/AI-MXNet/lib/AI/MXNet/NDArray/Sparse.pm
 copy perl-package/AI-MXNet/lib/AI/MXNet/{Contrib/NDArray.pm => Symbol/Sparse.pm} (80%)
 create mode 100644 perl-package/AI-MXNet/t/test_sparse_ndarray.t

-- 
To stop receiving notification emails like this one, please contact
zhasheng@apache.org.