相关文章推荐
温暖的电梯  ·  IBM Java Toolbox for ...·  10 月前    · 
发怒的黄瓜  ·  在 Tableau Server ...·  1 年前    · 
坐怀不乱的烈马  ·  如何对java ...·  1 年前    · 
import tensorflow as tf
import numpy as np
a = np.array([1,2,3,4,5,6,7,8,9],dtype='float32');
a = a.reshape(3,3);
c = a + [22,33,44];#c.dtype='float64'
c = c.astype(np.float32)
#c.dtype = 'float32'
print('c=',c);