Skip to content

Commit 0224350

Browse files
added FlattenTable to table.md index
1 parent 5b56739 commit 0224350

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/table.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ This allows one to build very rich architectures:
66
* Table Container Modules encapsulate sub-Modules:
77
* [ConcatTable](#nn.ConcatTable) : applies each member module to the same input [Tensor](https://github.com/torch/torch7/blob/master/doc/tensor.md#tensor) and outputs a table;
88
* [ParallelTable](#nn.ParallelTable) : applies the `ith` member module to the `ith` input and outputs a table;
9-
* Table Conversion Modules convert between tables and Tensors:
9+
* Table Conversion Modules convert between tables and Tensors or tables:
1010
* [SplitTable](#nn.SplitTable) : splits a Tensor into a table of Tensors;
1111
* [JoinTable](#nn.JoinTable) : joins a table of Tensors into a Tensor;
1212
* [MixtureTable](#nn.MixtureTable) : mixture of experts weighted by a gater;
1313
* [SelectTable](#nn.SelectTable) : select one element from a table;
14+
* [FlattenTable](#nn.FlattenTable) : flattens a nested table hierarchy;
1415
* Pair Modules compute a measure like distance or similarity from a pair (table) of input Tensors :
1516
* [PairwiseDistance](#nn.PairwiseDistance) : outputs the `p`-norm. distance between inputs;
1617
* [DotProduct](#nn.DotProduct) : outputs the dot product (similarity) between inputs;

0 commit comments

Comments
 (0)