-
Notifications
You must be signed in to change notification settings - Fork 0
/
vocab.py
34 lines (29 loc) · 1.01 KB
/
vocab.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
from collections import Counter
class Vocab(object):
def __init__(self, path):
self.word2idx = {}
self.idx2word = []
with open(path) as f:
for line in f:
w = line.split()[0]
self.word2idx[w] = len(self.word2idx)
self.idx2word.append(w)
self.size = len(self.word2idx)
self.pad = self.word2idx['<pad>']
self.go = self.word2idx['<go>']
self.eos = self.word2idx['<eos>']
self.unk = self.word2idx['<unk>']
self.blank = self.word2idx['<blank>']
@staticmethod
def build(sents, path, size):
v = ['<pad>', '<go>', '<eos>', '<unk>', '<blank>']
words = [w for s in sents for w in s['text']]
cnt = Counter(words)
n_unk = len(words)
for w, c in cnt.most_common(size):
v.append(w)
n_unk -= c
cnt['<unk>'] = n_unk
with open(path, 'w') as f:
for w in v:
f.write('{}\t{}\n'.format(w, cnt[w]))