Customization¶
The following tutorials will help you learn how to customize MXNet.
Custom Layers for Gluonhttps://mxnet.incubator.apache.org/versions/master/tutorials/gluon/custom_layer.html
How to add new layer functionality to MXNet’s imperative interface.
Custom Operators Using Numpyhttps://mxnet.incubator.apache.org/versions/master/tutorials/gluon/customop.html
How to use Numpy to create custom MXNet operators.
New Layer Creationhttps://mxnet.incubator.apache.org/versions/master/faq/new_op.html
How to create new MXNet operators using CustomOp (Python) or NNVM (C++).
A Beginner’s Guide to Implementing Operators in MXNet Backendhttps://mxnet.incubator.apache.org/versions/master/faq/add_op_in_backend.html
How to create new MXNet operators in MXNet’s backend using C++. An example custom quadratic function op.