利用tensorflow实现前向传播
Posted donggongdechen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用tensorflow实现前向传播相关的知识,希望对你有一定的参考价值。
import tensorflow as tf
w1 = tf.Variable(tf.random_normal((2, 3), stddev=1, seed=1))
w2 = tf.Variable(tf.random_normal((3, 1), stddev=1, seed=1))
x = tf.constant([[0.7, 0.9]])
a = tf.matmul(x, w1)
y = tf.matmul(a, w2)
init_op = tf.global_variables_initializer()
with tf.Session() as sess:
sess.run(init_op)
print(sess.run(y))
以上是关于利用tensorflow实现前向传播的主要内容,如果未能解决你的问题,请参考以下文章
1个TensorFlow样例,终于明白如何实现前向传播过程?