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 Tensor を NumPy 配列に変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。