--- layout: page title: Docs subtitle: Documentation for the supported language bindings action: Get Started action_url: /get_started permalink: /api/ tag: main_docs faq_categories: - Deployment Environments - Model - Speed - Security - Extend and Contribute to MXNet docs: - title: Python guide_link: /api/python.html api_link: /api/python/docs/api tutorial_link: /api/python/docs/tutorials icon: /assets/img/python_logo.svg tag: python - title: C/C++ guide_link: /api/cpp.html api_link: /api/cpp/docs/api tutorial_link: /api/cpp/docs/tutorials description: icon: /assets/img/cpp_logo.svg tag: cpp --- {%- for doc in page.docs -%} {%- if doc.tag == 'python' -%}

Python API

Python-first API

MXNet provides a comprehensive and flexible Python API to serve a broad community of developers with different levels of experience and wide ranging requirements. Current efforts are focused on the Gluon API. Gluon provides a clear, concise, and simple API for deep learning. It makes it easy to prototype, build, and train deep learning models without sacrificing training speed.

You can checkout the rich ecosystem built around Apache MXNet Gluon, including D2L.ai, GluonCV, GluonNLP and GluonTS.

While most of the usability improvement around training are focused on the python API, the performance of MXNet is accessible through a variety of different language bindings, checkout their respective API and guides below!

{%- endif -%} {%- endfor -%}

Other Bindings

{%- for doc in page.docs -%} {%- if doc.tag != 'python' -%}
{%- endif -%} {%- endfor -%}

Call for Contribution

The Clojure, Java, Julia, R, and Scala language bindings of MXNet v1.x were removed in v2.x due to some C APIs being deprecated and the bindings rely on the deprecated APIs. You can still use these language bindings in v1.x. MXNet's new C APIs in v2.x can be used to reestablish your preferred language binding. Your contribution is welcome!

MXNet Architecture

Building a high-performance deep learning library requires many systems-level design decisions. In this design note, we share the rationale for the specific choices made when designing _MXNet_. We imagine that these insights may be useful to both deep learning practitioners and builders of other deep learning systems.

Deep Learning System Design Concepts

The following pages address general design concepts for deep learning systems. Mainly, they focus on the following 3 areas: abstraction, optimization, and trade-offs between efficiency and flexibility. Additionally, we provide an overview of the complete MXNet system.

Developer Guide

FAQ