-
Notifications
You must be signed in to change notification settings - Fork 0
/
no_pretrained_no_wordnet
12995 lines (12995 loc) · 499 KB
/
no_pretrained_no_wordnet
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
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Loading Google Pre-Trained Word Embeddings
Time taken to load google Embeddings 140.25762105
HSLLD/HV1/MT//zanmt1.cha
adding extra names
Added names by Yelena Mejova
9758
9970
loading solution set
no solution file found for: solutions/HSLLD/HV1/MT//zanmt1.cha
HSLLD/HV1/MT//arlmt1.cha
adding extra names
Added names by Yelena Mejova
9758
9970
loading solution set
no solution file found for: solutions/HSLLD/HV1/MT//arlmt1.cha
HSLLD/HV1/MT//jenmt1.cha
adding extra names
Added names by Yelena Mejova
9758
9970
loading solution set
no solution file found for: solutions/HSLLD/HV1/MT//jenmt1.cha
HSLLD/HV1/MT//jasmt1.cha
adding extra names
Added names by Yelena Mejova
9758
9970
loading solution set
no solution file found for: solutions/HSLLD/HV1/MT//jasmt1.cha
HSLLD/HV1/MT//trumt1.cha
adding extra names
Added names by Yelena Mejova
9758
9970
loading solution set
no solution file found for: solutions/HSLLD/HV1/MT//trumt1.cha
HSLLD/HV1/MT//chamt1.cha
adding extra names
Added names by Yelena Mejova
9758
9970
loading solution set
no solution file found for: solutions/HSLLD/HV1/MT//chamt1.cha
HSLLD/HV1/MT//maymt1.cha
adding extra names
Added names by Yelena Mejova
9758
9970
loading solution set
no solution file found for: solutions/HSLLD/HV1/MT//maymt1.cha
HSLLD/HV1/MT//admmt1.cha
adding extra names
Added names by Yelena Mejova
9758
9970
loading solution set
[]
[]
[[['N', 'N'], 'end stool', 17, 26], [['N'], 'end', 17, 20], [['N'], 'stool', 21, 26]]
[]
[]
[]
[]
[[['N'], 'bowl', 37, 41], [['A', 'N'], 'big bowl', 33, 41]]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[[['N', 'N'], 'lots_of carrots', 14, 29], [['N'], 'lots_of', 14, 21], [['N'], 'carrots', 22, 29], [['N'], 'peas', 34, 38], [['N'], 'xxx', 46, 49], [['V', 'N'], 'got lots_of', 10, 21]]
peas
Step 0 ['unk', 'unk', 'Kim', 'got', 'lots_of', 'carrots', 'and', 'peas', 'in', 'the', 'xxx', '.', 'unk', 'unk'] peas
Step 1 7
Step 2 ['carrots', 'and', 'peas', 'in', 'the']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
peas peas 116
carrots
Step 0 ['unk', 'unk', 'Kim', 'got', 'lots_of', 'carrots', 'and', 'peas', 'in', 'the', 'xxx', '.', 'unk', 'unk'] carrots
Step 1 5
Step 2 ['got', 'lots_of', 'carrots', 'and', 'peas']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
carrots carrots 35
[[['N'], 'mouth', 26, 31]]
[]
[]
[]
[[['N'], 'mouth', 25, 30]]
[]
[[['N', 'N'], 'beef stew', 31, 40], [['N'], 'beef', 31, 35], [['N'], 'stew', 36, 40]]
beef stew
beef stew beef stew 99
stew
Step 0 ['unk', 'unk', "Adam's", 'not', 'gonna', 'eat', 'her', 'beef', 'stew', '.', 'unk', 'unk'] stew
Step 1 8
Step 2 ['her', 'beef', 'stew', '.', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c729ad098>)
stew stew 32
beef
Step 0 ['unk', 'unk', "Adam's", 'not', 'gonna', 'eat', 'her', 'beef', 'stew', '.', 'unk', 'unk'] beef
Step 1 7
Step 2 ['eat', 'her', 'beef', 'stew', '.']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
beef beef 310
[[['N'], 'carrots', 14, 21]]
carrots
Step 0 ['unk', 'unk', 'see', 'the', 'carrots', 'in', 'there', '?', 'unk', 'unk'] carrots
Step 1 4
Step 2 ['see', 'the', 'carrots', 'in', 'there']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
carrots carrots 35
[]
[]
[[['N', 'N'], 'xxx carrots', 17, 28], [['N'], 'xxx', 17, 20], [['N'], 'carrots', 21, 28]]
carrots
Step 0 ['unk', 'unk', '<I', 'have', 'my', 'xxx', 'carrots>', '[<]', '.', 'unk', 'unk'] carrots
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError("'carrots' is not in list",), <traceback object at 0x7f8c729ad368>)
carrots carrots 35
[[['N'], 'xxx', 32, 35], [['V', 'N'], 'eating xxx', 25, 35]]
[[['N'], 'carrots', 48, 55]]
carrots
Step 0 ['unk', 'unk', 'see', 'if', 'we', 'can', '<find', 'some', 'more', 'of>', '[>]', 'the', 'carrots', 'in', 'here', '.', 'unk', 'unk'] carrots
Step 1 12
Step 2 ['[>]', 'the', 'carrots', 'in', 'here']
Intermediate step -> (1, 500)
Step 3 (1, 500) [0]
Predicted not a food ['unk', 'unk', 'see', 'if', 'we', 'can', '<find', 'some', 'more', 'of>', '[>]', 'the', 'carrots', 'in', 'here', '.', 'unk', 'unk'] carrots
[[['N'], 'mouth', 28, 33]]
[]
[]
[[['N'], 'carrots', 37, 44], [['N'], 'top', 54, 57]]
carrots
Step 0 ['unk', 'unk', 'here', 'you', 'go', "here's", 'some', 'of', 'the', 'carrots', 'right', 'on', 'top', '!', 'unk', 'unk'] carrots
Step 1 9
Step 2 ['of', 'the', 'carrots', 'right', 'on']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
carrots carrots 35
[]
[]
[]
[[['N'], 'daddy', 18, 23]]
[]
[[['N'], 'hums', 8, 12]]
[[['N'], 'carrot', 15, 21]]
carrot
Step 0 ['unk', 'unk', 'I', 'have', 'a', 'carrot', 'haha', '[x', '2]', '&=singing', '.', 'unk', 'unk'] carrot
Step 1 5
Step 2 ['have', 'a', 'carrot', 'haha', '[x']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
carrot carrot 341
[]
[]
[[['N'], 'days', 19, 23], [['N'], 'days', 19, 23], [['A', 'N'], 'more days', 14, 23], [['A', 'N'], 'more days', 14, 23]]
[]
[[['N'], 'grandma', -1, 6], [['V', 'N'], 'see grandma', -1, 10]]
[]
[[['N'], 'babbles', 8, 15]]
[[['N'], 'days', 35, 39], [['N'], 'house', 95, 100], [['A', 'N'], 'more days', 30, 39]]
[[['N'], 'dad', 26, 29]]
[[['N', 'N'], 'butter bread', 25, 37], [['N'], 'butter', 25, 31], [['N'], 'bread', 32, 37]]
bread
Step 0 ['unk', 'unk', 'Adam', 'you', 'want', 'some', 'butter', 'bread', '?', 'unk', 'unk'] bread
Step 1 7
Step 2 ['some', 'butter', 'bread', '?', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c729adf80>)
bread bread 186
butter
Step 0 ['unk', 'unk', 'Adam', 'you', 'want', 'some', 'butter', 'bread', '?', 'unk', 'unk'] butter
Step 1 6
Step 2 ['want', 'some', 'butter', 'bread', '?']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
butter butter 499
[]
[[['N'], 'thanks', 6, 12]]
[[['N', 'N'], 'words yesterday', 33, 48], [['N'], 'words', 33, 38], [['N'], 'yesterday', 39, 48]]
[]
[[['N'], 'sled', 10, 14], [['V', 'N'], 'say sled', 6, 14]]
[[['N'], 'sled', 6, 10]]
[]
[]
[]
[[['N'], 'witch', 10, 15], [['V', 'N'], 'say witch', 6, 15]]
[[['N'], 'witch', 6, 11]]
[[['N'], 'mom', -1, 2]]
[]
[[['N'], 'porch', 30, 35]]
[[['N', 'N'], 'school today', 29, 41], [['N'], 'party', 19, 24], [['N'], 'school', 29, 35], [['N'], 'today', 36, 41]]
[[['N'], 'kids', 18, 22], [['N'], 'honey', 38, 43]]
honey
Step 0 ['unk', 'unk', "<there's", 'no', 'kids', 'out>', '[<]', 'there', 'honey', '.', 'unk', 'unk'] honey
Step 1 8
Step 2 ['[<]', 'there', 'honey', '.', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c729adfc8>)
honey honey 304
[]
[]
[[['N'], 'party', 24, 29], [['N'], 'school', 33, 39]]
[[['N'], 'party', 28, 33], [['N'], 'school', 44, 50]]
[]
[[['N'], 'salt', 27, 31], [['N'], 'pepper', 36, 42]]
salt
Step 0 ['unk', 'unk', '<let', 'me>', '[<]', 'see', 'the', 'salt', 'and', 'pepper', '.', 'unk', 'unk'] salt
Step 1 7
Step 2 ['see', 'the', 'salt', 'and', 'pepper']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
salt salt 0
pepper
Step 0 ['unk', 'unk', '<let', 'me>', '[<]', 'see', 'the', 'salt', 'and', 'pepper', '.', 'unk', 'unk'] pepper
Step 1 9
Step 2 ['salt', 'and', 'pepper', '.', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c7294d6c8>)
pepper pepper 27
[]
[[['N'], 'butter', 30, 36], [['N'], 'bread', 41, 46]]
bread
Step 0 ['unk', 'unk', 'sure', 'you', "don't", 'want', 'any', 'butter', 'and', 'bread', 'Adam', '?', 'unk', 'unk'] bread
Step 1 9
Step 2 ['butter', 'and', 'bread', 'Adam', '?']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
bread bread 186
butter
Step 0 ['unk', 'unk', 'sure', 'you', "don't", 'want', 'any', 'butter', 'and', 'bread', 'Adam', '?', 'unk', 'unk'] butter
Step 1 7
Step 2 ['want', 'any', 'butter', 'and', 'bread']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
butter butter 499
[]
[]
[]
[[['N'], 'house', 22, 27]]
[]
[]
[[['N', 'N'], 'butter bread', 15, 27], [['N'], 'butter', 15, 21], [['N'], 'bread', 22, 27], [['V', 'N'], 'want butter', 10, 21]]
bread
Step 0 ['unk', 'unk', 'you', 'want', 'butter', 'bread', '?', 'unk', 'unk'] bread
Step 1 5
Step 2 ['want', 'butter', 'bread', '?', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c729ad368>)
bread bread 186
butter
Step 0 ['unk', 'unk', 'you', 'want', 'butter', 'bread', '?', 'unk', 'unk'] butter
Step 1 4
Step 2 ['you', 'want', 'butter', 'bread', '?']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
butter butter 499
[[['N'], 'bread', 20, 25], [['N'], 'butter', 30, 36]]
bread
Step 0 ['unk', 'unk', 'you', 'want', 'some', 'bread', 'and', 'butter', '?', 'unk', 'unk'] bread
Step 1 5
Step 2 ['want', 'some', 'bread', 'and', 'butter']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
bread bread 186
butter
Step 0 ['unk', 'unk', 'you', 'want', 'some', 'bread', 'and', 'butter', '?', 'unk', 'unk'] butter
Step 1 7
Step 2 ['bread', 'and', 'butter', '?', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c729adef0>)
butter butter 499
[]
[[['N'], 'carrots', 15, 22], [['N'], 'bread', 50, 55], [['N'], 'butter', 60, 66]]
bread
Step 0 ['unk', 'unk', 'eat', 'some', 'carrots', 'on', 'there', "I'll", 'give', 'you', 'the', 'bread', 'and', 'butter', '.', 'unk', 'unk'] bread
Step 1 11
Step 2 ['you', 'the', 'bread', 'and', 'butter']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
bread bread 186
carrots
Step 0 ['unk', 'unk', 'eat', 'some', 'carrots', 'on', 'there', "I'll", 'give', 'you', 'the', 'bread', 'and', 'butter', '.', 'unk', 'unk'] carrots
Step 1 4
Step 2 ['eat', 'some', 'carrots', 'on', 'there']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
carrots carrots 35
butter
Step 0 ['unk', 'unk', 'eat', 'some', 'carrots', 'on', 'there', "I'll", 'give', 'you', 'the', 'bread', 'and', 'butter', '.', 'unk', 'unk'] butter
Step 1 13
Step 2 ['bread', 'and', 'butter', '.', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c729adf38>)
butter butter 499
[]
[[['N'], 'hums', 24, 28]]
[[['N'], 'mom', -1, 2]]
[]
[[['N'], 'bread', 19, 24], [['N'], 'butter', 29, 35]]
bread
Step 0 ['unk', 'unk', "there's", 'your', 'bread', 'and', 'butter', 'right', 'there', '.', 'unk', 'unk'] bread
Step 1 4
Step 2 ["there's", 'your', 'bread', 'and', 'butter']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
bread bread 186
butter
Step 0 ['unk', 'unk', "there's", 'your', 'bread', 'and', 'butter', 'right', 'there', '.', 'unk', 'unk'] butter
Step 1 6
Step 2 ['bread', 'and', 'butter', 'right', 'there']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
butter butter 499
[]
[[['N'], 'party', 23, 28], [['N'], 'school', 39, 45]]
[[['N'], 'fun', 19, 22], [['V', 'N'], 'have fun', 14, 22]]
[[['N'], 'dad', -1, 2], [['V', 'N'], 'tell dad', -1, 7]]
[[['N', 'N'], 'play area', 14, 23], [['N'], 'play', 14, 18], [['N'], 'area', 19, 23]]
[[['N'], 'daddy', -1, 4], [['N'], 'mommy', 28, 33]]
[[['N'], 'school', 10, 16]]
[]
[[['N'], 'bikes', 15, 20], [['V', 'N'], 'played bikes', 8, 20]]
[[['N'], 'bikes', 28, 33]]
[]
[]
[[['N'], 'balloon', 15, 22], [['V', 'N'], 'played balloon', 8, 22]]
[[['N'], 'balloon', 17, 24], [['N'], 'ground', 60, 66]]
[]
[]
[]
[]
[]
[]
[[['N', 'N'], 'bunny bunny', 6, 17], [['N', 'N'], 'bunny bunny', 6, 17], [['N'], 'bunny', 6, 11], [['N'], 'bunny', 6, 11], [['N'], 'bunny', 6, 11], [['N', 'N', 'N'], 'bunny bunny bunny', 6, 23]]
[[['N'], 'balloon', 18, 25], [['N'], 'air', 48, 51]]
[]
[[['N'], 'today', 19, 24], [['N'], 'day', 21, 24], [['N'], 'school', 45, 51], [['A', 'N'], 'last day', 33, 41], [['V', 'N'], 'know today', 14, 24]]
[]
[[['N'], 'kids', 36, 40]]
[]
[]
[]
[]
[[['N', 'N'], 'cut pieces', 6, 16], [['N'], 'cut', 6, 9], [['N'], 'pieces', 10, 16]]
[[['N', 'N'], 'movie today', 34, 45], [['N'], 'daddy', -1, 4], [['N'], 'movie', 34, 39], [['N'], 'today', 40, 45], [['V', 'N'], 'tell daddy', -1, 9]]
[[['N'], 'v_c_r', -1, 4]]
[]
[[['N'], 'movie', 20, 25]]
[[['N'], 'movie', 11, 16]]
[]
[[['N'], 'movie', 22, 27]]
[]
[[['N'], 'movie', 22, 27]]
[[['N'], 'movie', 21, 26]]
[[['N'], 'class', 31, 36]]
[[['N'], 'movie', 21, 26]]
[]
[[['N'], 'tone', 34, 38], [['A', 'N'], 'growly tone', 27, 38]]
[[['N'], 'today', 21, 26]]
[]
[[['N'], 'movie', 26, 31]]
[]
[]
[[['N'], 'time', 52, 56], [['V', 'N'], 'reading time', 44, 56]]
[[['N', 'N'], 'nonsense words', 20, 34], [['N'], 'nonsense', 20, 28], [['N'], 'words', 29, 34], [['V', 'N'], 'babbles nonsense', 12, 28]]
[]
[]
[]
[[['N'], 'daddy', -1, 4]]
[[['N'], 'pieces', 55, 61]]
[]
[]
[[['N'], 'everybody', 17, 26], [['N'], 'xxx', 34, 37]]
[[['N'], 'everybody', 6, 15], [['N'], 'center', 23, 29]]
[]
[]
[[['N'], 'spoon', 48, 53]]
[]
[]
[[['N'], 'headache', 20, 28]]
[]
[]
[[['N'], 'piece', 15, 20], [['A', 'N'], 'little piece', 8, 20]]
[]
[[['N'], 'thanks', 9, 15]]
[]
[]
[]
[]
[]
[[['N'], 'everybody', 6, 15], [['N'], 'circle', 27, 33]]
[]
[[['N'], 'xxx', 14, 17], [['N'], 'xxx', 14, 17]]
[]
[[['N'], 'everybody', 6, 15], [['N'], 'circle', 27, 33]]
[]
[]
[[['N'], 'party', 38, 43]]
[]
[]
[[['N'], 'brownie', 8, 15]]
[[['N'], 'brownie', 8, 15]]
[]
[]
[[['N', 'N'], 'potato chips', 6, 18], [['N'], 'potato', 6, 12], [['N'], 'chips', 13, 18], [['N'], 'coke', 27, 31]]
potato chips
potato chips potato chips 487
potato
Step 0 ['unk', 'unk', 'potato', 'chips', '(.)', 'and', 'coke', '.', 'unk', 'unk'] potato
Step 1 2
Step 2 ['unk', 'unk', 'potato', 'chips', '(.)']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c7294d4d0>)
(<type 'exceptions.ZeroDivisionError'>, ZeroDivisionError('float division by zero',), <traceback object at 0x7f8c729ad560>)
[]
[[['N'], 'mommy', -1, 4], [['N'], 'cookie', 18, 24], [['N'], 'cookie', 18, 24]]
cookie
Step 0 ['unk', 'unk', 'Mommy', 'ate', 'a', 'cookie', 'and', 'I', 'ate', 'a', 'cookie', '.', 'unk', 'unk'] cookie
Step 1 5
Step 2 ['ate', 'a', 'cookie', 'and', 'I']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
cookie cookie 507
[]
[[['N'], 'hiss-like', 18, 27], [['A', 'N'], 'heavy hiss-like', 12, 27]]
[]
[[['N'], 'days', 20, 24], [['N'], 'grandma', -1, 6], [['A', 'N'], 'more days', 15, 24], [['V', 'N'], 'see grandma', -1, 10]]
[]
[]
[]
[[['N'], 'days', 41, 45], [['N'], 'grandma', -1, 6], [['A', 'N'], 'more days', 36, 45], [['V', 'N'], 'see grandma', -1, 10]]
[]
[]
[[['N'], 'mom', -1, 2], [['V', 'N'], 'tell mom', -1, 7]]
[[['N'], 'yesterday', 6, 15], [['N'], 'today', 26, 31]]
[[['N'], 'tomorrow', 6, 14], [['N'], 'day', 32, 35], [['A', 'N'], 'more day', 27, 35]]
[[['N'], 'days', 20, 24], [['A', 'N'], 'more days', 15, 24]]
[]
[]
[]
[]
[]
[]
[[['N'], 'mommy', -1, 4], [['N'], 'fib', 23, 26]]
[[['N'], 'mommy', -1, 4], [['N'], 'days', 16, 20]]
[]
[]
[[['N'], 'mommy', -1, 4]]
[[['N'], 'days', 14, 18], [['N'], "grandma's", -1, 8], [['V', 'N'], "going grandma's", -1, 14]]
[[['N'], 'days', 10, 14]]
[]
[[['N'], 'days', 10, 14]]
[[['N'], 'ride', 42, 46], [['A', 'N'], 'long ride', 37, 46]]
[[['N'], 'tune', 32, 36]]
[]
[[['N'], 'everything', 40, 50], [['V', 'N'], 'xxx everything', 36, 50]]
[]
[]
[]
[[['N'], 'today', 27, 32]]
[]
[]
[]
[]
[]
[[['N'], 'socks', 32, 37], [['N'], 'sneakers', 49, 57]]
[]
[[['N'], 'honey', 18, 23]]
honey
Step 0 ['unk', 'unk', "I'll", 'eat', 'it', 'honey', '.', 'unk', 'unk'] honey
Step 1 5
Step 2 ['eat', 'it', 'honey', '.', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c7294d4d0>)
honey honey 304
[]
[[['N'], 'bread', 55, 60], [['N'], 'table', 86, 91]]
bread
Step 0 ['unk', 'unk', 'yep', 'alright', 'well', 'you', "don't", 'have_to', 'skitch@f', 'your', 'bread', 'in', 'it', 'just', 'put', 'it', 'on', 'the', 'table', 'if', 'you', "don't", 'want', 'it', 'Kim', '.', 'unk', 'unk'] bread
Step 1 10
Step 2 ['skitch@f', 'your', 'bread', 'in', 'it']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
bread bread 186
[[['N'], 'xxx', 20, 23], [['A', 'N'], 'own xxx', 16, 23]]
[]
[[['N'], 'xxx', 13, 16], [['A', 'N'], 'own xxx', 9, 16]]
[[['N'], 'bike', 26, 30]]
[]
[]
[]
[[['N'], 'someone', 61, 68]]
[]
[[['N'], 'dinner', 36, 42], [['N'], 'anything', 61, 69], [['N'], 'tonight', 82, 89], [['V', 'N'], 'get anything', 57, 69], [['V', 'N'], 'eat tonight', 78, 89]]
[[['N'], 'things', 32, 38]]
[]
[]
[[['N', 'N'], 'chicken spices', -1, 13], [['N'], 'chicken', 16, 23], [['N'], 'spices', -1, 5]]
chicken
Step 0 ['unk', 'unk', 'I', 'have', 'my', 'chicken', 'Spices.', 'unk', 'unk'] chicken
Step 1 5
Step 2 ['have', 'my', 'chicken', 'Spices.', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c729b2d40>)
chicken chicken 234
spices
Step 0 ['unk', 'unk', 'I', 'have', 'my', 'chicken', 'Spices.', 'unk', 'unk'] spices
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError("'spices' is not in list",), <traceback object at 0x7f8c729b2fc8>)
spices spices 312
loading solution set
calculating
set([(196, (25, 37)), (79, (34, 38)), (651, (18, 24)), (869, (16, 23)), (644, (27, 31)), (308, (30, 36)), (115, (21, 28)), (284, (30, 36)), (329, (29, 35)), (121, (48, 55)), (155, (15, 21)), (644, (6, 18)), (79, (22, 29)), (284, (41, 46)), (276, (27, 31)), (810, (55, 60)), (314, (50, 55)), (134, (37, 44)), (276, (36, 42)), (329, (19, 24)), (634, (8, 15)), (314, (60, 66)), (308, (20, 25)), (99, (31, 40)), (651, (37, 43)), (631, (8, 15)), (104, (14, 21)), (305, (15, 27)), (314, (15, 22))])
[((79, (22, 29)), '*MOT:\tKim got lots_of carrots and peas in the xxx .\n'), ((79, (34, 38)), '*MOT:\tKim got lots_of carrots and peas in the xxx .\n'), ((99, (31, 40)), "*FAT:\tAdam's not gonna eat her beef stew .\n"), ((104, (14, 21)), '*MOT:\tsee the carrots in there ?\n'), ((115, (21, 28)), '*CHI:\t<I have my xxx carrots> [<] .\n'), ((121, (48, 55)), '*MOT:\tsee if we can <find some more of> [>] the carrots in here .\n'), ((134, (37, 44)), "*MOT:\there you go here's some of the carrots right on top !\n"), ((155, (15, 21)), '*CHI:\tI have a carrot haha [x 2] &=singing .\n'), ((196, (25, 37)), '*MOT:\tAdam you want some butter bread ?\n'), ((276, (27, 31)), '*MOT:\t<let me> [<] see the salt and pepper .\n'), ((276, (36, 42)), '*MOT:\t<let me> [<] see the salt and pepper .\n'), ((284, (30, 36)), "*MOT:\tsure you don't want any butter and bread Adam ?\n"), ((284, (41, 46)), "*MOT:\tsure you don't want any butter and bread Adam ?\n"), ((305, (15, 27)), '*MOT:\tyou want butter bread ?\n'), ((308, (20, 25)), '*MOT:\tyou want some bread and butter ?\n'), ((308, (30, 36)), '*MOT:\tyou want some bread and butter ?\n'), ((314, (15, 22)), "*MOT:\teat some carrots on there I'll give you the bread and butter .\n"), ((314, (50, 55)), "*MOT:\teat some carrots on there I'll give you the bread and butter .\n"), ((314, (60, 66)), "*MOT:\teat some carrots on there I'll give you the bread and butter .\n"), ((329, (19, 24)), "*MOT:\tthere's your bread and butter right there .\n"), ((329, (29, 35)), "*MOT:\tthere's your bread and butter right there .\n"), ((631, (8, 15)), '*CHI:\ta brownie .\n'), ((634, (8, 15)), '*CHI:\ta brownie .\n'), ((644, (6, 18)), '*CHI:\tpotato chips (.) and coke .\n'), ((644, (27, 31)), '*CHI:\tpotato chips (.) and coke .\n'), ((651, (18, 24)), '*CHI:\tMommy ate a cookie and I ate a cookie .\n'), ((651, (37, 43)), '*CHI:\tMommy ate a cookie and I ate a cookie .\n'), ((810, (55, 60)), "*FAT:\tyep alright well you don't have_to skitch@f your bread in it just put it on the table if you don't want it Kim .\n"), ((869, (16, 23)), '*SIS:\tI have my chicken Spices.\n')]
set([(253, (38, 43)), (79, (34, 38)), (651, (18, 24)), (196, (25, 31)), (869, (16, 23)), (308, (30, 36)), (115, (21, 28)), (196, (32, 37)), (284, (30, 36)), (305, (15, 21)), (305, (22, 27)), (329, (29, 35)), (155, (15, 21)), (644, (6, 18)), (79, (22, 29)), (284, (41, 46)), (276, (27, 31)), (810, (55, 60)), (314, (50, 55)), (134, (37, 44)), (276, (36, 42)), (806, (18, 23)), (329, (19, 24)), (314, (60, 66)), (308, (20, 25)), (99, (31, 40)), (651, (37, 43)), (104, (14, 21)), (314, (15, 22)), (869, (24, 30))])
[((79, (22, 29)), '*MOT:\tKim got lots_of carrots and peas in the xxx .\n'), ((79, (34, 38)), '*MOT:\tKim got lots_of carrots and peas in the xxx .\n'), ((99, (31, 40)), "*FAT:\tAdam's not gonna eat her beef stew .\n"), ((104, (14, 21)), '*MOT:\tsee the carrots in there ?\n'), ((115, (21, 28)), '*CHI:\t<I have my xxx carrots> [<] .\n'), ((134, (37, 44)), "*MOT:\there you go here's some of the carrots right on top !\n"), ((155, (15, 21)), '*CHI:\tI have a carrot haha [x 2] &=singing .\n'), ((196, (25, 31)), '*MOT:\tAdam you want some butter bread ?\n'), ((196, (32, 37)), '*MOT:\tAdam you want some butter bread ?\n'), ((253, (38, 43)), "*MOT:\t<there's no kids out> [<] there honey .\n"), ((276, (27, 31)), '*MOT:\t<let me> [<] see the salt and pepper .\n'), ((276, (36, 42)), '*MOT:\t<let me> [<] see the salt and pepper .\n'), ((284, (30, 36)), "*MOT:\tsure you don't want any butter and bread Adam ?\n"), ((284, (41, 46)), "*MOT:\tsure you don't want any butter and bread Adam ?\n"), ((305, (15, 21)), '*MOT:\tyou want butter bread ?\n'), ((305, (22, 27)), '*MOT:\tyou want butter bread ?\n'), ((308, (20, 25)), '*MOT:\tyou want some bread and butter ?\n'), ((308, (30, 36)), '*MOT:\tyou want some bread and butter ?\n'), ((314, (15, 22)), "*MOT:\teat some carrots on there I'll give you the bread and butter .\n"), ((314, (50, 55)), "*MOT:\teat some carrots on there I'll give you the bread and butter .\n"), ((314, (60, 66)), "*MOT:\teat some carrots on there I'll give you the bread and butter .\n"), ((329, (19, 24)), "*MOT:\tthere's your bread and butter right there .\n"), ((329, (29, 35)), "*MOT:\tthere's your bread and butter right there .\n"), ((644, (6, 18)), '*CHI:\tpotato chips (.) and coke .\n'), ((651, (18, 24)), '*CHI:\tMommy ate a cookie and I ate a cookie .\n'), ((651, (37, 43)), '*CHI:\tMommy ate a cookie and I ate a cookie .\n'), ((806, (18, 23)), "*FAT:\tI'll eat it honey .\n"), ((810, (55, 60)), "*FAT:\tyep alright well you don't have_to skitch@f your bread in it just put it on the table if you don't want it Kim .\n"), ((869, (16, 23)), '*SIS:\tI have my chicken Spices.\n'), ((869, (24, 30)), '*SIS:\tI have my chicken Spices.\n')]
calculating accuracy and recall
correct labels:
set(['butter', 'pepper', 'potato chips', 'coke', 'carrots', 'butter bread', 'peas', 'brownie', 'carrot', 'cookie', 'chicken', 'salt', 'beef stew', 'bread'])
predicted labels:
set(['butter', 'pepper', 'carrots', 'potato chips', 'peas', 'honey', 'carrot', 'cookie', 'chicken', 'spices', 'salt', 'beef stew', 'bread'])
file:HSLLD/HV1/MT//admmt1.cha
precision: 0.846153846154
recall: 0.785714285714
true positives:['beef stew', 'bread', 'butter', 'carrot', 'carrots', 'chicken', 'cookie', 'peas', 'pepper', 'potato chips', 'salt']
false positives: ['honey', 'spices']
false negatives: ['brownie', 'butter bread', 'coke']
# true pos: 11
# false pos: 2
# false neg: 3
HSLLD/HV1/MT//aimmt1.cha
adding extra names
Added names by Yelena Mejova
9758
9970
loading solution set
[]
[]
[]
[]
[]
[]
[]
[]
[[['N'], 'daddy', -1, 4]]
[]
[]
[]
[]
[]
[]
[[['N', 'N'], 'daddy look_it', -1, 12], [['N'], 'daddy', -1, 4], [['N'], 'look_it', 12, 19]]
[]
[]
[]
[]
[]
[[['N', 'N'], 'supper time', 12, 23], [['N'], 'supper', 12, 18], [['N'], 'time', 19, 23]]
[]
[]
[]
[]
[]
[]
[[['N'], 'pots', 24, 28]]
[]
[]
[[['N'], 'blouse', 11, 17]]
[]
[]
[]
[[['N'], 'drawer', 32, 38]]
[[['N'], 'mommy', -1, 4]]
[]
[]
[[['N'], 'mommy', -1, 4]]
[]
[[['N'], 'school', 33, 39]]
[]
[]
[]
[]
[]
[]
[]
[[['N'], 'xxx', 6, 9]]
[]
[]
[]
[]
[[['N'], 'bir(thday', 12, 21], [['A', 'N'], 'happy bir(thday', 6, 21]]
[]
[]
[]
[]
[]
[]
[[['N'], 'birthday', 12, 20], [['A', 'N'], 'happy birthday', 6, 20]]
[]
[]
[[['N'], 'birthday', 12, 20], [['A', 'N'], 'happy birthday', 6, 20]]
[[['N'], 'birthday', 12, 20], [['A', 'N'], 'happy birthday', 6, 20]]
[]
[]
[]
[]
[[['N'], 'prayers', 25, 32]]
[[['N'], 'daddy', -1, 4]]
[]
[]
[]
[[['N'], 'father', 10, 16]]
[]
[[['N'], 'prayers', 23, 30]]
[]
[[['N'], 'allegiance', 15, 25], [['N'], 'flag', 33, 37], [['N'], 'republic', 81, 89], [['N'], 'nation', 114, 120], [['V', 'N'], 'pledge allegiance', 8, 25]]
[]
[[['N'], 'liberty', 11, 18], [['N'], 'justice', 23, 30]]
[]
[]
[]
[[['N'], 'mommy', -1, 4]]
[[['N'], 'mommy', -1, 4]]
[]
[]
[[['N', 'N'], 'pledge alle(giance', 6, 24], [['N'], 'pledge', 6, 12], [['N'], 'alle(giance', 13, 24]]
[[['N'], 'mommy', -1, 4]]
[[['N'], 'mommy', -1, 4]]
[]
[[['N'], 'allegiance', 15, 25], [['N'], 'flag', 33, 37], [['V', 'N'], 'pledge allegiance', 8, 25]]
[[['N'], 'republic', 17, 25], [['N'], 'nation', 50, 56], [['N'], 'justice', 87, 94]]
[]
[]
[]
[]
[[['N'], 'school', 33, 39]]
[[['N'], 'school', 27, 33]]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[[['N'], 'alphabet', 10, 18]]
[]
[]
[]
[]
[[['N'], 'song', 27, 31]]
[]
[[['N'], 'song', 16, 20]]
[]
[]
[]
[]
[]
[[['N', 'N'], 'zoo tomorrow', 25, 37], [['N'], 'daddy', -1, 4], [['N'], 'zoo', 25, 28], [['N'], 'tomorrow', 29, 37]]
[[['N', 'N'], 'zoo tomorrow', 6, 18], [['N'], 'zoo', 6, 9], [['N'], 'tomorrow', 10, 18]]
[[['N', 'N'], 'zoo tomorrow', 29, 41], [['N'], 'daddy', -1, 4], [['N'], 'zoo', 29, 32], [['N'], 'tomorrow', 33, 41]]
[[['N'], 'day', 15, 18]]
[[['N'], 'zoo', 19, 22], [['N'], 'zoo', 19, 22], [['N'], 'zoo', 19, 22]]
[]
[]
[]
[[['N'], 'zoo', 22, 25], [['N'], 'zoo', 22, 25], [['N'], 'zoo', 22, 25]]
[[['N'], 'zoo', 24, 27], [['N'], 'zoo', 24, 27]]
[[['N'], 'zoo', 6, 9]]
[]
[]
[[['N', 'N'], 'school teacher', 14, 28], [['N'], 'school', 14, 20], [['N'], 'teacher', 21, 28]]
[]
[]
[[['N'], 'zoo', 23, 26], [['N'], 'zoo', 23, 26], [['N'], 'zoo', 23, 26]]
[]
[]
[[['N', 'N'], 'zoo tomorrow', 35, 47], [['N'], 'daddy', -1, 4], [['N'], 'zoo', 35, 38], [['N'], 'tomorrow', 39, 47]]
[[['N', 'N'], 'zoo tomorrow', 7, 19], [['N', 'N'], 'tomorrow zoo', 11, 23], [['N', 'N'], 'zoo tomorrow', 7, 19], [['N'], 'zoo', 7, 10], [['N'], 'tomorrow', 11, 19], [['N'], 'zoo', 7, 10], [['N'], 'tomorrow', 11, 19], [['N', 'N', 'N'], 'zoo tomorrow zoo', 7, 23], [['N', 'N', 'N'], 'tomorrow zoo tomorrow', 11, 32]]
[]
[[['N'], 'daddy', -1, 4], [['N'], 'zoo', 30, 33], [['N'], 'tomorrow', 39, 47]]
[]
[[['N'], 'day', 22, 25]]
[[['N'], 'zoo', 22, 25], [['N'], 'zoo', 22, 25], [['N'], 'zoo', 22, 25]]
[]
[]
[]
[]
[[['N'], 'zoo', 35, 38], [['N'], 'zoo', 35, 38]]
[]
[]
[]
[]
[]
[]
[]
[]
[[['N'], 'zoo', 26, 29], [['N'], 'zoo', 26, 29], [['N'], 'zoo', 26, 29]]
[]
[[['N'], 'zoo', 63, 66], [['N'], 'zoo', 63, 66], [['N'], 'zoo', 63, 66]]
[]
[[['N'], 'stay', 17, 21], [['A', 'N'], 'better stay', 10, 21]]
[[['N'], 'xxx', 15, 18]]
[[['N', 'N'], 'zoo tomorrow', 29, 41], [['N'], 'daddy', -1, 4], [['N'], 'zoo', 29, 32], [['N'], 'tomorrow', 33, 41]]
[[['N', 'N'], 'zoo tomorrow', 6, 18], [['N'], 'zoo', 6, 9], [['N'], 'tomorrow', 10, 18]]
[[['N', 'N'], 'zoo tomorrow', 6, 18], [['N'], 'zoo', 6, 9], [['N'], 'tomorrow', 10, 18]]
[[['N', 'N'], 'zoo tomorrow', 29, 41], [['N'], 'daddy', -1, 4], [['N'], 'zoo', 29, 32], [['N'], 'tomorrow', 33, 41]]
[[['N'], 'day', 19, 22]]
[]
[[['N'], 'zoo', 11, 14], [['N'], 'zoo', 11, 14]]
[]
[]
[]
[]
[]
[]
[[['N', 'N'], 'zoo tomorrow', 29, 41], [['N', 'N'], 'zoo tomorrow', 29, 41], [['N', 'N'], 'zoo tomorrow', 29, 41], [['N', 'N'], 'zoo tomorrow', 29, 41], [['N', 'N'], 'zoo tomorrow', 29, 41], [['N'], 'daddy', -1, 4], [['N'], 'zoo', 29, 32], [['N'], 'tomorrow', 33, 41], [['N'], 'zoo', 29, 32], [['N'], 'tomorrow', 33, 41], [['N'], 'zoo', 29, 32], [['N'], 'tomorrow', 33, 41], [['N'], 'zoo', 29, 32], [['N'], 'tomorrow', 33, 41], [['N'], 'daddy', -1, 4], [['N'], 'zoo', 29, 32], [['N'], 'tomorrow', 33, 41]]
[]
[]
[]
[]
[]
[]
[[['N'], 'mommy', -1, 4]]
[[['N'], 'look_it', 6, 13]]
[]
[]
[]
[[['N'], 'stuff', 17, 22]]
[]
[[['N'], 'junk', 22, 26]]
[]
[[['N'], 'mommy', -1, 4], [['N'], 'stuff', 32, 37]]
[]
[]
[[['N'], 'stuff', 28, 33]]
[]
[[['N'], 'gold', 22, 26]]
[[['N'], 'stuff', 37, 42], [['A', 'N'], 'pretty stuff', 30, 42]]
[[['N'], 'look_it', 6, 13]]
[[['N'], 'stuff', 13, 18], [['A', 'N'], 'pretty stuff', 6, 18]]
[]
[[['N'], 'mommy', -1, 4], [['N'], 'stuff', 35, 40]]
[[['N'], 'mommy', -1, 4], [['N'], 'zoo', 49, 52], [['N'], 'zoo', 49, 52], [['N'], 'zoo', 49, 52]]
[[['N', 'N'], 'zoo tomorrow', 29, 41], [['N'], 'daddy', -1, 4], [['N'], 'zoo', 29, 32], [['N'], 'tomorrow', 33, 41]]
[[['N', 'N'], 'zoo tomorrow', 6, 18], [['N'], 'zoo', 6, 9], [['N'], 'tomorrow', 10, 18]]
[[['N', 'N'], 'zoo tomorrow', 6, 18], [['N'], 'zoo', 6, 9], [['N'], 'tomorrow', 10, 18]]
[[['N'], 'daddy', -1, 4]]
[]
[[['N'], 'babies', 22, 28], [['V', 'N'], 'think babies', 16, 28]]
[]
[]
[]
[]
[]
[]
[[['N'], 'daddy', -1, 4]]
[]
[[['N'], 'milk', 21, 25]]
milk
Step 0 ['unk', 'unk', 'can', 'I', 'get', 'some', 'milk', 'please', '(.)', '?', 'unk', 'unk'] milk
Step 1 6
Step 2 ['get', 'some', 'milk', 'please', '(.)']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
milk milk 46
[]
[[['N'], 'mommy', -1, 4], [['N'], 'chocolate', 27, 36]]
chocolate
Step 0 ['unk', 'unk', 'Mommy', 'can', 'I', 'get', 'some', 'chocolate', '(.)', '?', 'unk', 'unk'] chocolate
Step 1 7
Step 2 ['get', 'some', 'chocolate', '(.)', '?']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
chocolate chocolate 598
[[['N'], 'chocolate', 21, 30], [['N'], 'milk', 39, 43]]
milk
Step 0 ['unk', 'unk', 'can', 'I', 'get', 'some', 'chocolate', 'too', 'and', 'milk', 'too', '.', 'unk', 'unk'] milk
Step 1 9
Step 2 ['too', 'and', 'milk', 'too', '.']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
milk milk 46
chocolate
Step 0 ['unk', 'unk', 'can', 'I', 'get', 'some', 'chocolate', 'too', 'and', 'milk', 'too', '.', 'unk', 'unk'] chocolate
Step 1 6
Step 2 ['get', 'some', 'chocolate', 'too', 'and']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
chocolate chocolate 598
[]
[[['N'], 'chocolate', 14, 23]]
chocolate
Step 0 ['unk', 'unk', 'xxx', '[>]', 'chocolate', '.', 'unk', 'unk'] chocolate
Step 1 4
Step 2 ['xxx', '[>]', 'chocolate', '.', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c724c1200>)
chocolate chocolate 598
[]
[[['N'], 'milk', 6, 10], [['N'], 'chocolate', 15, 24]]
milk
Step 0 ['unk', 'unk', 'milk', 'and', 'chocolate', '.', 'unk', 'unk'] milk
Step 1 2
Step 2 ['unk', 'unk', 'milk', 'and', 'chocolate']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c724c13f8>)
milk milk 46
chocolate
Step 0 ['unk', 'unk', 'milk', 'and', 'chocolate', '.', 'unk', 'unk'] chocolate
Step 1 4
Step 2 ['milk', 'and', 'chocolate', '.', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c724c13b0>)
chocolate chocolate 598
[[['N'], 'mommy', -1, 4], [['N'], 'milk', 19, 23], [['N'], 'chocolate', 28, 37], [['V', 'N'], 'want milk', 14, 23]]
milk
Step 0 ['unk', 'unk', 'Mommy', 'I', 'want', 'milk', 'and', 'chocolate', '.', 'unk', 'unk'] milk
Step 1 5
Step 2 ['I', 'want', 'milk', 'and', 'chocolate']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
milk milk 46
chocolate
Step 0 ['unk', 'unk', 'Mommy', 'I', 'want', 'milk', 'and', 'chocolate', '.', 'unk', 'unk'] chocolate
Step 1 7
Step 2 ['milk', 'and', 'chocolate', '.', 'unk']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c724c1758>)
chocolate chocolate 598
[[['N'], 'milk', 6, 10], [['N'], 'chocolate', 15, 24]]
milk
Step 0 ['unk', 'unk', 'milk', 'and', 'chocolate', '(.)', '.', 'unk', 'unk'] milk
Step 1 2
Step 2 ['unk', 'unk', 'milk', 'and', 'chocolate']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c724c1878>)
milk milk 46
chocolate
Step 0 ['unk', 'unk', 'milk', 'and', 'chocolate', '(.)', '.', 'unk', 'unk'] chocolate
Step 1 4
Step 2 ['milk', 'and', 'chocolate', '(.)', '.']
Intermediate step -> (1, 500)
Step 3 (1, 500) [1]
chocolate chocolate 598
[]
shake
Step 0 ['unk', 'unk', 'and', 'shake', 'good', 'up', '.', 'unk', 'unk'] shake
Step 1 3
Step 2 ['unk', 'and', 'shake', 'good', 'up']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c724c15a8>)
shake shake 148
[]
shake
Step 0 ['unk', 'unk', 'and', 'shake', 'it', 'up', '.', 'unk', 'unk'] shake
Step 1 3
Step 2 ['unk', 'and', 'shake', 'it', 'up']
Couldn't run WSD (<type 'exceptions.ValueError'>, ValueError('cannot reshape array of size 5 into shape (1,500)',), <traceback object at 0x7f8c724c1878>)
shake shake 148
[[['N'], 'spoon', 20, 25]]
[[['N'], 'spoon', 16, 21]]
[]
[]
[[['N'], 'stuff', 18, 23]]
[[['N'], 'mommy', -1, 4]]
[[['N'], 'mommy', -1, 4]]
[[['N'], 'xxx', 15, 18], [['N'], 'beatin(g', 50, 58]]
[]
[]
[[['N'], 'mess', 61, 65], [['N'], 'place', 80, 85], [['A', 'N'], 'whole mess', 55, 65], [['A', 'N'], 'whole place', 74, 85]]
[]
[[['N'], 'mommy', -1, 4]]
[[['N'], 'xxx', 6, 9]]
[]
[]
[]
[]
[]
[[['N'], 'mommy', -1, 4]]
[]
[]
[]
[[['N'], 'junior', -1, 5]]
[]
[]
[]
[]
[]
[]
[[['N'], 'help', 28, 32]]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[[['N'], 'downstairs', 50, 60], [['V', 'N'], 'doing downstairs', 44, 60]]
[]
[[['N'], 'bathing', 17, 24]]
[[['N'], 'bath', 24, 28]]
[]
[]
[]
[]
[]
[]
[]
[[['N'], 'time', 16, 20]]
[]
[[['N'], 'dinner', 26, 32]]
[]
[[['N'], 'dinnertime', 6, 16]]
[[['N'], 'dinnertime', 6, 16]]
[[['N'], 'dinnertime', 6, 16]]
[]
[]
[[['N'], 'tv', 26, 28]]
[[['N'], 'thing', 18, 23]]
[]
[]
[]
[[['N'], 'no', 6, 8], [['N'], '(.)', 21, 24]]
[]
[]
[[['N', 'N'], 'food tonight', 38, 50], [['N'], 'lots', 26, 30], [['N'], 'food', 38, 42], [['N'], 'tonight', 43, 50], [['V', 'N'], 'eat lots', 22, 30]]
[]
[]
[]
[[['N', 'N'], 'bit tonight', 20, 31], [['N'], 'bit', 20, 23], [['N'], 'tonight', 24, 31], [['A', 'N'], 'little bit', 13, 23], [['A', 'N', 'N'], 'little bit tonight', 13, 31]]
[]
[[['N'], 'mommy', -1, 4], [['N'], 'bit', 28, 31], [['A', 'N'], 'little bit', 21, 31]]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[[['N'], 'minute', 13, 19]]
[[['N'], 'forks', 26, 31], [['A', 'N'], 'little forks', 19, 31]]
[]
[]
[[['N'], 'people', 13, 19]]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[]
[[['N'], 'daddy', -1, 4]]
[[['N'], 'daddy', -1, 4]]
[]
[]
[]
[[['N'], 'mommy', -1, 4]]
[]
[]
[]
[[['N'], '[/]', 14, 17]]
[]
[[['N'], 'food', 64, 68]]
[]
[]
[]
[]
[]
[]
[[['N'], 'rest', 33, 37]]
[[['N'], 'day', 30, 33]]
[]
[]