Tensorflow - ValueError:Shape必须为1,但对于'ParseExample/ParseExample'为0

Clo*_*ave 6 python tensorflow

我有一个.tfrecordsUbuntu Dialog Corpus 的文件.我试图读取整个数据集,以便我可以将上下文和话语分成批次.使用tf.parse_single_example我能够阅读一个例子.我尝试使用,tf.parse_example但我收到以下错误

ValueError: Shape must be rank 1 but is rank 0 for 'ParseExample/ParseExample' (op: 'ParseExample') with input shapes: [], [0], [], [], [], [], [], [0], [0], [0], [0], [0].
Run Code Online (Sandbox Code Playgroud)

我不知道该怎么做.我用来获取错误的代码 -

import tensorflow as tf    
TRAIN_FILE_TFREC = 'data/train.tfrecords'

filename_queue = tf.train.string_input_producer([TRAIN_FILE_TFREC])

reader = tf.TFRecordReader()
_, serialized_example = reader.read(filename_queue)

features = tf.parse_example(serialized_example, 
features = {
"context" : tf.FixedLenFeature([160], tf.int64),
"context_len" : tf.FixedLenFeature([1], tf.int64),
"utterance" : tf.FixedLenFeature([80], tf.int64),
"utterance_len" : tf.FixedLenFeature([1], tf.int64),
"label" : tf.FixedLenFeature([1], tf.int64)
})
Run Code Online (Sandbox Code Playgroud)

有任何想法吗

小智 7

要使用tf.parse_example,您需要先批量示例:

batch = tf.train.batch([serialized_example], num_examples, capacity=num_examples)
parsed_examples = tf.parse_example(batch, feature_spec)
Run Code Online (Sandbox Code Playgroud)