1
numpyの配列 の形に似ているFIFOQueueを初期化しようとしていますが、以下のエラーが表示されます。キューシェイプの長さはdtypesと同じでなければなりません
マイ - numpyのアレイ状 - (1、17428、3)
dtypes=[tf.float32,tf.float32,tf.float32]
print len(dtypes)
shapes=[1, 17428, 3]
print len(shapes)
q = tf.FIFOQueue(capacity=200,dtypes=dtypes,shapes=shapes)
ValueError: Queue shapes must have the same length as dtypes