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>2014-09-08 03:13:22 +0400
committernicholas-leonard <nick@nikopia.org>2014-09-08 03:13:22 +0400
commitd0b5b08746e09444c475dfa5955a78678f0b17be (patch)
tree4a2a7328962908f98dd9d5a234ec7f045ad8e21f /README.md
parent5187dad92f485207d2194b27cb48b4e832c06516 (diff)
library documentation++
Diffstat (limited to 'README.md')
-rw-r--r--README.md35
1 files changed, 34 insertions, 1 deletions
diff --git a/README.md b/README.md
index be85c2d..9994b47 100644
--- a/README.md
+++ b/README.md
@@ -69,7 +69,40 @@ The constructor takes 2 mandatory and 4 optional arguments :
* `static` : when true (the defualt), returns parameters with keys that don't change from batch to batch;
* `verbose` : prints some additional information concerning the hierarchy during construction.
-Method `forward` returns an `output` Tensor of size 1D.
+The `forward` method returns an `output` Tensor of size 1D, while
+`backward` returns a table `{gradInput, gradTarget}`. The second
+variable is just a Tensor of zeros , such that the `targets` can be
+propagated through [Containers](https://github.com/torch/nn/blob/master/doc/containers.md#nn.Containers)
+like [ParallelTable](https://github.com/torch/nn/blob/master/doc/table.md#nn.ParallelTable).
+
+```lua
+> input = torch.randn(5,10)
+> target = torch.IntTensor{20,24,27,10,12}
+> gradOutput = torch.randn(5)
+> root_id = 29
+> input_size = 10
+> hierarchy = {
+>> [29]=torch.IntTensor{30,1,2}, [1]=torch.IntTensor{3,4,5},
+>> [2]=torch.IntTensor{6,7,8}, [3]=torch.IntTensor{9,10,11},
+>> [4]=torch.IntTensor{12,13,14}, [5]=torch.IntTensor{15,16,17},
+>> [6]=torch.IntTensor{18,19,20}, [7]=torch.IntTensor{21,22,23},
+>> [8]=torch.IntTensor{24,25,26,27,28}
+>> }
+> smt = nn.SoftMaxTree(input_size, hierarchy, root_id)
+> smt:forward{input, target}
+-3.5186
+-3.8950
+-3.7433
+-3.3071
+-3.0522
+[torch.DoubleTensor of dimension 5]
+> smt:backward({input, target}, gradOutput)
+{
+ 1 : DoubleTensor - size: 5x10
+ 2 : IntTensor - size: 5
+}
+
+```
<a name='nnx.TreeNLLCriterion''/>
### TreeNLLCriterion ###