-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathmain.py
351 lines (291 loc) · 12.6 KB
/
main.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2017-02-20 16:28:53
@author: heshenghuan ([email protected])
http://github.com/heshenghuan
"""
import random
import numpy as np
import codecs as cs
import tensorflow as tf
import model as tagger
from lib.src.parameters import MAX_LEN
from lib.src.features import Template
from lib.src.utils import eval_ner, read_emb_from_file
from lib.src.pretreatment import pretreatment, unfold_corpus, conv_corpus, read_corpus
from env_settings import MODEL_DIR, DATA_DIR, EMB_DIR, OUTPUT_DIR, LOG_DIR
FLAGS = tf.app.flags.FLAGS
tf.app.flags.DEFINE_string(
'train_data', DATA_DIR + r'weiboNER.conll.train', 'Training data file')
tf.app.flags.DEFINE_string(
'test_data', DATA_DIR + r'weiboNER.conll.test', 'Test data file')
tf.app.flags.DEFINE_string(
'valid_data', DATA_DIR + r'weiboNER.conll.dev', 'Validation data file')
tf.app.flags.DEFINE_string('log_dir', LOG_DIR, 'The log dir')
tf.app.flags.DEFINE_string('model_dir', MODEL_DIR, 'Models dir')
tf.app.flags.DEFINE_string(
'model', "LSTM", 'Model type: LSTM/BLSTM/CNNBLSTM')
tf.app.flags.DEFINE_string('restore_model', 'None',
'Path of the model to restored')
tf.app.flags.DEFINE_string(
"emb_file", EMB_DIR + "/weibo_charpos_vectors", "Embeddings file")
tf.app.flags.DEFINE_integer("emb_dim", 100, "embedding size")
tf.app.flags.DEFINE_string("output_dir", OUTPUT_DIR, "Output dir")
tf.app.flags.DEFINE_boolean('only_test', False, 'Only do the test')
tf.app.flags.DEFINE_float("lr", 0.002, "learning rate")
tf.app.flags.DEFINE_float("dropout", 0., "Dropout rate of input layer")
tf.app.flags.DEFINE_boolean(
'fine_tuning', True, 'Whether fine-tuning the embeddings')
tf.app.flags.DEFINE_boolean(
'eval_test', True, 'Whether evaluate the test data.')
# tf.app.flags.DEFINE_boolean(
# 'test_anno', True, 'Whether the test data is labeled.')
tf.app.flags.DEFINE_integer("max_len", MAX_LEN,
"max num of tokens per query")
tf.app.flags.DEFINE_integer("nb_classes", 15, "Tagset size")
tf.app.flags.DEFINE_integer("hidden_dim", 100, "hidden unit number")
tf.app.flags.DEFINE_integer("batch_size", 200, "num example per mini batch")
tf.app.flags.DEFINE_integer("train_steps", 50, "trainning steps")
tf.app.flags.DEFINE_integer("display_step", 1, "number of test display step")
tf.app.flags.DEFINE_float("l2_reg", 0.0001, "L2 regularization weight")
tf.app.flags.DEFINE_boolean(
'log', True, 'Whether to record the TensorBoard log.')
tf.app.flags.DEFINE_string("template", r"template", "Feature templates")
def convert_id_to_word(corpus, idx2label, default='O'):
return [[idx2label.get(word, default) for word in sentence]
for sentence in corpus]
def evaluate(predictions, groundtruth=None):
if groundtruth is None:
return None, predictions
# conlleval(predictions, groundtruth,
results = eval_ner(predictions, groundtruth)
# folder + '/current.valid.txt', folder)
# error_analysis(words, predictions, groundtruth, idx2word)
return results, predictions
def write_prediction(filename, lex_test, pred_test):
with cs.open(filename, 'w', encoding='utf-8') as outf:
for sent_w, sent_l in zip(lex_test, pred_test):
assert len(sent_w) == len(sent_l)
for w, l in zip(sent_w, sent_l):
outf.write(w + '\t' + l + '\n')
outf.write('\n')
def save_dicts(path, feats2idx, words2idx, label2idx):
with cs.open(path + 'FEATS', 'w', 'utf-8') as out:
for k, v in feats2idx.iteritems():
out.write("%s %d\n" % (k, v))
with cs.open(path + 'WORDS', 'w', 'utf-8') as out:
for k, v in words2idx.iteritems():
out.write("%s %d\n" % (k, v))
with cs.open(path + 'LABEL', 'w', 'utf-8') as out:
for k, v in label2idx.iteritems():
out.write("%s %d\n" % (k, v))
def load_dicts(path):
feats2idx = {}
words2idx = {}
label2idx = {}
with cs.open(path + 'FEATS', 'r', 'utf-8') as src:
items = src.read().strip().split('\n')
for item in items:
k, v = item.strip().split()
feats2idx[k] = int(v)
with cs.open(path + 'WORDS', 'r', 'utf-8') as src:
items = src.read().strip().split('\n')
for item in items:
k, v = item.strip().split()
words2idx[k] = int(v)
with cs.open(path + 'LABEL', 'r', 'utf-8') as src:
items = src.read().strip().split('\n')
for item in items:
k, v = item.strip().split()
label2idx[k] = int(v)
return feats2idx, words2idx, label2idx
def test(FLAGS):
print "#" * 67
print "# Loading data from:"
print "#" * 67
print "Test: ", FLAGS.test_data
# Load feature templates
template = Template(FLAGS.template, prefix=False)
# Load dicts
feats2idx, words2idx, label2idx = load_dicts(
FLAGS.output_dir)
idx2label = dict((k, v) for v, k in label2idx.iteritems())
# load embeddings from file
print "#" * 67
print "# Reading embeddings from file: %s" % (FLAGS.emb_file)
emb_mat, idx_map = read_emb_from_file(FLAGS.emb_file, feats2idx)
FLAGS.emb_dim = max(emb_mat.shape[1], FLAGS.emb_dim)
print "embeddings' size:", emb_mat.shape
if FLAGS.fine_tuning:
print "The embeddings will be fine-tuned!"
# Read test corpus
test_corpus, test_lens, test_max_len = read_corpus(
FLAGS.test_data, template)
# neural network's output_dim
FLAGS.max_len = test_max_len
FLAGS.feat_size = len(feats2idx)
FLAGS.nb_classes = len(label2idx) + 1
# Embedding layer's input_dim
nb_words = len(words2idx)
FLAGS.nb_words = nb_words
FLAGS.in_dim = FLAGS.nb_words + 1
test_sentcs, test_featvs, test_labels = unfold_corpus(test_corpus)
print "Lexical word size: %d" % len(feats2idx)
print "Label size: %d" % len(label2idx)
print "-------------------------------------------------------------------"
print "Test data size: %d" % len(test_corpus)
print "Maximum sentence len: %d" % FLAGS.max_len
test_X, test_F, test_Y = conv_corpus(
test_sentcs, test_featvs, test_labels,
words2idx, feats2idx, label2idx, max_len=FLAGS.max_len)
if FLAGS.model == 'LSTM':
Model_type = tagger.LSTM_NER
elif FLAGS.model == 'BLSTM':
Model_type = tagger.Bi_LSTM_NER
elif FLAGS.model == 'CNNBLSTM':
Model_type = tagger.CNN_Bi_LSTM_NER
else:
raise TypeError("Unknow model type % " % FLAGS.model)
model = Model_type(
nb_words, FLAGS.emb_dim, emb_mat, FLAGS.hidden_dim,
FLAGS.nb_classes, FLAGS.dropout, FLAGS.batch_size,
FLAGS.max_len, len(template.template), FLAGS.l2_reg,
FLAGS.fine_tuning)
pred_test, test_loss, test_acc = model.run(
None, None, None,
None, None, None,
test_F, test_Y, test_lens,
FLAGS)
print "Test loss: %f, accuracy: %f" % (test_loss, test_acc)
pred_test = [pred_test[i][:test_lens[i]] for i in xrange(len(pred_test))]
pred_test_label = convert_id_to_word(pred_test, idx2label)
if FLAGS.eval_test:
res_test, pred_test_label = evaluate(pred_test_label, test_labels)
print "Test F1: %f, P: %f, R: %f" % (res_test['f1'], res_test['p'], res_test['r'])
original_text = [[item['w'] for item in sent] for sent in test_corpus]
write_prediction(FLAGS.output_dir + 'prediction.utf8',
original_text, pred_test_label)
def main(_):
np.random.seed(1337)
random.seed(1337)
if FLAGS.only_test or FLAGS.train_steps == 0:
FLAGS.train_steps = 0
test(FLAGS)
return
print "#" * 67
print "# Loading data from:"
print "#" * 67
print "Train:", FLAGS.train_data
print "Valid:", FLAGS.valid_data
print "Test: ", FLAGS.test_data
# Choose fields templates & features templates
template = Template(FLAGS.template, prefix=False)
# pretreatment process: read, split and create vocabularies
train_set, valid_set, test_set, dicts, max_len = pretreatment(
FLAGS.train_data, FLAGS.valid_data, FLAGS.test_data,
threshold=0, template=template)
# Reset the maximum sentence's length
# max_len = max(MAX_LEN, max_len)
FLAGS.max_len = max_len
# unfold these corpus
train_corpus, train_lens = train_set
valid_corpus, valid_lens = valid_set
test_corpus, test_lens = test_set
train_sentcs, train_featvs, train_labels = unfold_corpus(train_corpus)
valid_sentcs, valid_featvs, valid_labels = unfold_corpus(valid_corpus)
test_sentcs, test_featvs, test_labels = unfold_corpus(test_corpus)
# vocabularies
feats2idx = dicts['feats2idx']
words2idx = dicts['words2idx']
label2idx = dicts['label2idx']
FLAGS.label2idx = label2idx
FLAGS.words2idx = words2idx
FLAGS.feats2idx = feats2idx
print "Lexical word size: %d" % len(feats2idx)
print "Label size: %d" % len(label2idx)
print "-------------------------------------------------------------------"
print "Training data size: %d" % len(train_corpus)
print "Validation data size: %d" % len(valid_corpus)
print "Test data size: %d" % len(test_corpus)
print "Maximum sentence len: %d" % FLAGS.max_len
del train_corpus
del valid_corpus
# del test_corpus
# neural network's output_dim
nb_classes = len(label2idx)
FLAGS.nb_classes = nb_classes + 1
# Embedding layer's input_dim
nb_words = len(words2idx)
FLAGS.nb_words = nb_words
FLAGS.in_dim = FLAGS.nb_words + 1
# load embeddings from file
print "#" * 67
print "# Reading embeddings from file: %s" % (FLAGS.emb_file)
emb_mat, idx_map = read_emb_from_file(FLAGS.emb_file, feats2idx)
FLAGS.emb_dim = max(emb_mat.shape[1], FLAGS.emb_dim)
print "embeddings' size:", emb_mat.shape
if FLAGS.fine_tuning:
print "The embeddings will be fine-tuned!"
idx2label = dict((k, v) for v, k in FLAGS.label2idx.iteritems())
# idx2words = dict((k, v) for v, k in FLAGS.words2idx.iteritems())
# convert corpus from string to it's own index seq with post padding 0
print "Preparing training, validate and testing data."
train_X, train_F, train_Y = conv_corpus(
train_sentcs, train_featvs, train_labels,
words2idx, feats2idx, label2idx, max_len=max_len)
valid_X, valid_F, valid_Y = conv_corpus(
valid_sentcs, valid_featvs, valid_labels,
words2idx, feats2idx, label2idx, max_len=max_len)
test_X, test_F, test_Y = conv_corpus(
test_sentcs, test_featvs, test_labels,
words2idx, feats2idx, label2idx, max_len=max_len)
# Release memory
del train_sentcs, train_featvs, train_labels
del valid_sentcs, valid_featvs, valid_labels
# del test_sentcs, test_featvs, test_labels
del train_X, valid_X, test_X
print "#" * 67
print "Training arguments"
print "#" * 67
print "L2 regular: %f" % FLAGS.l2_reg
print "nb_classes: %d" % FLAGS.nb_classes
print "Batch size: %d" % FLAGS.batch_size
print "Hidden layer: %d" % FLAGS.hidden_dim
print "Train epochs: %d" % FLAGS.train_steps
print "Learning rate: %f" % FLAGS.lr
print "#" * 67
print "Training process start."
print "#" * 67
if FLAGS.model == 'LSTM':
Model_type = tagger.LSTM_NER
elif FLAGS.model == 'BLSTM':
Model_type = tagger.Bi_LSTM_NER
elif FLAGS.model == 'CNNBLSTM':
Model_type = tagger.CNN_Bi_LSTM_NER
else:
raise TypeError("Unknow model type % " % FLAGS.model)
model = Model_type(
nb_words, FLAGS.emb_dim, emb_mat, FLAGS.hidden_dim,
FLAGS.nb_classes, FLAGS.dropout, FLAGS.batch_size,
FLAGS.max_len, len(template.template), FLAGS.l2_reg,
FLAGS.fine_tuning)
pred_test, test_loss, test_acc = model.run(
train_F, train_Y, train_lens,
valid_F, valid_Y, valid_lens,
test_F, test_Y, test_lens,
FLAGS)
print "Test loss: %f, accuracy: %f" % (test_loss, test_acc)
pred_test = [pred_test[i][:test_lens[i]] for i in xrange(len(pred_test))]
pred_test_label = convert_id_to_word(pred_test, idx2label)
if FLAGS.eval_test:
res_test, pred_test_label = evaluate(pred_test_label, test_labels)
print "Test F1: %f, P: %f, R: %f" % (res_test['f1'], res_test['p'], res_test['r'])
original_text = [[item['w'] for item in sent] for sent in test_corpus]
write_prediction(FLAGS.output_dir + 'prediction.utf8',
original_text, pred_test_label)
print "Saving feature dicts..."
save_dicts(FLAGS.output_dir, FLAGS.feats2idx,
FLAGS.words2idx, FLAGS.label2idx)
if __name__ == "__main__":
tf.app.run()