- 首页 > it技术 > >
python|mxnet.ndarray.concat()用法举例
>>> from mxnet import nd
>>> x=nd.array([[1,1],[2,2]])
>>> y=nd.array([[3,3],[4,4]])
>>> z=nd.array([[5,5],[6,6]])
>>>x,y,z
[[1. 1.]
[2. 2.]]
,
[[3. 3.]
[4. 4.]]
,
[[5. 5.]
[6. 6.]]
>>>type(x)
>>> nd.concat(x,y,z,dim=0)
[[1. 1.]
[2. 2.]
[3. 3.]
[4. 4.]
[5. 5.]
[6. 6.]]
>>>
>>> nd.concat(x,y,z,dim=1)
[[1. 1. 3. 3. 5. 5.]
[2. 2. 4. 4. 6. 6.]]
>>> nd.concat(x,y,z,dim=2)
...
axis 2 exceeds the input dimension of 2>
>>>
>>> nd.concat(x,y,z,dim=-1)
[[1. 1. 3. 3. 5. 5.]
[2. 2. 4. 4. 6. 6.]]
>>>
>>> nd.concat(x,y,z,dim=-2)
[[1. 1.]
[2. 2.]
[3. 3.]
[4. 4.]
[5. 5.]
[6. 6.]]
>>>
>>> nd.concat(x,y,z,dim=-3)
...
axis -3 exceeds the input dimension of 2>
推荐阅读