expected_out
から取得しようとしていますinput
。
input = [[2],[3],[3]]
expected_out = [2,3,3]
TensorFlow を使用してexpected_out
fromを取得する方法。input
expected_out
から取得しようとしていますinput
。
input = [[2],[3],[3]]
expected_out = [2,3,3]
TensorFlow を使用してexpected_out
fromを取得する方法。input
tf.squeezeを使用します:
import tensorflow as tf
input = tf.constant([[2], [3], [3]])
with tf.Session() as sess:
print(sess.run(tf.squeeze(input)))