You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by an...@apache.org on 2018/06/04 18:06:58 UTC

[incubator-mxnet] branch master updated (21997a2 -> f754498)

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

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


    from 21997a2  allow int shape in parameter (#11104)
     add f754498  [MXNET-310] [ONNX-MXNet] API to import ONNX models into Gluon. (#10605)

No new revisions were added by this update.

Summary of changes:
 ci/docker/install/ubuntu_onnx.sh                   |   4 +-
 ci/docker/runtime_functions.sh                     |   5 +-
 python/mxnet/contrib/onnx/__init__.py              |   1 +
 python/mxnet/contrib/onnx/_import/__init__.py      |   1 +
 python/mxnet/contrib/onnx/_import/import_onnx.py   |  50 +++++-
 .../mxnet/contrib/onnx/_import/import_to_gluon.py  |  48 ++++++
 .../mxnet/contrib/onnx/_import/op_translations.py  | 159 ++++++++++--------
 .../contrib/onnx/_import/translation_utils.py      |  64 +++++--
 tests/python-pytest/onnx/backend.py                | 183 ---------------------
 tests/python-pytest/onnx/import/gluon_backend.py   |  70 ++++++++
 .../gluon_backend_rep.py}                          |  51 ++----
 .../onnx/import/gluon_backend_test.py              |  55 +++++++
 tests/python-pytest/onnx/import/mxnet_backend.py   |  68 ++++++++
 .../mxnet_backend_rep.py}                          |  19 +--
 .../onnx/import/mxnet_backend_test.py              |  55 +++++++
 .../{onnx_test.py => import/onnx_import_test.py}   | 103 +++---------
 tests/python-pytest/onnx/import/test_cases.py      |  94 +++++++++++
 tests/python-pytest/onnx/onnx_backend_test.py      | 169 -------------------
 18 files changed, 627 insertions(+), 572 deletions(-)
 create mode 100644 python/mxnet/contrib/onnx/_import/import_to_gluon.py
 delete mode 100644 tests/python-pytest/onnx/backend.py
 create mode 100644 tests/python-pytest/onnx/import/gluon_backend.py
 copy tests/python-pytest/onnx/{backend_rep.py => import/gluon_backend_rep.py} (52%)
 create mode 100644 tests/python-pytest/onnx/import/gluon_backend_test.py
 create mode 100644 tests/python-pytest/onnx/import/mxnet_backend.py
 rename tests/python-pytest/onnx/{backend_rep.py => import/mxnet_backend_rep.py} (85%)
 create mode 100644 tests/python-pytest/onnx/import/mxnet_backend_test.py
 rename tests/python-pytest/onnx/{onnx_test.py => import/onnx_import_test.py} (68%)
 create mode 100644 tests/python-pytest/onnx/import/test_cases.py
 delete mode 100644 tests/python-pytest/onnx/onnx_backend_test.py

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