如何打印过滤器的第一个通道?

时间:2018-11-09 01:01:25

标签: python tensorflow

在下面的代码中,我要打印过滤器的第一个通道。我怎样才能做到这一点?我想打印2 x 2过滤器,但是如果我打印filter [:,:,0]它给了我一个3阶张量,不是简单地2 x 2过滤器吗?

graph = tf.Graph()
with graph.as_default():
    filter= tf.Variable(tf.random_normal([2,2,3,32]))

    init = tf.initialize_all_variables()
    sess = tf.Session()
    sess.run(init)
    print(sess.run(filter))

0 个答案:

没有答案