-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathrnnclassifier.py
More file actions
192 lines (158 loc) · 7.34 KB
/
rnnclassifier.py
File metadata and controls
192 lines (158 loc) · 7.34 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
import sys
import theano
import collections
import numpy
import random
floatX=theano.config.floatX
class RnnClassifier(object):
def __init__(self, n_words, n_classes):
# network parameters
random_seed = 42
word_embedding_size = 200
recurrent_size = 100
l2_regularisation = 0.0001
# random number generator
self.rng = numpy.random.RandomState(random_seed)
# this is where we keep shared weights that are optimised during training
self.params = collections.OrderedDict()
# setting up variables for the network
input_indices = theano.tensor.ivector('input_indices')
target_class = theano.tensor.iscalar('target_class')
learningrate = theano.tensor.fscalar('learningrate')
# creating the matrix of word embeddings
word_embeddings = self.create_parameter_matrix('word_embeddings', (n_words, word_embedding_size))
# extract the relevant word embeddings, given the input word indices
input_vectors = word_embeddings[input_indices]
# gated recurrent unit
# from: Learning Phrase Representations using RNN Encoder-Decoder for Statistical Machine Translation (Cho et al, 2014)
def gru_step(x, h_prev, W_xm, W_hm, W_xh, W_hh):
m = theano.tensor.nnet.sigmoid(theano.tensor.dot(x, W_xm) + theano.tensor.dot(h_prev, W_hm))
r = _slice(m, 0, 2)
z = _slice(m, 1, 2)
_h = theano.tensor.tanh(theano.tensor.dot(x, W_xh) + theano.tensor.dot(r * h_prev, W_hh))
h = z * h_prev + (1.0 - z) * _h
return h
W_xm = self.create_parameter_matrix('W_xm', (word_embedding_size, recurrent_size*2))
W_hm = self.create_parameter_matrix('W_hm', (recurrent_size, recurrent_size*2))
W_xh = self.create_parameter_matrix('W_xh', (word_embedding_size, recurrent_size))
W_hh = self.create_parameter_matrix('W_hh', (recurrent_size, recurrent_size))
initial_hidden_vector = theano.tensor.alloc(numpy.array(0, dtype=floatX), recurrent_size)
hidden_vector, _ = theano.scan(
gru_step,
sequences = input_vectors,
outputs_info = initial_hidden_vector,
non_sequences = [W_xm, W_hm, W_xh, W_hh]
)
hidden_vector = hidden_vector[-1]
# hidden->output weights
W_output = self.create_parameter_matrix('W_output', (n_classes,recurrent_size))
output = theano.tensor.nnet.softmax([theano.tensor.dot(W_output, hidden_vector)])[0]
predicted_class = theano.tensor.argmax(output)
# calculating the cost function
cost = -1.0 * theano.tensor.log(output[target_class])
for m in self.params.values():
cost += l2_regularisation * (theano.tensor.sqr(m).sum())
# calculating gradient descent updates based on the cost function
gradients = theano.tensor.grad(cost, self.params.values())
updates = [(p, p - (learningrate * g)) for p, g in zip(self.params.values(), gradients)]
# defining Theano functions for training and testing the network
self.train = theano.function([input_indices, target_class, learningrate], [cost, predicted_class], updates=updates, allow_input_downcast = True)
self.test = theano.function([input_indices, target_class], [cost, predicted_class], allow_input_downcast = True)
def create_parameter_matrix(self, name, size):
"""Create a shared variable tensor and save it to self.params"""
vals = numpy.asarray(self.rng.normal(loc=0.0, scale=0.1, size=size), dtype=floatX)
self.params[name] = theano.shared(vals, name)
return self.params[name]
def _slice(M, slice_num, total_slices):
""" Helper function for extracting a slice from a tensor"""
if M.ndim == 3:
l = M.shape[2] / total_slices
return M[:, :, slice_num*l:(slice_num+1)*l]
elif M.ndim == 2:
l = M.shape[1] / total_slices
return M[:, slice_num*l:(slice_num+1)*l]
elif M.ndim == 1:
l = M.shape[0] / total_slices
return M[slice_num*l:(slice_num+1)*l]
def read_dataset(path):
"""Read a dataset, where the first column contains a real-valued score,
followed by a tab and a string of words.
"""
dataset = []
with open(path, "r") as f:
for line in f:
line_parts = line.strip().split("\t")
dataset.append((float(line_parts[0]), line_parts[1].lower()))
return dataset
def score_to_class_index(score, n_classes):
"""Maps a real-valued score between [0.0, 1.0] to a class id, given n_classes."""
for i in xrange(n_classes):
if score <= (i + 1.0) * (1.0 / float(n_classes)):
return i
def create_dictionary(sentences, min_freq):
"""Creates a dictionary that maps words to ids.
If min_freq is positive, removes all words that have a smaller frequency.
"""
counter = collections.Counter()
for sentence in sentences:
for word in sentence:
counter.update([word])
word2id = collections.OrderedDict()
word2id["<unk>"] = 0
word2id["<s>"] = 1
word2id["</s>"] = 2
word_count_list = counter.most_common()
for (word, count) in word_count_list:
if min_freq < 0 or count >= min_freq:
word2id[word] = len(word2id)
return word2id
def sentence2ids(words, word2id):
"""Takes a list of words and converts them to ids using the word2id dictionary."""
ids = [word2id["<s>"],]
for word in words:
if word in word2id:
ids.append(word2id[word])
else:
ids.append(word2id["<unk>"])
ids.append(word2id["</s>"])
return ids
if __name__ == "__main__":
path_train = sys.argv[1]
path_test = sys.argv[2]
# training parameters
min_freq = 2
epochs = 3
learningrate = 0.1
n_classes = 5
# reading the datasets
sentences_train = read_dataset(path_train)
sentences_test = read_dataset(path_test)
# creating the dictionary from the training data
word2id = create_dictionary([sentence.split() for label, sentence in sentences_train], min_freq)
# mapping training and test data to the dictionary indices
data_train = [(score_to_class_index(score, n_classes), sentence2ids(sentence.split(), word2id)) for score, sentence in sentences_train]
data_test = [(score_to_class_index(score, n_classes), sentence2ids(sentence.split(), word2id)) for score, sentence in sentences_test]
# shuffling the training data
random.seed(1)
random.shuffle(data_train)
# creating the classifier
rnn_classifier = RnnClassifier(len(word2id), n_classes)
# training
for epoch in xrange(epochs):
cost_sum = 0.0
correct = 0
for target_class, sentence in data_train:
cost, predicted_class = rnn_classifier.train(sentence, target_class, learningrate)
cost_sum += cost
if predicted_class == target_class:
correct += 1
print "Epoch: " + str(epoch) + "\tCost: " + str(cost_sum) + "\tAccuracy: " + str(float(correct)/len(data_train))
# testing
cost_sum = 0.0
correct = 0
for target_class, sentence in data_test:
cost, predicted_class = rnn_classifier.test(sentence, target_class)
cost_sum += cost
if predicted_class == target_class:
correct += 1
print "Test_cost: " + str(cost_sum) + "\tTest_accuracy: " + str(float(correct)/len(data_test))