You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[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;
8
8
*[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:
10
10
*[SplitTable](#nn.SplitTable) : splits a Tensor into a table of Tensors;
11
11
*[JoinTable](#nn.JoinTable) : joins a table of Tensors into a Tensor;
12
12
*[MixtureTable](#nn.MixtureTable) : mixture of experts weighted by a gater;
13
13
*[SelectTable](#nn.SelectTable) : select one element from a table;
14
+
*[FlattenTable](#nn.FlattenTable) : flattens a nested table hierarchy;
14
15
* Pair Modules compute a measure like distance or similarity from a pair (table) of input Tensors :
15
16
*[PairwiseDistance](#nn.PairwiseDistance) : outputs the `p`-norm. distance between inputs;
16
17
*[DotProduct](#nn.DotProduct) : outputs the dot product (similarity) between inputs;
0 commit comments