Tensorflow学习笔记(1)-Helloworld

版权声明:博客仅供参考,有什么意见,请在下方留言,转载时请附上链接,谢谢! https://blog.csdn.net/u010105243/article/details/76553914
# -*- coding: utf-8 -*-
# @Time    : 17-8-1 下午7:58
# @Author  : 未来战士biubiu!!
# @FileName: 1-tensorflow.py
# @Software: PyCharm Community Edition
# @Blog    :http://blog.csdn.net/u010105243/article/

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

猜你喜欢

转载自blog.csdn.net/u010105243/article/details/76553914