1

expected_outから取得しようとしていますinput

input = [[2],[3],[3]]
expected_out = [2,3,3]

TensorFlow を使用してexpected_outfromを取得する方法。input

4

2 に答える 2

0

tf.squeezeを使用します:

import tensorflow as tf

input = tf.constant([[2], [3], [3]])

with tf.Session() as sess:
    print(sess.run(tf.squeeze(input)))
于 2016-12-29T09:39:34.150 に答える