Konvertieren eines Tensors in ein Numpy-Array in Tensorflow
In Tensorflow ist das Konvertieren eines Tensors in ein Numpy-Array unkompliziert. So geht's:
<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>
Hinweise:
Das obige ist der detaillierte Inhalt vonWie konvertiere ich einen Tensorflow-Tensor in ein NumPy-Array?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!