pythonCopy import tensorflow as tf tensor = tf.constant([[1,2,3],[4,5,6],[7,8,9]]) print("Tensor = ",tensor) array = tensor.numpy() ...
確定! 回上一頁