Convertir un tenseur en tableau Numpy dans Tensorflow
Dans Tensorflow, convertir un tenseur en tableau numpy est simple. Voici comment :
<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>
Remarques :
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!