通过python实现简单的tensorflow使用,输出字符串和做简单的算术运算

import tensorflow as tf
hello_op=tf.constant("Hello,Tensorflow!")

a=tf.constant(10)
b=tf.constant(32)
compute_op=tf.add(a,b)

with tf.Session() as sess:
    print(sess.run(hello_op))
    print(sess.run(compute_op))

上面的代码并没有训练模型,下面通过Tensorflow解决逻辑回归问题



results matching ""

    No results matching ""