tree: cb742ad4d6e49a1b0404a0a843c3eaa00c33749a [path history] [tgz]
  1. adversary/
  2. autoencoder/
  3. automatic-mixed-precision/
  4. bayesian-methods/
  5. bi-lstm-sort/
  6. caffe/
  7. capsnet/
  8. captcha/
  9. cnn_chinese_text_classification/
  10. cnn_text_classification/
  11. ctc/
  12. deep-embedded-clustering/
  13. distributed_training/
  14. distributed_training-horovod/
  15. dsd/
  16. extensions/
  17. fcn-xs/
  18. gan/
  19. gluon/
  20. image-classification/
  21. kaggle-ndsb1/
  22. kaggle-ndsb2/
  23. model-parallel/
  24. module/
  25. multi-task/
  26. multi_threaded_inference/
  27. multivariate_time_series/
  28. named_entity_recognition/
  29. nce-loss/
  30. neural-style/
  31. neural_collaborative_filtering/
  32. numpy-ops/
  33. onnx/
  34. profiler/
  35. quantization/
  36. quantization_inc/
  37. rcnn/
  38. recommenders/
  39. reinforcement-learning/
  40. restricted-boltzmann-machine/
  41. rnn/
  42. sparse/
  43. speech_recognition/
  44. ssd/
  45. stochastic-depth/
  46. svm_mnist/
  47. svrg_module/
  48. vae-gan/
  49. MXNetTutorialTemplate.ipynb
  50. README.md
example/README.md

MXNet Examples

This page contains a curated list of awesome MXNet examples, tutorials and blogs. It is inspired by awesome-php and awesome-machine-learning. See also Awesome-MXNet for a similar list.

Contributing

If you want to contribute to this list and the examples, please open a new pull request.

Examples

Example applications or scripts should be submitted in this example folder.

Tutorials

If you have a tutorial idea for the website, download the Jupyter notebook tutorial template.

Tutorial location

Notebook tutorials should be submitted in the docs/tutorials folder, so that they maybe rendered in the web site's tutorial section.

Do not forget to udpdate the docs/tutorials/index.md for your tutorial to show up on the website.

Tutorial formatting

The site expects the format to be markdown, so export your notebook as a .md via the Jupyter web interface menu (File > Download As > Markdown). Then, to enable the download notebook button in the web site's UI (example), add the following as the last line of the file (example):

<!-- INSERT SOURCE DOWNLOAD BUTTONS -->

If you want some lines to show-up in the markdown but not in the generated notebooks, add this comment <!--notebook-skip-line--> after your ![png](img_url). Like this:

![png](img_url.png)<!--notebook-skip-line-->

Typically when you have a plt.imshow() you want the image tag [png](img.png) in the .md but not in the downloaded notebook as the user will re-generate the plot at run-time.

Tutorial tests

As part of making sure all our tutorials are running correctly with the latest version of MXNet, each tutorial is run automatically through a python2 and python3 jupyter notebook kernel in the CI, in a GPU environment, checking for errors and warnings.

Add your own test here tests/tutorials/test_tutorials.py. (If you forget, don't worry your PR will not pass the sanity check).

If your tutorial depends on specific packages, simply add them to this provisionning script: ci/docker/install/ubuntu_tutorials.sh

List of examples

Languages Binding Examples


Deep Learning Examples in the MXNet Project Repository


Other Deep Learning Examples with MXNet

IPython Notebooks


Mobile App Examples


Web Predictive Services


  • MXNet Shinny - Source code for quickly creating a Shiny R app to host online image classification.
  • Machine Eye - Web service for local image file/image URL classification without uploading.

List of tutorials

GPU Technology Conference 2016 Hands-on session

Deep learning for hackers with MXNet

  • Deep learning for hackers with MXNet (1) GPU installation and MNIST English Chinese - a tutorial of installing MXnet with GPU and introduction to deep learning by MNIST example.
  • Deep learning for hackers with MXNet (2): Neural art English Chinese - a tutorial of generating Van Gogh style cat paintings.

MXNet on the cloud

Kaggle tutorials

Learning Note

Machine Learning Challenge Winning Solutions

Tools with MXnet

  • TensorFuse - Common interface for Theano, CGT, TensorFlow, and mxnet (experimental) by dementrock
  • MXnet-face - Using mxnet for face-related algorithm by tornadomeet where the single model get 97.13%+-0.88% accuracy on LFW, and with only 20MB size.
  • MinPy - Pure numpy practice with third party operator Integration and MXnet as backend for GPU computing
  • MXNet Model Server - a flexible and easy to use tool for serving Deep Learning models