text2paddle.py 2.9 KB
Newer Older
F
frankwhzhang 已提交
1 2 3 4
import sys
import six
import collections
import os
Z
zhang wenhui 已提交
5 6 7 8 9
import sys
if six.PY2:
    reload(sys)
    sys.setdefaultencoding('utf-8')

F
frankwhzhang 已提交
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32

def word_count(input_file, word_freq=None):
    """
    compute word count from corpus
    """
    if word_freq is None:
        word_freq = collections.defaultdict(int)

    for l in input_file:
        for w in l.strip().split():
            word_freq[w] += 1

    return word_freq


def build_dict(min_word_freq=0, train_dir="", test_dir=""):
    """
    Build a word dictionary from the corpus,  Keys of the dictionary are words,
    and values are zero-based IDs of these words.
    """
    word_freq = collections.defaultdict(int)
    files = os.listdir(train_dir)
    for fi in files:
Z
zhang wenhui 已提交
33
        with open(os.path.join(train_dir, fi), "r") as f:
F
frankwhzhang 已提交
34 35 36
            word_freq = word_count(f, word_freq)
    files = os.listdir(test_dir)
    for fi in files:
Z
zhang wenhui 已提交
37
        with open(os.path.join(test_dir, fi), "r") as f:
F
frankwhzhang 已提交
38 39 40 41 42 43 44 45 46
            word_freq = word_count(f, word_freq)

    word_freq = [x for x in six.iteritems(word_freq) if x[1] > min_word_freq]
    word_freq_sorted = sorted(word_freq, key=lambda x: (-x[1], x[0]))
    words, _ = list(zip(*word_freq_sorted))
    word_idx = dict(list(zip(words, six.moves.range(len(words)))))
    return word_idx


Z
zhang wenhui 已提交
47 48
def write_paddle(word_idx, train_dir, test_dir, output_train_dir,
                 output_test_dir):
F
frankwhzhang 已提交
49 50 51 52
    files = os.listdir(train_dir)
    if not os.path.exists(output_train_dir):
        os.mkdir(output_train_dir)
    for fi in files:
Z
zhang wenhui 已提交
53 54
        with open(os.path.join(train_dir, fi), "r") as f:
            with open(os.path.join(output_train_dir, fi), "w") as wf:
F
frankwhzhang 已提交
55 56 57 58 59 60 61 62 63 64 65
                for l in f:
                    l = l.strip().split()
                    l = [word_idx.get(w) for w in l]
                    for w in l:
                        wf.write(str(w) + " ")
                    wf.write("\n")

    files = os.listdir(test_dir)
    if not os.path.exists(output_test_dir):
        os.mkdir(output_test_dir)
    for fi in files:
Z
zhang wenhui 已提交
66 67
        with open(os.path.join(test_dir, fi), "r") as f:
            with open(os.path.join(output_test_dir, fi), "w") as wf:
F
frankwhzhang 已提交
68 69 70 71 72 73 74
                for l in f:
                    l = l.strip().split()
                    l = [word_idx.get(w) for w in l]
                    for w in l:
                        wf.write(str(w) + " ")
                    wf.write("\n")

Z
zhang wenhui 已提交
75 76 77

def text2paddle(train_dir, test_dir, output_train_dir, output_test_dir,
                output_vocab):
F
frankwhzhang 已提交
78
    vocab = build_dict(0, train_dir, test_dir)
Z
zhang wenhui 已提交
79
    with open(output_vocab, "w", encoding='utf-8') as wf:
F
frankwhzhang 已提交
80 81 82 83 84 85 86 87 88 89
        wf.write(str(len(vocab)) + "\n")
        #wf.write(str(vocab))
    write_paddle(vocab, train_dir, test_dir, output_train_dir, output_test_dir)


train_dir = sys.argv[1]
test_dir = sys.argv[2]
output_train_dir = sys.argv[3]
output_test_dir = sys.argv[4]
output_vocab = sys.argv[5]
Z
zhang wenhui 已提交
90 91
text2paddle(train_dir, test_dir, output_train_dir, output_test_dir,
            output_vocab)