tensorflow-hello,world
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow-hello,world相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Wed Dec 12 18:18:06 2018
@author: myhaspl
"""
import tensorflow as tf
hello=tf.constant("hello,world")
sess=tf.Session()
print(sess.run(hello))
sess.close()
b‘hello,world‘
以上是关于tensorflow-hello,world的主要内容,如果未能解决你的问题,请参考以下文章