Tensorflow - TextSum 模型:如何创建我自己的训练数据

Tensorflow - TextSum model: How to create my own training data

我正在尝试为 TextSum 模型创建自己的训练数据。据我了解,我需要将我的文章和摘要放入一个二进制文件(在 TFRecords 中)。但是,我无法从原始文本文件创建自己的训练数据。我不太清楚格式,所以我尝试使用以下代码创建一个非常简单的二进制文件:

files = os.listdir(path)
writer = tf.python_io.TFRecordWriter("test_data")
for i, file in enumerate(files):
    content = open(os.path.join(path, file), "r").read()
    example = tf.train.Example(
        features = tf.train.Features(
            feature = {
                'content': tf.train.Feature(bytes_list=tf.train.BytesList(value=[content]))
            }
        )
    )

    serialized = example.SerializeToString()
    writer.write(serialized)

然后我尝试用下面的代码读出这个test_data文件的值

reader = open("test_data", 'rb')
len_bytes = reader.read(8)
str_len = struct.unpack('q', len_bytes)[0]
example_str = struct.unpack('%ds' % str_len, reader.read(str_len))[0]
example_pb2.Example.FromString(example_str)

但我总是得到以下错误:

  File "dailymail_corpus_to_tfrecords.py", line 34, in check_file
    example_pb2.Example.FromString(example_str)
  File "/home/s1510032/anaconda2/lib/python2.7/site-packages/google/protobuf/internal/python_message.py", line 770, in FromString
    message.MergeFromString(s)
  File "/home/s1510032/anaconda2/lib/python2.7/site-packages/google/protobuf/internal/python_message.py", line 1091, in MergeFromString
    if self._InternalParse(serialized, 0, length) != length:
  File "/home/s1510032/anaconda2/lib/python2.7/site-packages/google/protobuf/internal/python_message.py", line 1117, in InternalParse
    new_pos = local_SkipField(buffer, new_pos, end, tag_bytes)
  File "/home/s1510032/anaconda2/lib/python2.7/site-packages/google/protobuf/internal/decoder.py", line 850, in SkipField
    return WIRETYPE_TO_SKIPPER[wire_type](buffer, pos, end)
  File "/home/s1510032/anaconda2/lib/python2.7/site-packages/google/protobuf/internal/decoder.py", line 791, in _SkipLengthDelimited
    raise _DecodeError('Truncated message.')
google.protobuf.message.DecodeError: Truncated message.

我不知道哪里出了问题。如果您有任何解决此问题的建议,请告诉我。

对于有同样问题的人。我不得不查看 TensorFlow 的源代码,看看他们如何使用 TFRecordWriter 写出数据。我已经意识到他们实际上写了 8 个字节用于长度,4 个字节用于 CRC 校验,这意味着前 12 个字节用于 header。因为在 TextSum 代码中,示例二进制文件似乎只有 8 个字节 header,这就是为什么他们使用 reader.read(8) 来获取数据的长度并将其余部分作为特征读取。

我的工作解决方案是:

reader = open("test_data", 'rb')
len_bytes = reader.read(8)
reader.read(4) #ignore next 4 bytes
str_len = struct.unpack('q', len_bytes)[0]
example_str = struct.unpack('%ds' % str_len, reader.read(str_len))[0]
example_pb2.Example.FromString(example_str)

希望您的 textsum 目录中有 data_convert_example.py。如果没有,你可以在这个post中找到它:https://github.com/tensorflow/models/pull/379/files

使用python文件将给定的二进制玩具数据(文件名:数据目录中的数据)转换为文本格式。 python data_convert_example.py --command binary_to_text --in_file ../data/data --out_file ../data/result_text

您可以看到您应该以 result_text 格式提供的实际文本格式。

以该格式准备数据并使用相同的 python 脚本从 text_to_binary 转换并将结果用于 training/testing/eval。