Commit cd6590b6 authored by Alexei Baevski's avatar Alexei Baevski Committed by Myle Ott
Browse files

script to read binarized data

parent 5b533aa6
Loading
Loading
Loading
Loading

read_binarized.py

0 → 100644
+35 −0
Changes for read_binarized.py: 35 added lines, 0 removed lines.
Original line number Diff line number Diff line
#!/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

from fairseq.data import dictionary
from fairseq.data import IndexedDataset


def get_parser():
    parser = argparse.ArgumentParser(
        description='writes text from binarized file to stdout')
    parser.add_argument('--dict', metavar='FP', required=True, help='dictionary containing known words')
    parser.add_argument('--input', metavar='FP', required=True, help='binarized file to read')

    return parser


def main(args):
    dict = dictionary.Dictionary.load(args.dict)
    ds = IndexedDataset(args.input, fix_lua_indexing=True)
    for tensor_line in ds:
        print(dict.string(tensor_line))


if __name__ == '__main__':
    parser = get_parser()
    args = parser.parse_args()
    main(args)