-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmalt_parser_smart.py
666 lines (564 loc) · 24.7 KB
/
malt_parser_smart.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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
import array
import csv
import os
import numpy as np
from scipy.sparse import csr_matrix
from sklearn.multiclass import OneVsRestClassifier
from sklearn.svm import SVC
from sklearn.ensemble import RandomForestClassifier
import pickle
from collections import defaultdict
from sklearn.svm import LinearSVC
from sklearn.grid_search import GridSearchCV
from sklearn.metrics import classification_report
from sklearn.cross_validation import train_test_split
import random
import theano
import theano.tensor as T
import lasagne
import array
import csv
import os
import time
# ===================================================
# Constant declaration
# ===================================================
#dataset_path = '.\\7621'
#dataset_path = '.\\test_building_train_data_small_15'
dataset_path = '.\\data_without\csv_data_smart_test'
SENTENCE_ID = 0
LEX = 3
ID = 4
PARENT = 5
FEATURES = 6
SHIFT = 1
REDUCE = 2
LEFTARC = 3
RIGHTARC = 4
IS_ROOT_FEATURE = 'IsRoot'
GRAD_CLIP = 100 # All gradients above this will be clipped
N_HIDDEN = 512 # Number of units in the two hidden (LSTM) layers
LEARNING_RATE = .01 # Optimization learning rate
FEATURES_NUM = -1
# ===================================================
# Class for reading data from dataset, preparing it for training.
# ===================================================
class DataKeeper:
def __init__(self):
# self.parent_ids = [] seems to be not used
self.features_dictionary = {} # dictionary for features
self.features_names = []
self.row = [] # aux container for sparse matrix
self.col = [] # aux container for sparse matrix
self.data = [] # aux container for sparse matrix
self.answers = [] # 0 - no connection, 1 - first is a parent of second, -1 - second is a parent of first
self.FEAT_NUM = -1 # number of features in dictionary
self.sentences_number = 0 # number of sentences in input data, == len(input)
self.input = [] # list of sentences
self.features = []
'''
Input is filling here as a seq of feature vectors.
'''
def load_data(self):
# read one by one file from every folder
# every file has structure: sentence_id, begin_index, lexeme, word, id, parent_id, feature1, feature2, ...
for foldername in os.listdir(dataset_path):
print foldername
path = os.path.join(dataset_path, foldername)
for filename in os.listdir(path):
fullname = os.path.join(dataset_path, foldername, filename)
self.load_file(fullname)
print 'Input is ready!'
def get_file_size(self, fullname):
dataset_len = 0
with open(fullname, "rU") as data_initial:
dataset = csv.reader(data_initial, delimiter="\t")
dataset_len = sum(1 for row in dataset)
return dataset_len
def get_root(self, sent_number):
return [sent_number, '0', 'ROOT', 'ROOT', '-1', '-2', IS_ROOT_FEATURE, 1.0]
def load_file(self, fullname):
# need to know the size of file
dataset_len = self.get_file_size(fullname)
with open(fullname, "rU") as data_initial:
dataset = csv.reader(data_initial, delimiter="\t")
# initialization
current_sentence = []
is_cur_sent_content_root = False
current_sentence_features = []
prev_sentence_num = 0
# for each row (=word with features) in file
for idx, row in enumerate(dataset):
# if row is not empty
if len(row) != 0 and len(row[LEX]) != 0:
# do transitions inside one sentence
# if token is last one in input, finish data reading
if idx == (dataset_len - 1):
# filtering the sentences with no root vertex (is it possible? seems to be)
if row[PARENT] == '-1':
is_cur_sent_content_root = True
if len(current_sentence) >= 5:
if is_cur_sent_content_root:
# add fictive root vertex in the end of sentence.
# Root's parent is ROOT!!!
current_sentence.append(row)
root = self.get_root(prev_sentence_num)
current_sentence.append(list(root))
current_sentence_features.append(root[6::2])
self.input.append(list(current_sentence))
self.features.extend(list(current_sentence_features))
break
print "Sentence", idx, "has not root vertex"
break
# if token is not last one in input,
# check if previous token is from the same sentence
if int(row[SENTENCE_ID]) != prev_sentence_num:
prev_sentence_num = int(row[SENTENCE_ID])
stack = [] # reset stack
# check if the length of sentence is large enough
if len(current_sentence) >= 5 and is_cur_sent_content_root:
# add fictive root vertex in the end of sentence.
# Root's parent is ROOT!!!
root = self.get_root(prev_sentence_num)
current_sentence.append(list(root))
current_sentence_features.append(root[6::2])
self.input.append(list(current_sentence))
self.features.extend(list(current_sentence_features)) # EXTEND?????????????????????
self.sentences_number += 1
current_sentence = []
current_sentence_features = []
is_cur_sent_content_root = False
current_sentence_features.append(row[6::2])
current_sentence.append(row)
if row[PARENT] == '-1':
is_cur_sent_content_root = True
# fill the dictionary of features & set the value of FEAT_NUM
def fill_dictionary(self):
counter = 0
for i, word_features in enumerate(self.features):
for j, feature in enumerate(word_features):
feat_num = self.features_dictionary.setdefault(feature, counter)
if feat_num == counter:
counter += 1
self.features_names.append(feature)
self.FEAT_NUM = len(self.features_names)
print "number of features in dictionary is ", self.FEAT_NUM
def get_feat_num_by_name(self, feature):
return self.features_dictionary[feature]
# ===================================================
# Class implementing MaltParser - deterministic parser.
# Reconstucts the sequence of parser's actions for the particular parse tree
# Trains the One-Vs-Rest linear SVM classifier using history feature-based approach.
# Predicts the next parser action for the particular stack-input-partially built tree state.
# Evaluates the attachment score (it is just an accuracy for unlabeled case)
# counting the percentage of vertecies for which parent vertex is assigned correctly.
# ===================================================
class MaltParser:
def __init__(self):
# to initialize, read text with words' features from files
self.data_keeper = DataKeeper()
self.data_keeper.load_data()
self.data_keeper.fill_dictionary()
self.svm_clf = OneVsRestClassifier(SVC(kernel='linear', verbose=True), n_jobs=-1)
self.rndforest = RandomForestClassifier()
self.tokens = []
self.stack = [] # stack for deterministic algorithm
self.input = self.data_keeper.input
self.arcs = [] # arc labels
self.in_verticies = defaultdict(list) # a collection of output edges "vertex_in": vertex from
self.out_verticies = defaultdict(list) # "vertex from": vertex_in
self.current_sentence_position = 0 # current position in input
self.current_word_position = 0 # current position in input
self.feat_count = len(self.data_keeper.features_dictionary)
# for training, filled in build_train_samples
self.train_samples = []
self.train_answers = []
self.important_features = [] # feature selection
self.row = []
self.col = []
self.data = []
# ===================================================
# Four main parser actions.
# Each of them changes the state of input, stack and building tree.
# ===================================================
def left_arc(self):
word = self.input[self.current_sentence_position][self.current_word_position]
self.out_verticies[word[ID]].append(self.stack[-1])
self.in_verticies[self.stack[-1][ID]].append(word)
self.stack.pop()
def right_arc(self):
word = self.input[self.current_sentence_position][self.current_word_position]
self.out_verticies[self.stack[-1][ID]].append(word)
self.in_verticies[word[ID]].append(self.stack[-1])
self.stack.append(word)
self.current_word_position += 1
def reduce(self):
self.stack.pop()
def shift(self):
self.stack.append(self.input[self.current_sentence_position][self.current_word_position])
self.current_word_position += 1
# ===================================================
# A range of auxillary functions adding different kinds of features
# filling the history feature-based model.
# ===================================================
def add_one_feature(self, feature, current_row, order, probability):
feat_num = self.data_keeper.get_feat_num_by_name(feature)
self.row.append(current_row)
self.col.append(feat_num + self.feat_count * order)
self.data.append(float(probability))
# Feat_num is a flag if we want use smart feature map constructor or usual.
# Smart constructor selects only top 500 important features, after feature selection.
# In this case, feat_num is an index of selected feature.
# Usual one collect all the features. feat_num == -1.
def add_top_features(self, order, current_row):
if (len(self.stack) != 0):
for feature_idx, feature in enumerate(self.stack[-1][FEATURES::2]):
probability = self.stack[-1][FEATURES+1 + feature_idx * 2]
self.add_one_feature(feature, current_row, order, probability)
def add_top_1_features(self, order, current_row):
if (len(self.stack) > 1):
for feature_idx, feature in enumerate(self.stack[-2][FEATURES::2]):
probability = self.stack[-2][FEATURES+1 + feature_idx * 2]
self.add_one_feature(feature, current_row, order, probability)
def add_next_features(self, order, current_row):
if len(self.input) != 0:
sent = self.input[self.current_sentence_position]
w = sent[self.current_word_position]
for feature_idx, feature in enumerate(w[FEATURES::2]):
probability = w[FEATURES+1 + feature_idx * 2]
self.add_one_feature(feature, current_row, order, probability)
def add_next_1_features(self, order, current_row):
if len(self.input) != 0:
sent = self.input[self.current_sentence_position]
if (len(sent) > self.current_word_position + 1):
for feature_idx, feature in enumerate(sent[self.current_word_position + 1][FEATURES::2]):
probability = sent[self.current_word_position + 1][FEATURES+1 + feature_idx * 2]
self.add_one_feature(feature, current_row, order, probability)
def add_next_2_features(self, order, current_row):
if len(self.input) != 0:
sent = self.input[self.current_sentence_position]
if (len(sent) > self.current_word_position + 2):
for feature_idx, feature in enumerate(sent[self.current_word_position + 2][FEATURES::2]):
probability = sent[self.current_word_position + 2][FEATURES+1 + feature_idx * 2]
self.add_one_feature(feature, current_row, order, probability)
def add_next_3_features(self, order, current_row):
if len(self.input) != 0:
sent = self.input[self.current_sentence_position]
if (len(sent) > self.current_word_position + 3):
for feature_idx, feature in enumerate(sent[self.current_word_position + 3][FEATURES::2]):
probability = sent[self.current_word_position + 3][FEATURES+1 + feature_idx * 2]
self.add_one_feature(feature, current_row, order, probability)
def add_head_top_features(self, order, current_row):
if (len(self.stack) != 0):
top = self.stack[-1]
if self.in_verticies.has_key(top[ID]):
for feature_idx, feature in enumerate(self.in_verticies[top[ID]][0][FEATURES::2]):
probability = self.in_verticies[top[ID]][0][FEATURES+1 + feature_idx * 2]
self.add_one_feature(feature, current_row, order, probability)
def add_ldep_top_features(self, order, current_row):
if (len(self.stack) != 0):
top = self.stack[-1]
if self.out_verticies.has_key(top[ID]):
for feature_idx, feature in enumerate(self.out_verticies[top[ID]][0][FEATURES::2]):
probability = self.out_verticies[top[ID]][0][FEATURES+1 + feature_idx * 2]
self.add_one_feature(feature, current_row, order, probability)
def add_rdep_top_features(self, order, current_row):
if (len(self.stack) != 0):
top = self.stack[-1]
if self.out_verticies.has_key(top[ID]):
for feature_idx, feature in enumerate(self.out_verticies[top[ID]][-1][FEATURES::2]):
probability = self.out_verticies[top[ID]][-1][FEATURES+1 + feature_idx * 2]
self.add_one_feature(feature, current_row, order, probability)
def add_fake_feature(self, order, current_row):
self.row.append(current_row)
self.col.append(self.feat_count * 10)
self.data.append(1.0)
# add history feature map in sparse matrix
# TODO: divide features depend on its kind (morph, lex, pos, etc),
def add_history_feature_map_for_training(self):
current_row = len(self.train_answers)
self.add_top_features(0, current_row) # add features of top
self.add_top_1_features(1, current_row) # add features of top-1
self.add_next_features(2, current_row) # add features of next
self.add_next_1_features(3, current_row) # add features of next+1
self.add_next_2_features(4, current_row) # add features of next+2
self.add_next_3_features(5, current_row) # add features of next+3
self.add_head_top_features(6, current_row) # add features of head(top)
self.add_ldep_top_features(7, current_row) # add features of ldep(top)
self.add_rdep_top_features(8, current_row) # add features of rdep(top)
# add features of ldep(next)
if len(self.input) != 0:
next = self.input[self.current_sentence_position][-1]
if next[ID] in self.out_verticies:
for feature_idx, feature in enumerate(self.out_verticies[next[ID]][0][FEATURES::2]):
feat_num = self.data_keeper.features_dictionary[feature]
probability = self.out_verticies[next[ID]][0][FEATURES+1 + feature_idx * 2]
self.row.append(current_row)
self.col.append(feat_num + self.feat_count * 9)
self.data.append(probability)
# fake feature, in order to keep size constant
self.add_fake_feature(10, current_row)
# erase self.data, self.row, self.col, self.train_answers
def erase_containers(self):
self.data = []
self.row = []
self.col = []
self.train_answers = []
def erase_state(self):
self.out_verticies.clear()
self.in_verticies.clear()
self.current_word_position = 0
self.stack = [] # reset stack
# some auxillary function
def build_train_sparse_matrix(self):
rdata = np.asarray(self.data, dtype=float)
rrow = np.asarray(self.row)
rcol = np.asarray(self.col)
self.train_samples = csr_matrix( ( rdata,(rrow,rcol) ) )
self.filter_features() # select only top 500 the most important
def build_train_samples(self, begin, end):
print 'building train samples...'
if len(self.train_answers) != 0:
print 'Train samples are already ready!'
print self.train_samples.shape[0]
end = self.train_samples.shape[0] * end / len(self.input)
self.train_samples = self.train_samples[begin:end]
#self.filter_features()
self.train_answers = self.train_answers[begin:end]
else:
self.erase_containers() # init containers
# will use first half of data in range from begin index to end index
print 'size of training data is ', end - begin, 'sentences'
random.shuffle(self.input) #######################################################RANDOMIZING
self.current_sentence_position = begin
for sentence in self.input[begin:end]:
self.erase_state()
#print self.stack #DEBUG
if self.current_sentence_position % 5000 == 0:
print self.current_sentence_position
stop_idx = len(sentence)
# do transitions inside one sentence
# remember the last vertex is ROOT
for idx, word_with_features in enumerate(sentence):
self.current_word_position = idx
# until right or shift
# priority is left > right > reduce > shift
while self.current_word_position < stop_idx:
# create history-based feature model instance
# and add it to train data
self.add_history_feature_map_for_training()
if len(self.stack) == 0:
self.train_answers.append(SHIFT)
self.shift()
break
if self.stack[-1][PARENT] == word_with_features[ID]:
self.train_answers.append(LEFTARC)
self.left_arc()
continue
if self.stack[-1][ID] == word_with_features[PARENT]:
self.train_answers.append(RIGHTARC)
self.right_arc()
break
for stack_word in self.stack:
has_stack_dependencies = False
if word_with_features[ID] == stack_word[PARENT]:
has_stack_dependencies = True
break
if has_stack_dependencies:
self.train_answers.append(REDUCE)
self.reduce()
continue
for right_word in sentence[idx+1:]:
has_right_dependencies = False
if right_word[ID] == word_with_features[PARENT] or right_word[PARENT] == word_with_features[ID]:
has_right_dependencies = True
break
if has_right_dependencies:
self.train_answers.append(SHIFT)
self.shift()
break
else:
self.train_answers.append(REDUCE)
self.reduce()
self.current_sentence_position += 1
self.build_train_sparse_matrix()
print 'train samples were built!'
def filter_features(self):
if len(self.important_features) != 0:
dense_train_samples = self.train_samples.toarray()
#print len(dense_train_samples)
self.train_samples = []
for raw in dense_train_samples:
new_raw = []
for feat_num in self.important_features:
new_raw.append(raw[feat_num])
self.train_samples.append(new_raw)
else:
self.train_samples = self.train_samples.toarray()
def select_features(self):
self.build_train_samples(0, len(self.input)-1)
print 'start features selection...'
print 'start training...'
self.rndforest.fit(self.train_samples, self.train_answers)
print 'end training...'
svc_weights = self.rndforest.feature_importances_
print svc_weights[:-1]
self.important_features = svc_weights.argsort()[-500:][::-1]
print self.important_features
with open('500important_features', "wt") as f:
print len(self.important_features)
f.write(str(len(self.important_features)) + "\n")
for feature in self.important_features:
f.write(str(feature) + ' ')
num = feature % self.feat_count
f.write(str(feature / self.feat_count) + ' ' + str(num) + ' ' + self.data_keeper.features_names[num] + '\n')
def construct_targets_for_network(self, target):
if target == 1:
return [[1, 0, 0, 0]]
elif target == 2:
return [[0, 1, 0, 0]]
elif target == 3:
return [[0, 0, 1, 0]]
elif target == 4:
return [[0, 0, 0, 1]]
def execute_network_experiment(self, train_part, flag):
print 'experiment starting...'
train_data_size = int(len(self.input) * train_part) # number of _sentences_
self.build_train_samples(0, train_data_size)
print "number of train samples: ", len(self.train_samples)
# work with network
print("Building network ...")
#help(lasagne.layers.LSTMLayer)
# ===================================================
# Declarate the input/output format for network
# ===================================================
#input_var = theano.sparse.csr_matrix(name='inputs', dtype='int16')
input_var = T.tensor3('inputs')
target_var = T.matrix('targets')
train_matrix = self.train_samples
print len(train_matrix[0]), len(train_matrix), 'SHAPEEE'
# ===================================================
# Declarate the network architecture, layers.
# ===================================================
# (batch size, SEQ_LENGTH, num_features)
DIMENTION3 = len(train_matrix[0])
l_in = lasagne.layers.InputLayer(shape=(1, 1, DIMENTION3), input_var=input_var)
l_in_drop = lasagne.layers.DropoutLayer(l_in, p=0.3)
#l_resized = lasagne.layers.ReshapeLayer(l_in_drop, shape=(-1, 1))
# clip the gradients at GRAD_CLIP to prevent the problem of exploding gradients.
l_forward_1 = lasagne.layers.LSTMLayer(
l_in_drop, 100, grad_clipping=GRAD_CLIP,
nonlinearity=lasagne.nonlinearities.tanh)
l_forward_1_drop = lasagne.layers.DropoutLayer(l_forward_1, p=0.1)
#l_resized = lasagne.layers.ReshapeLayer(l_forward_1, shape=(-1, 1))
l_forward_2 = lasagne.layers.LSTMLayer(
l_forward_1_drop, 50, grad_clipping=GRAD_CLIP,
nonlinearity=lasagne.nonlinearities.tanh)
# The l_forward layer creates an output of dimension (batch_size, SEQ_LENGTH, N_HIDDEN)
# Since we are only interested in the final prediction, we isolate that quantity and feed it to the next layer.
# The output of the sliced layer will then be of size (batch_size, N_HIDDEN)
#l_forward_slice = lasagne.layers.SliceLayer(l_forward_1, -1, 1)
# The sliced output is then passed through the softmax nonlinearity to create probability distribution of the prediction
# The output of this stage is (batch_size, vocab_size)
l_out = lasagne.layers.DenseLayer(l_forward_2, num_units=4, W = lasagne.init.Normal(), nonlinearity=lasagne.nonlinearities.softmax)
# lasagne.layers.get_output produces a variable for the output of the net
network_output = lasagne.layers.get_output(l_out)
# The loss function is calculated as the mean of the (categorical) cross-entropy between the prediction and target.
cost = T.nnet.categorical_crossentropy(network_output,target_var).mean()
# Retrieve all parameters from the network
all_params = lasagne.layers.get_all_params(l_out,trainable=True)
# Compute AdaGrad updates for training
print("Computing updates ...")
updates = lasagne.updates.adagrad(cost, all_params, LEARNING_RATE)
# ===================================================
# Compiling the network functions for training&testing, computing cost.
# ===================================================
print("Compiling functions ...")
train = theano.function([input_var, target_var], cost, updates=updates, allow_input_downcast=True)
compute_cost = theano.function([input_var, target_var], cost, allow_input_downcast=True)
# Produce the probability distribution of the prediction
probs = theano.function([input_var],network_output,allow_input_downcast=True)
if flag:
all_param_values = self.load_param_from_file()
set_all_param_values(l_out, all_param_values)
print "Training ..."
for idx, row in enumerate(train_matrix):
_startTime1 = time.time()
if idx % 10 == 0:
print "training", idx
inputs = np.array(row).reshape([1, 1, DIMENTION3])
#print type(inputs)#, inputs.shape
targets = self.construct_targets_for_network(self.train_answers[idx])
#_startTime2 = time.time()
avg_cost = train(inputs, targets)
_startTime3 = time.time()
if idx == 0:
print "sum time", _startTime3 - _startTime1#, "reading", _startTime2 - _startTime1
print "Testing..."
# For each sentence predict consequence of actions, parse it using this actions and evaluate result
general_score = 0
self.current_sentence_position = train_data_size #!!!!!!!!!
for sentence in self.input[train_data_size:-2]: # for each sentence in test data
#for sentence in self.input[:train_data_size]:
for word in sentence:
print word[LEX], word[ID], '!', word[PARENT]
self.erase_state()
score = 0 # count matches in the sentence
stop_idx = len(sentence)
# for each word in the sentence
for idx, word_with_features in enumerate(sentence):
while self.current_word_position < stop_idx:
self.erase_containers()
self.add_history_feature_map_for_training()
self.build_train_sparse_matrix()
# +1 for starting with 1, not 0
next_action = np.argmax(probs(np.array(self.train_samples).reshape([1, 1, DIMENTION3]))) + 1
#print next_action #DEBUG
if len(self.stack) == 0:
self.shift()
break
word = self.input[self.current_sentence_position][self.current_word_position]
if next_action == LEFTARC:
if word[ID] == self.stack[-1][PARENT]:
#print '----------------------yes'
score += 1
self.left_arc()
continue
elif next_action == RIGHTARC:
#print 'exp right'
if word[PARENT] == self.stack[-1][ID]:
#print '----------------------yes'
score += 1
self.right_arc()
break
elif next_action == REDUCE:
self.reduce()
#print 'exp reduce'
continue
elif next_action == SHIFT:
self.shift()
#print 'exp shift'
break
self.current_sentence_position += 1
# test and count the score
#print 'sent ', self.current_sentence_position, 'score', score
general_score += ( score * 1.0 / (stop_idx - 1) )
print 'General score ', general_score
print '!!! Accuracy is ', general_score * 1.0 / len(self.input[train_data_size:-2])
if not flag:
self.dump_clf_parameters(get_all_param_values(l_out))
def dump_clf_parameters(self, obj):
filename = "malt_parser_model"
with open(filename, "wb") as f:
s = pickle.dump(obj, f, protocol=2)
def load_param_from_file(self):
filename = "malt_parser_model"
with open(filename, "rb") as f:
return pickle.load(f)
if __name__ == "__main__":
mparser = MaltParser()
''' You can change the part to be training data '''
train_part = 4.0 / 5
# By the stage self.train_data is filled, self.important_features is revealed.
#mparser.select_features()
mparser.execute_network_experiment(train_part, 0)