This is an automated email from the ASF dual-hosted git repository.
aaronmarkham pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/master by this push:
new 5fda0a5 add clojure tutorials to index (#14814)
5fda0a5 is described below
commit 5fda0a53f65b0b05921dcc77cad22880d85745ab
Author: Aaron Markham <[email protected]>
AuthorDate: Tue Apr 30 11:34:54 2019 -0700
add clojure tutorials to index (#14814)
---
docs/tutorials/index.md | 21 +++++++++++++++++++--
1 file changed, 19 insertions(+), 2 deletions(-)
diff --git a/docs/tutorials/index.md b/docs/tutorials/index.md
index 8dca7e8..01c59b1 100644
--- a/docs/tutorials/index.md
+++ b/docs/tutorials/index.md
@@ -40,12 +40,22 @@
vision/index.md
```
-MXNet tutorials can be found in this section. A variety of language bindings
are available for MXNet (including Python, Scala, C++ and R) and we have a
different tutorial section for each language.
+MXNet tutorials can be found in this section. A variety of language bindings
are available for MXNet (including Python, Scala, Java, Clojure, C++ and R) and
we have a different tutorial section for each language.
Are you new to MXNet, and don't have a preference on language? We currently
recommend starting with Python, and specifically the Gluon APIs (versus Module
APIs) as they're more flexible and easier to debug.
Another great resource for learning MXNet is our [examples
section](https://github.com/apache/incubator-mxnet/tree/master/example) which
includes a wide variety of models (from basic to state-of-the-art) for a wide
variety of tasks including: object detection, style transfer, reinforcement
learning, and many others.
+**Contents:**
+ * [Python Tutorials](#python-tutorials)
+ * [Scala Tutorials](#scala-tutorials)
+ * [Java Tutorials](#java-tutorials)
+ * [Clojure Tutorials](#clojure-tutorials)
+ * [C++ Tutorials](#c---tutorials)
+ * [R Tutorials](#r-tutorials)
+ * [Perl Tutorials](#perl-tutorials)
+ * [Contributing Tutorials](#contributing-tutorials)
+
<hr>
## Python Tutorials
@@ -57,8 +67,8 @@ A comprehensive introduction to Gluon can be found at [Dive
into Deep Learning](
Use the tutorial selector below to filter to the relevant tutorials. You might
see a download link in the top right corner of some tutorials. Use this to
download a Jupyter Notebook version of the tutorial, and re-run and adjust the
code as you wish.
<script type="text/javascript" src='../_static/js/options.js'></script>
-
<!-- Gluon vs Module -->
+
Select API:
<div class="btn-group opt-group" role="group">
<button type="button" class="btn btn-default opt active"
style="font-size:22px">Gluon</button>
@@ -186,6 +196,13 @@ Select API:
* [MXNet-Java
Examples](https://github.com/apache/incubator-mxnet/tree/master/scala-package/examples/src/main/java/org/apache/mxnetexamples/javaapi/infer)
<hr>
+## Clojure Tutorials
+* [How to use the NDArray API to perform vector/matrix/tensor
operations](../api/clojure/ndarray.html)
+* [Multi-GPU and multi-host distributed training with the KVStore
API](../api/clojure/kvstore.html)
+* [How to use the Symbol API to assemble neural networks from
layers](../api/clojure/symbol.html)
+* [How to use the Module API](../api/clojure/module.html) (deprecated)
+<hr>
+
## C++ Tutorials
* Models