|
Absolute(x)
Returns the elementwise absolute of any argument. |
source code
|
|
|
OneMinus(x)
Returns elementwise '1 - x' of any argument. |
source code
|
|
|
Identity(x)
Return whatever it was called with. |
source code
|
|
|
FirstAxisMean(x)
Mean computed along the first axis. |
source code
|
|
|
FirstAxisSumNotZero(x)
Sum computed over first axis of whether the values are not
equal to zero. |
source code
|
|
|
|
|
|
|
SecondAxisMaxOfAbs(x)
Max of absolute values along the 2nd axis |
source code
|
|
|
|
|
L2Normed(x,
norm=1.0,
reverse=False)
Norm the values so that regular vector norm becomes norm |
source code
|
|
|
L1Normed(x,
norm=1.0,
reverse=False)
Norm the values so that L_1 norm (sum|x|) becomes norm |
source code
|
|
|
RankOrder(x,
reverse=False)
Rank-order by value. Highest gets 0 |
source code
|
|
|
|