在 Tensorflow 中將張量轉換為 Numpy 數組
在 Tensorflow 中,將張量轉換為 numpy 數組非常簡單。操作方法如下:
<code class="python">import tensorflow as tf a = tf.constant([[1, 2], [3, 4]]) b = tf.add(a, 1) a_numpy = a.numpy() # Convert tensor 'a' to numpy array b_numpy = b.numpy() # Convert tensor 'b' to numpy array print(a_numpy) # [[1 2] # [3 4]] print(b_numpy) # [[2 3] # [4 5]]</code>
注意:
以上是如何將 Tensorflow 張量轉換為 NumPy 陣列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!