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 2019/05/20 21:28:03 UTC

[incubator-mxnet] branch master updated (aac3cdb -> 0ac48b6)

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

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


    from aac3cdb  Revert "[MXNET-1333] Estimator and Fit API (#14629)" (#15008)
     add 03e059f  [MXNet-1334][Fit API]base class for estimator and eventhandler (#14346)
     add e58a001  Fixed issue where the estimator was printing beyond the dataset size … (#14464)
     add faec0a9  [MXNet-1349][Fit API]Add validation support and unit tests for fit() API (#14442)
     add 767e34d  [MXNet-1340][Fit API]Update train stats (#14494)
     add c6afb73  [MXNet-1375][Fit API]Added RNN integration test for fit() API (#14547)
     add ab7039e  [MXNet-1343][Fit API]Add CNN integration test for fit() API (#14405)
     add d4f7744  [MXNET-1344, 1346][FIT API] Retrieve Batch size and Logging verbose support for Gluon fit() API (#14587)
     add ce21814  move estimator to contrib (#14633)
     add 7ae7cb1  move to gluon contrib (#14635)
     add 47b65d0  [Fit API] improve event handlers (#14685)
     add 40ee94f  [MXNET-1396][Fit-API] Update default handler logic (#14765)
     add 780ad04  [Fit API] update estimator (#14849)
     add 0ac48b6  [Fit-API] Adress PR comments (#14885)

No new revisions were added by this update.

Summary of changes:
 ci/docker/runtime_functions.sh                     |  10 +
 .../mxnet/gluon/contrib/estimator}/__init__.py     |   8 +-
 python/mxnet/gluon/contrib/estimator/estimator.py  | 408 ++++++++++++
 .../mxnet/gluon/contrib/estimator/event_handler.py | 705 +++++++++++++++++++++
 python/mxnet/gluon/trainer.py                      |   7 +
 tests/nightly/JenkinsfileForBinaries               |   8 +
 tests/nightly/estimator/test_estimator_cnn.py      | 151 +++++
 tests/nightly/estimator/test_sentiment_rnn.py      | 276 ++++++++
 tests/python/unittest/test_gluon_estimator.py      | 371 +++++++++++
 tests/python/unittest/test_gluon_event_handler.py  | 198 ++++++
 10 files changed, 2137 insertions(+), 5 deletions(-)
 copy {plugin/opencv => python/mxnet/gluon/contrib/estimator}/__init__.py (90%)
 create mode 100644 python/mxnet/gluon/contrib/estimator/estimator.py
 create mode 100644 python/mxnet/gluon/contrib/estimator/event_handler.py
 create mode 100644 tests/nightly/estimator/test_estimator_cnn.py
 create mode 100644 tests/nightly/estimator/test_sentiment_rnn.py
 create mode 100644 tests/python/unittest/test_gluon_estimator.py
 create mode 100644 tests/python/unittest/test_gluon_event_handler.py