3.2.2. 텐서플로 설치

Last updated
Was this helpful?

Last updated
Was this helpful?
Was this helpful?
>>> import tensorflow as tf
>>> print(tf.__version__)
1.12.0
>>> hello=tf.constant(‘Hello World’)
>>> sess=tf.Session()
>>> print(sess.run(hello))
b’Hello World’
>>>