chainer.functions.
swapaxes
(x, axis1, axis2)[source]¶
指定した2軸のデータをスワップ(交換)する。
Parameters: |
|
---|---|
Returns: |
軸をスワップしたVariable |
Return type: |
Example
>>> x = np.array([[[0, 1, 2], [3, 4, 5]]], 'f')
>>> x.shape
(1, 2, 3)
>>> y = F.swapaxes(x, axis1=0, axis2=1)
>>> y.shape
(2, 1, 3)
>>> y.data
array([[[ 0., 1., 2.]],
[[ 3., 4., 5.]]], dtype=float32)