You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by la...@apache.org on 2020/07/14 21:29:16 UTC

[incubator-mxnet] branch master updated (7f7e1c5 -> 7c9c4fc)

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

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


    from 7f7e1c5  Add better partial args/aux handling in symbol optimize_for (#18350)
     add 7c9c4fc  Merge content from numpy.mxnet.io into mxnet official website (#18691)

No new revisions were added by this update.

Summary of changes:
 .../getting-started/crash-course/1-ndarray.md      |  70 ++-
 .../tutorials/getting-started/crash-course/2-nn.md |  48 +-
 .../getting-started/crash-course/3-autograd.md     |  47 +-
 .../getting-started/crash-course/4-train.md        |  58 +-
 .../getting-started/crash-course/5-predict.md      |  88 ++-
 .../getting-started/crash-course/6-use_gpus.md     |  93 +--
 .../getting-started/crash-course/index.rst         |  42 +-
 .../getting-started/deepnumpy/cheat-sheet.md       | 463 +++++++++++++++
 .../deepnumpy/deepnumpy-vs-numpy.md                | 113 ++++
 .../mkldnn => getting-started/deepnumpy}/index.rst |  26 +-
 .../python/tutorials/getting-started/index.rst     |   7 +
 .../packages/ndarray/deepnumpy/arrays.indexing.rst | 356 ++++++++++++
 .../packages/ndarray/deepnumpy/arrays.ndarray.rst  | 631 +++++++++++++++++++++
 .../packages/ndarray/deepnumpy/arrays.rst          |  42 ++
 .../tutorials/packages/ndarray/deepnumpy/index.rst |  30 +
 .../tutorials/packages/ndarray/deepnumpy/npx.rst   |  85 +++
 .../packages/ndarray/deepnumpy/random/index.rst    |  90 +++
 .../ndarray/deepnumpy/routines.array-creation.rst  | 124 ++++
 .../deepnumpy/routines.array-manipulation.rst      | 143 +++++
 .../packages/ndarray/deepnumpy/routines.io.rst     | 114 ++++
 .../packages/ndarray/deepnumpy/routines.linalg.rst | 106 ++++
 .../packages/ndarray/deepnumpy/routines.math.rst   | 213 +++++++
 .../packages/ndarray/deepnumpy/routines.rst        |  47 ++
 .../packages/ndarray/deepnumpy/routines.sort.rst   |  49 ++
 .../ndarray/deepnumpy/routines.statistics.rst      |  74 +++
 .../python/tutorials/packages/ndarray/index.rst    |   8 +-
 26 files changed, 2915 insertions(+), 252 deletions(-)
 create mode 100644 docs/python_docs/python/tutorials/getting-started/deepnumpy/cheat-sheet.md
 create mode 100644 docs/python_docs/python/tutorials/getting-started/deepnumpy/deepnumpy-vs-numpy.md
 copy docs/python_docs/python/tutorials/{performance/backend/mkldnn => getting-started/deepnumpy}/index.rst (66%)
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/arrays.indexing.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/arrays.ndarray.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/arrays.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/index.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/npx.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/random/index.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.array-creation.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.array-manipulation.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.io.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.linalg.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.math.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.sort.rst
 create mode 100644 docs/python_docs/python/tutorials/packages/ndarray/deepnumpy/routines.statistics.rst