read_binarized.py 1.47 KB
Newer Older
Alexei Baevski's avatar
Alexei Baevski committed
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env python3
# Copyright (c) 2017-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the LICENSE file in
# the root directory of this source tree. An additional grant of patent rights
# can be found in the PATENTS file in the same directory.

import argparse

11
12
from fairseq.data import Dictionary
from fairseq.data import indexed_dataset
Alexei Baevski's avatar
Alexei Baevski committed
13
14
15
16
17


def get_parser():
    parser = argparse.ArgumentParser(
        description='writes text from binarized file to stdout')
18
    # fmt: off
19
20
21
    parser.add_argument('--dataset-impl', help='dataset implementation',
                        choices=['raw', 'lazy', 'cached', 'mmap'], default='lazy')
    parser.add_argument('--dict', metavar='FP', help='dictionary containing known words', default=None)
Alexei Baevski's avatar
Alexei Baevski committed
22
    parser.add_argument('--input', metavar='FP', required=True, help='binarized file to read')
23
    # fmt: on
Alexei Baevski's avatar
Alexei Baevski committed
24
25
26
27

    return parser


28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
def main():
    parser = get_parser()
    args = parser.parse_args()

    dictionary = Dictionary.load(args.dict) if args.dict is not None else None
    dataset = indexed_dataset.make_dataset(args.input, impl=args.dataset_impl,
                                           fix_lua_indexing=True, dictionary=dictionary)

    for tensor_line in dataset:
        if dictionary is None:
            line = ' '.join([str(int(x)) for x in tensor_line])
        else:
            line = dictionary.string(tensor_line)

        print(line)
Alexei Baevski's avatar
Alexei Baevski committed
43
44
45


if __name__ == '__main__':
46
    main()