-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
ptb.py
169 lines (119 loc) · 4.85 KB
/
ptb.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import os
import io
import json
import torch
import numpy as np
from collections import defaultdict
from torch.utils.data import Dataset
from nltk.tokenize import TweetTokenizer
from utils import OrderedCounter
class PTB(Dataset):
def __init__(self, data_dir, split, create_data, **kwargs):
super().__init__()
self.data_dir = data_dir
self.split = split
self.max_sequence_length = kwargs.get('max_sequence_length', 50)
self.min_occ = kwargs.get('min_occ', 3)
self.raw_data_path = os.path.join(data_dir, 'ptb.'+split+'.txt')
self.data_file = 'ptb.'+split+'.json'
self.vocab_file = 'ptb.vocab.json'
if create_data:
print("Creating new %s ptb data."%split.upper())
self._create_data()
elif not os.path.exists(os.path.join(self.data_dir, self.data_file)):
print("%s preprocessed file not found at %s. Creating new."%(split.upper(), os.path.join(self.data_dir, self.data_file)))
self._create_data()
else:
self._load_data()
def __len__(self):
return len(self.data)
def __getitem__(self, idx):
idx = str(idx)
return {
'input': np.asarray(self.data[idx]['input']),
'target': np.asarray(self.data[idx]['target']),
'length': self.data[idx]['length']
}
@property
def vocab_size(self):
return len(self.w2i)
@property
def pad_idx(self):
return self.w2i['<pad>']
@property
def sos_idx(self):
return self.w2i['<sos>']
@property
def eos_idx(self):
return self.w2i['<eos>']
@property
def unk_idx(self):
return self.w2i['<unk>']
def get_w2i(self):
return self.w2i
def get_i2w(self):
return self.i2w
def _load_data(self, vocab=True):
with open(os.path.join(self.data_dir, self.data_file), 'r') as file:
self.data = json.load(file)
if vocab:
with open(os.path.join(self.data_dir, self.vocab_file), 'r') as file:
vocab = json.load(file)
self.w2i, self.i2w = vocab['w2i'], vocab['i2w']
def _load_vocab(self):
with open(os.path.join(self.data_dir, self.vocab_file), 'r') as vocab_file:
vocab = json.load(vocab_file)
self.w2i, self.i2w = vocab['w2i'], vocab['i2w']
def _create_data(self):
if self.split == 'train':
self._create_vocab()
else:
self._load_vocab()
tokenizer = TweetTokenizer(preserve_case=False)
data = defaultdict(dict)
with open(self.raw_data_path, 'r') as file:
for i, line in enumerate(file):
words = tokenizer.tokenize(line)
input = ['<sos>'] + words
input = input[:self.max_sequence_length]
target = words[:self.max_sequence_length-1]
target = target + ['<eos>']
assert len(input) == len(target), "%i, %i"%(len(input), len(target))
length = len(input)
input.extend(['<pad>'] * (self.max_sequence_length-length))
target.extend(['<pad>'] * (self.max_sequence_length-length))
input = [self.w2i.get(w, self.w2i['<unk>']) for w in input]
target = [self.w2i.get(w, self.w2i['<unk>']) for w in target]
id = len(data)
data[id]['input'] = input
data[id]['target'] = target
data[id]['length'] = length
with io.open(os.path.join(self.data_dir, self.data_file), 'wb') as data_file:
data = json.dumps(data, ensure_ascii=False)
data_file.write(data.encode('utf8', 'replace'))
self._load_data(vocab=False)
def _create_vocab(self):
assert self.split == 'train', "Vocablurary can only be created for training file."
tokenizer = TweetTokenizer(preserve_case=False)
w2c = OrderedCounter()
w2i = dict()
i2w = dict()
special_tokens = ['<pad>', '<unk>', '<sos>', '<eos>']
for st in special_tokens:
i2w[len(w2i)] = st
w2i[st] = len(w2i)
with open(self.raw_data_path, 'r') as file:
for i, line in enumerate(file):
words = tokenizer.tokenize(line)
w2c.update(words)
for w, c in w2c.items():
if c > self.min_occ and w not in special_tokens:
i2w[len(w2i)] = w
w2i[w] = len(w2i)
assert len(w2i) == len(i2w)
print("Vocablurary of %i keys created." %len(w2i))
vocab = dict(w2i=w2i, i2w=i2w)
with io.open(os.path.join(self.data_dir, self.vocab_file), 'wb') as vocab_file:
data = json.dumps(vocab, ensure_ascii=False)
vocab_file.write(data.encode('utf8', 'replace'))
self._load_vocab()