Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/clementfarabet/lua---nnx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Leonard <nick@nikopia.org>2015-09-03 17:26:58 +0300
committerNicholas Leonard <nick@nikopia.org>2015-09-03 17:26:58 +0300
commitd0d85e579639953e100ea35b5fbd78519e47fe22 (patch)
treed59c701cfc8c0f1c45e7845773e0018704b26385
parenta9026fd1377757a148c464784e2d2dce6580c138 (diff)
doc++
-rw-r--r--README.md21
1 files changed, 11 insertions, 10 deletions
diff --git a/README.md b/README.md
index 1fa7574..c2d5777 100644
--- a/README.md
+++ b/README.md
@@ -7,17 +7,13 @@ their way into 'nn' (some already have).
## Library Documentation ##
This section includes documentation for the following objects:
- * [Recurrent](#nnx.Recurrent) : a generalized recurrent neural network container;
- * [SoftMaxTree](#nnx.SoftMaxTree) : a hierarchical log-softmax Module;
- * [TreeNLLCriterion](#nnx.TreeNLLCriterion) : a negative log-likelihood Criterion for the SoftMaxTree;
- * [PushTable (and PullTable)](#nnx.PushTable) : extracts a table element and inserts it later in the network;
- * [MultiSoftMax](#nnx.MultiSoftMax) : performs a softmax over the last dimension of a 2D or 3D input;
- * [SpatialReSampling](#nnx.SpatialReSampling) : performs bilinear resampling of a 3D or 4D input image;
-
-<a name='nnx.Recurrent'/>
-### Recurrent ###
-DEPRECATED July 6th, 2015. Use [rnn](https://github.com/Element-Research/rnn) instead.
+ * [SoftMaxTree](#nnx.SoftMaxTree) : a hierarchical log-softmax Module;
+ * [TreeNLLCriterion](#nnx.TreeNLLCriterion) : a negative log-likelihood Criterion for the SoftMaxTree;
+ * [PushTable (and PullTable)](#nnx.PushTable) : extracts a table element and inserts it later in the network;
+ * [MultiSoftMax](#nnx.MultiSoftMax) : performs a softmax over the last dimension of a 2D or 3D input;
+ * [SpatialReSampling](#nnx.SpatialReSampling) : performs bilinear resampling of a 3D or 4D input image;
+ * [Recurrent](#nnx.Recurrent) : a generalized recurrent neural network container;
<a name='nnx.SoftMaxTree'/>
### SoftMaxTree ###
@@ -231,3 +227,8 @@ tests:
> nnx.test_all()
> nnx.test_omp()
```
+
+<a name='nnx.Recurrent'/>
+### Recurrent ###
+
+DEPRECATED July 6th, 2015. Use [rnn](https://github.com/Element-Research/rnn) instead.