nswamy closed pull request #12667: add mentions of the gluon toolkits and links to resources URL: https://github.com/apache/incubator-mxnet/pull/12667
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/docs/gluon/index.md b/docs/gluon/index.md index c0d9053cd2c..4f6d3c10f38 100644 --- a/docs/gluon/index.md +++ b/docs/gluon/index.md @@ -2,11 +2,14 @@  -Based on the [the Gluon API specification](https://github.com/gluon-api/gluon-api), the new Gluon library in Apache MXNet 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. Install the latest version of MXNet to get access to Gluon by either following these easy steps or using this simple command: +Based on the [the Gluon API specification](https://github.com/gluon-api/gluon-api), the new Gluon library in Apache MXNet 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. [Install the latest version of MXNet](/install/) to get access to Gluon. + +To get started with Gluon, checkout the following resources and tutorials: +* [60-minute Gluon Crash Course](https://gluon-crash-course.mxnet.io/) - six 10-minute lessons on using Gluon +* [GluonCV Toolkit](https://gluon-cv.mxnet.io/) - implementations of state of the art deep learning algorithms in **Computer Vision (CV)** +* [GluonNLP Toolkit](https://gluon-nlp.mxnet.io/) - implementations of state of the art deep learning algorithms in **Natural Language Processing (NLP)** +* [Gluon: The Straight Dope](https://gluon.mxnet.io/) - notebooks designed to teach deep learning from the ground up, all using the Gluon API -```bash - pip install mxnet -``` <br/> <div class="boxed"> Advantages @@ -19,6 +22,7 @@ Based on the [the Gluon API specification](https://github.com/gluon-api/gluon-ap 3. Dynamic Graphs: Gluon enables developers to define neural network models that are dynamic, meaning they can be built on the fly, with any structure, and using any of Python’s native control flow. 4. High Performance: Gluon provides all of the above benefits without impacting the training speed that the underlying engine provides. + <br/> <div class="boxed"> The Straight Dope @@ -96,3 +100,12 @@ with net.name_scope(): ```python net.hybridize() ``` + +## Learn More + +* [Gluon API Documentation](/api/python/gluon/gluon.html) +* [Gluon Tutorials](/tutorials/) +* [60-minute Gluon Crash Course](https://gluon-crash-course.mxnet.io/) +* [GluonCV Toolkit](https://gluon-cv.mxnet.io/) +* [GluonNLP Toolkit](https://gluon-nlp.mxnet.io/) +* [Gluon: The Straight Dope](https://gluon.mxnet.io/) ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
