Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix issues
Browse files Browse the repository at this point in the history
  • Loading branch information
szha committed Aug 13, 2020
1 parent 6c0bb95 commit efd0a9a
Show file tree
Hide file tree
Showing 12 changed files with 256 additions and 645 deletions.
19 changes: 6 additions & 13 deletions docs/python_docs/python/tutorials/deploy/export/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,18 @@ but you also have the option to export most models to the ONNX format.

.. container:: cards

.. card::
:title: Export ONNX Models
:link: onnx.html

Export your MXNet model to the Open Neural Exchange Format

.. card::
:title: Save / Load Parameters
:link: ../../packages/gluon/blocks/save_load_params.html

Save and Load your model parameters with MXnet


.. card::
:title: Export with GluonCV
:link: https://gluon-cv.mxnet.io/build/examples_deployment/export_network.html

How to export models trained with MXNet GluonCV.

.. card::
:title: Export ONNX Models
:link: onnx.html

Export your MXNet model to the Open Neural Exchange Format

.. toctree::
:hidden:
:maxdepth: 1
Expand Down
48 changes: 28 additions & 20 deletions docs/python_docs/python/tutorials/deploy/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,36 +21,30 @@ Deployment
The following tutorials will help you learn how to deploy MXNet on various
platforms and in different language environments.

Export_
Export
------
The following tutorials will help you learn export MXNet models.

.. container:: cards

.. card::
:title: Export ONNX Models
:link: export/onnx.html

Export your MXNet model to the Open Neural Exchange Format

.. card::
:title: Export with GluonCV
:link: https://gluon-cv.mxnet.io/build/examples_deployment/export_network.html

How to export models trained with MXNet GluonCV.

Inference_
.. card::
:title: Export ONNX Models
:link: export/onnx.html

Export your MXNet model to the Open Neural Exchange Format

Inference
---------
The following tutorials will help you learn how to deploy MXNet models for inference applications.

.. container:: cards

.. card::
:title: CPP Inference
:link: inference/cpp.html

How to deploy MXNet C++ Models

.. card::
:title: GluonCV Models in a C++ Inference Application
:link: https://gluon-cv.mxnet.io/build/examples_deployment/cpp_inference.html
Expand All @@ -63,7 +57,25 @@ The following tutorials will help you learn how to deploy MXNet models for infer

How to use quantized GluonCV models for inference on Intel Xeon Processors to gain higher performance.

Cloud_
.. card::
:title: C++
:link: inference/cpp.html

How to use MXNet models in a C++ environment.

.. card::
:title: Image Classification on Jetson
:link: inference/image_classification_jetson.html

Example of running a pretrained image classification model on a Jetson module.

.. card::
:title: Object Detection on Jetson
:link: https://gluon-cv.mxnet.io/build/examples_detection/demo_jetson.html

Example of running a pretrained object detection model on a Jetson module.

Cloud
-----
The following tutorials will show you how to use MXNet on AWS.

Expand All @@ -89,7 +101,7 @@ The following tutorials will show you how to use MXNet on AWS.

.. card::
:title: Training with Data from S3
:link: https://mxnet.apache.org/api/faq/s3_integration
:link: /api/faq/s3_integration

How to train with data from Amazon S3 buckets.

Expand All @@ -112,7 +124,3 @@ Security
export/index
inference/index
run-on-aws/index

.. _Export: export/index.html
.. _Inference: inference/index.html
.. _Cloud: run-on-aws/index.html
12 changes: 0 additions & 12 deletions docs/python_docs/python/tutorials/deploy/inference/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,24 +34,12 @@ The following tutorials will help you learn how to deploy MXNet models for infer

How to use quantized GluonCV models for inference on Intel Xeon Processors to gain higher performance.


The following tutorials will help you learn how to deploy MXNet models for inference applications.

.. container:: cards

.. card::
:title: C++
:link: cpp.html

How to use MXNet models in a C++ environment.


.. card::
:title: Raspberry Pi
:link: wine_detector.html

Example of running a wine detector on a raspberry pi.

.. card::
:title: Image Classification on Jetson
:link: image_classification_jetson.html
Expand Down
260 changes: 0 additions & 260 deletions docs/python_docs/python/tutorials/extend/custom_layer.md

This file was deleted.

12 changes: 9 additions & 3 deletions docs/python_docs/python/tutorials/extend/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,16 @@ The following tutorials will help you learn how to customize MXNet.

.. card::
:title: Custom Layers for Gluon
:link: custom_layer.html
:link: ../packages/gluon/blocks/custom-layer.html

How to add new layer functionality to MXNet's imperative interface.

.. card::
:title: Custom Loss
:link: ../packages/gluon/loss/custom-loss.html

A guide to implementing custom losses.

.. card::
:title: Custom Operators Using Numpy
:link: customop.html
Expand All @@ -36,13 +42,13 @@ The following tutorials will help you learn how to customize MXNet.

.. card::
:title: New Operator Creation
:link: https://mxnet.apache.org/api/faq/new_op
:link: /api/faq/new_op

How to create new MXNet operators using CustomOp (Python) or NNVM (C++).

.. card::
:title: A Beginner’s Guide to Implementing Operators in MXNet Backend
:link: https://mxnet.apache.org/api/faq/add_op_in_backend
:link: /api/faq/add_op_in_backend

How to create new MXNet operators in MXNet's backend using C++.
An example custom quadratic function op.
Expand Down
Loading

0 comments on commit efd0a9a

Please sign in to comment.