- 博客(2)
- 收藏
- 关注
转载 python numpy常用函数
一、数组方法 创建数组:arange()创建一维数组;array()创建一维或多维数组,其参数是类似于数组的对象,如列表等 反过来转换则可以使用numpy.ndarray.tolist()函数,如a.tolist() 创建数组:np.zeros((2,3)),或者np.ones((2,3)),参数是一个元组分别表示行数和列数 对应元素相乘,a * b,得到一个新的矩阵,形状要一致;但是允许a是向量...
2018-12-20 21:43:20 1063
原创 中文encoding问题
tensorflow包含中文存在的encoding问题 import tensorflow as tf a = tf.constant(3) b = tf.constant(4) with tf.Session() as sess: print("相加: %d" % sess.run(a+b)) 如果.py文件中有相加这两个中文字,所以运行爆出问题。 这种情况下在.py文件的最上...
2018-12-09 18:30:36 1572
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人