Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 46d0d1b

Browse files
leopdpiiswrong
authored andcommitted
Docs: tutorials page reformatting TOC (#3838)
* Reformating tutorials to improve TOC. Adding some academic references. * fixup wording
1 parent f30d640 commit 46d0d1b

File tree

1 file changed

+26
-28
lines changed

1 file changed

+26
-28
lines changed

docs/tutorials/index.md

+26-28
Original file line numberDiff line numberDiff line change
@@ -4,57 +4,55 @@
44

55
### Computer Vision
66

7-
#### [Image Classification](http://mxnet.io/tutorials/computer_vision/image_classification.html)
7+
- [Image Classification](http://mxnet.io/tutorials/computer_vision/image_classification.html)
88
*A simple example of classifying images using a convolutional neural network.*
9-
10-
#### [Image Segmentation](http://mxnet.io/tutorials/computer_vision/segmentation.html)
9+
- [Image Segmentation](http://mxnet.io/tutorials/computer_vision/segmentation.html)
1110
*An example of segmenting various object out of an image using a convolutional neural network.*
12-
13-
#### [Object Detection using Faster R-CNN](http://mxnet.io/tutorials/computer_vision/detection.html)
11+
- [Object Detection using Faster R-CNN](http://mxnet.io/tutorials/computer_vision/detection.html)
1412
*An example of detecting object bounding boxes in an image using a region proposal network.*
15-
16-
#### [Neural Art: Adding Artistic Style to Images](http://mxnet.io/tutorials/computer_vision/neural_art.html)
13+
- [Neural Art: Adding Artistic Style to Images](http://mxnet.io/tutorials/computer_vision/neural_art.html)
1714
*An example of transferring styles of famous artists onto an image using a convolutional neural network.*
18-
19-
#### [Large Scale Image Classification: Training With 14 Million Images on a Single Machine](http://mxnet.io/tutorials/computer_vision/imagenet_full.html)
15+
- [Large Scale Image Classification: Training With 14 Million Images on a Single Machine](http://mxnet.io/tutorials/computer_vision/imagenet_full.html)
2016
*An advanced example of training a deep convolutional network on the large ImageNet dataset efficiently.*
2117

2218
### Natural Language Processing
2319

24-
#### [Recurrent Neural Networks](http://mxnet.io/tutorials/nlp/rnn.html)
25-
#### [Text Classification using Convolutional Neural Network](http://mxnet.io/tutorials/nlp/cnn.html)
26-
#### [NCE Loss](http://mxnet.io/tutorials/nlp/nce_loss.html)
20+
- [Recurrent Neural Networks](http://mxnet.io/tutorials/nlp/rnn.html)
21+
- [Text Classification using Convolutional Neural Network](http://mxnet.io/tutorials/nlp/cnn.html)
22+
- [NCE Loss](http://mxnet.io/tutorials/nlp/nce_loss.html)
23+
*Using Noise Contrastive Estimation (NCE) loss \[[Mnih 2013](http://papers.nips.cc/paper/5165-learning-word-embeddings-efficiently-with-noise-contrastive-estimation.pdf)\] to scale efficiently when predicting against large vocabularies.*
2724

2825
### Speech Recognition
2926

30-
#### [Speech LSTM](http://mxnet.io/tutorials/speech_recognition/speech_lstm.html)
31-
#### [Baidu Warp CTC](http://mxnet.io/tutorials/speech_recognition/baidu_warp_ctc.html)
27+
- [Speech LSTM](http://mxnet.io/tutorials/speech_recognition/speech_lstm.html)
28+
- [Baidu Warp CTC](http://mxnet.io/tutorials/speech_recognition/baidu_warp_ctc.html)
29+
*Connectionist Temporal Classification (CTC) \[[Graves, 2006](http://www.cs.toronto.edu/~graves/icml_2006.pdf)\] allows prediction against a sequence when the alignment to the input is not known beforehand. Warp CTC provides an efficient GPU implementation of this technique.*
3230

3331
### Unsupervised Learning
3432

35-
#### [Generative Adversarial Network](http://mxnet.io/tutorials/unsupervised_learning/gan.html)
36-
#### [Auto Encoders](http://mxnet.io/tutorials/unsupervised_learning/auto_encoders.html)
33+
- [Generative Adversarial Network](http://mxnet.io/tutorials/unsupervised_learning/gan.html)
34+
- [Auto Encoders](http://mxnet.io/tutorials/unsupervised_learning/auto_encoders.html)
3735

3836
### General Machine Learning
3937

40-
#### [Recommendation Systems](http://mxnet.io/tutorials/general_ml/recommendation_systems.html)
38+
- [Recommendation Systems](http://mxnet.io/tutorials/general_ml/recommendation_systems.html)
4139

4240
## Language Tutorials
4341

4442
### Python Tutorials
45-
* [NDArray](http://mxnet.io/tutorials/python/ndarray.html)
46-
* [Symbol](http://mxnet.io/tutorials/python/symbol.html)
47-
* [KVStore](http://mxnet.io/tutorials/python/kvstore.html)
43+
- [NDArray](http://mxnet.io/tutorials/python/ndarray.html)
44+
- [Symbol](http://mxnet.io/tutorials/python/symbol.html)
45+
- [KVStore](http://mxnet.io/tutorials/python/kvstore.html)
4846

4947
### R Tutorials
50-
* [NDArray](http://mxnet.io/tutorials/r/ndarray.html)
51-
* [Symbol](http://mxnet.io/tutorials/r/symbol.html)
52-
* [Write and use callback functions](http://mxnet.io/tutorials/r/CallbackFunctionTutorial.html)
53-
* [Neural Networks with MXNet in Five Minutes](http://mxnet.io/tutorials/r/fiveMinutesNeuralNetwork.html)
54-
* [Classify Real-World Images with Pre-trained Model](http://mxnet.io/tutorials/r/classifyRealImageWithPretrainedModel.html)
55-
* [Handwritten Digits Classification Competition](http://mxnet.io/tutorials/r/mnistCompetition.html)
56-
* [Character Language Model using RNN](http://mxnet.io/tutorials/r/charRnnModel.html)
48+
- [NDArray](http://mxnet.io/tutorials/r/ndarray.html)
49+
- [Symbol](http://mxnet.io/tutorials/r/symbol.html)
50+
- [Write and use callback functions](http://mxnet.io/tutorials/r/CallbackFunctionTutorial.html)
51+
- [Neural Networks with MXNet in Five Minutes](http://mxnet.io/tutorials/r/fiveMinutesNeuralNetwork.html)
52+
- [Classify Real-World Images with Pre-trained Model](http://mxnet.io/tutorials/r/classifyRealImageWithPretrainedModel.html)
53+
- [Handwritten Digits Classification Competition](http://mxnet.io/tutorials/r/mnistCompetition.html)
54+
- [Character Language Model using RNN](http://mxnet.io/tutorials/r/charRnnModel.html)
5755

5856
## Other Resources
5957
- Collection of MXNet Tutorials for NVidia GTC 2016. [MXNet GTC 15 Tutorials](https://github.com/dmlc/mxnet-gtc-tutorial)
60-
- Collection of [MXNet Code Examples](https://github.com/dmlc/mxnet/tree/master/example)
58+
- Collection of [MXNet Code Examples](https://github.com/dmlc/mxnet/tree/master/example)

0 commit comments

Comments
 (0)