1. ホーム
  2. ディープラーニング

TensorFlowテストプログラム

2022-02-26 09:12:55

TensorFlowのテストプログラムですが、正常に動作してb'hello,tensorf'と出力されれば、TensorFlowのインストールは成功です。

import tensorflow as tf
hello = tf.constant('hello,tensorf')
sess = tf.Session()
print(sess.run(hello))