码迷,mamicode.com
首页 > Web开发 > 详细

mxnet-repeat

时间:2018-11-13 20:46:46      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:rip   Edito   utf-8   import   file   odi   print   ora   coding   

# -*- coding: utf-8 -*- """ Spyder Editor This is a temporary script file. """ import mxnet as mx x = mx.nd.array([[ 1, 2],[ 3, 4]]) print mx.nd.repeat(x, repeats=2) print mx.nd.repeat(x, repeats=2, axis=1) print mx.nd.repeat(x, repeats=2, axis=0) print mx.nd.repeat(x, repeats=2, axis=-1)

[1. 1. 2. 2. 3. 3. 4. 4.]
<NDArray 8 @cpu(0)>

[[1. 1. 2. 2.]
[3. 3. 4. 4.]]
<NDArray 2x4 @cpu(0)>

[[1. 2.]
[1. 2.]
[3. 4.]
[3. 4.]]
<NDArray 4x2 @cpu(0)>

[[1. 1. 2. 2.]
[3. 3. 4. 4.]]
<NDArray 2x4 @cpu(0)>

mxnet-repeat

标签:rip   Edito   utf-8   import   file   odi   print   ora   coding   

原文地址:http://blog.51cto.com/13959448/2316487

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!