will tensor Convert to numpy from keras import backend as K tensor = K.constant([1, 2, 3]) numpy = K.eval(tensor) print(type(tensor), type(numpy)) ...
確定! 回上一頁