tf.placeholder()

来源:互联网 发布:java闰年判断 编辑:程序博客网 时间:2024/05/22 05:10

# x 是手写图像的像素值,y是图像对应的标签

x = tf.placeholder(tf.float32, [None,784])

y = tf.placeholder(tf.float32, [None,10])

原创粉丝点击