-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild_dictionary.py
executable file
·47 lines (36 loc) · 1.22 KB
/
build_dictionary.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/python
import numpy
import json
import yaml
import sys
import fileinput
from collections import OrderedDict
def main():
for filename in sys.argv[1:]:
print('Processing ' + filename)
word_freqs = OrderedDict()
with open(filename, 'r') as f:
for line in f:
words_in = line.strip().split(' ')
for w in words_in:
if w not in word_freqs:
word_freqs[w] = 0
word_freqs[w] += 1
words = word_freqs.keys()
freqs = word_freqs.values()
sorted_idx = numpy.argsort(freqs)
sorted_words = [words[ii] for ii in sorted_idx[::-1]]
worddict = OrderedDict()
worddict['eos'] = 0
worddict['UNK'] = 1
for ii, ww in enumerate(sorted_words):
worddict[ww] = ii+2
with open('%s.json'%filename, 'wb') as f:
json.dump(worddict, f, indent=2, ensure_ascii=False)
with open('%s.yml'%filename, 'wb') as f:
yaml.dump(worddict, f)
with open('%s.dict.size'%filename, 'w') as f:
f.write(str(len(worddict)))
print('Done')
if __name__ == '__main__':
main()