MXNet is a deep learning library designed by the Apache Software Foundation. It supports both imperative and symbolic programming. It is designed for speed by serializing functions with dependencies while running functions with no dependencies in parallel. It provides compatibility with CPU and GPU processors.
Exploring MXNet
Available functions
MXNet provides the means to run a very extensive list of deep learning methods, including the following:
- CNN
- RNN
- GAN
- LSTM
- Autoencoders
- RBM/DBN
- Reinforcement learning
Getting started with MXNet
For MXNet, we will use the same...