-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain.jsonl
1364 lines (1364 loc) · 617 KB
/
train.jsonl
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
{"tokens": ["In", "particular", ",", "they", "study", "the", "reverse", "data", "-", "generating", "properties", "of", "auto", "-", "encoders", "where", "input", "samples", "are", "generated", "from", "the", "true", "signals", "of", "hidden", "representations", "."], "ner": [[12, 14, "Method"], [25, 26, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "collaboration", "with", "Faculty", "of", "Psychology", "and", "Educational", "Sciences", "of", "KU", "Leuven", "and", "our", "Able", "to", "Include", "partners", ",", "the", "pictograph", "translation", "system", "will", "be", "tested", "by", "the", "target", "group", "."], "ner": [[20, 22, "Method"], [20, 21, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "our", "paper", ",", "we", "use", "DFSMN", "with", "a", "range", "of", "order", "and", "depth", "to", "fit", "the", "BLSTM", "structure", "."], "ner": [[6, 6, "Method"], [17, 17, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "general", "best", "result", "was", "obtained", "by", "using", "Glove", "embeddings", "of", "300", "dimensions", "."], "ner": [[8, 8, "Method"], [8, 9, "Other Scientific Term"], [9, 9, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "consider", "several", "types", "of", "constraints", "that", "range", "from", "generic", "dependency", "conservation", "to", "language", "-", "specific", "annotation", "rules", "for", "auxiliary", "verb", "analysis", "."], "ner": [[5, 5, "Other Scientific Term"], [9, 11, "Other Scientific Term"], [13, 17, "Other Scientific Term"], [19, 21, "Task"], [19, 20, "Other Scientific Term"], [20, 20, "Other Scientific Term"], [21, 21, "Task"]], "relations": [[3, 6, "Hyponym-of"], [4, 5, "Hyponym-of"], [1, 3, "Used-for"], [2, 3, "Used-for"], [0, 3, "Used-for"], [1, 0, "Hyponym-of"], [2, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", "we", "introduce", "a", "new", "model", ",", "Recognition", "to", "Cognition", "Networks", "(", "R2C", ")", "."], "ner": [[9, 12, "Method"], [14, 14, "Method"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "goal", "of", "coreference", "resolution", "is", "to", "find", "the", "mentions", "in", "text", "that", "refer", "to", "the", "same", "discourse", "entity", "."], "ner": [[3, 4, "Task"], [4, 4, "Task"], [9, 9, "Other Scientific Term"], [18, 18, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "study", "different", "mechanisms", "to", "decompose", "the", "weights", "of", "the", "prediction", "network", "so", "that", "it", "can", "generate", "weights", "for", "multiple", "layers", "at", "once", "."], "ner": [[10, 11, "Method"], [10, 10, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Their", "best", "performing", "model", "is", "an", "attentive", "BLSTM", "tagger", "rather", "than", "the", "Seq2Seq", "architecture", "."], "ner": [[6, 8, "Method"], [7, 7, "Method"], [7, 8, "Method"], [8, 8, "Method"], [12, 12, "Method"]], "relations": [[0, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [1, 2, "Used-for"], [1, 3, "Used-for"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Recent", "supervised", "hashing", "methods", ",", "which", "usually", "construct", "semantic", "similarity", "matrices", "to", "guide", "hash", "code", "learning", "using", "label", "information", ",", "have", "shown", "promising", "results", "."], "ner": [[1, 3, "Method"], [1, 2, "Task"], [2, 3, "Method"], [2, 2, "Task"], [8, 10, "Other Scientific Term"], [8, 9, "Other Scientific Term"], [13, 15, "Task"], [13, 14, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [2, 3, "Used-for"], [0, 2, "Hyponym-of"], [1, 3, "Hyponym-of"], [4, 6, "Used-for"], [0, 6, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Several", "works", "have", "investigated", "online", "English", "hate", "speech", "detection", "and", "the", "types", "of", "hate", "speech", "."], "ner": [[4, 8, "Task"], [5, 8, "Task"], [6, 8, "Task"], [7, 8, "Task"], [8, 8, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "these", "prior", "works", "do", "not", "fully", "investigate", "the", "effectiveness", "of", "MT", "metrics", "in", "predicting", "performance", "of", "a", "downstream", "IR", "model", "."], "ner": [[12, 12, "Task"], [20, 21, "Method"], [20, 20, "Task"]], "relations": [[1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "introduce", "a", "novel", "HITS", "-", "based", "content", "model", "for", "automated", "survey", "article", "generation", "called", "HITSUM", "that", "exploits", "the", "lexical", "network", "structure", "between", "sentences", "from", "citing", "and", "cited", "papers", "."], "ner": [[5, 9, "Method"], [8, 9, "Method"], [11, 14, "Task"], [12, 14, "Task"], [13, 14, "Task"], [14, 14, "Task"], [16, 16, "Method"], [20, 22, "Other Scientific Term"], [20, 21, "Other Scientific Term"], [21, 22, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [4, 5, "Hyponym-of"], [7, 9, "Hyponym-of"], [0, 2, "Used-for"], [6, 2, "Used-for"], [6, 0, "Hyponym-of"], [7, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["Because", "the", "word", "representations", "to", "be", "combined", "and", "the", "compositional", "functions", "are", "generated", "based", "on", "the", "distributions", "of", "words", "in", "corpora", ",", "these", "models", "have", "been", "dubbed", "compositional", "distributional", "semantic", "models", ",", "or", "CDSM", "(", "Marelli", "et", "al", ".", ",", "2014", ")", "."], "ner": [[2, 3, "Other Scientific Term"], [9, 10, "Other Scientific Term"], [27, 30, "Method"], [29, 30, "Method"], [33, 33, "Method"]], "relations": [[2, 4, "Synonymy-of"], [2, 3, "Hyponym-of"], [4, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "data", "was", "then", "used", "as", "seed", "and", "test", "data", "for", "a", "label", "propagation", "algorithm", "that", "spread", "effect", "information", "throughout", "WordNet", "."], "ner": [[6, 6, "Other Scientific Term"], [12, 13, "Method"], [20, 20, "Material"]], "relations": [[0, 1, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "find", "that", "all", "of", "Gibbs", "samplers", "do", "well", "with", "small", "data", "sets", "and", "few", "states", ",", "and", "that", "Variational", "Bayes", "does", "well", "on", "large", "data", "sets", "and", "is", "competitive", "with", "the", "Gibbs", "samplers", "."], "ner": [[5, 6, "Method"], [6, 6, "Method"], [19, 20, "Method"], [32, 33, "Method"], [33, 33, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 3, "Synonymy-of"], [0, 4, "Hyponym-of"], [3, 1, "Hyponym-of"], [3, 4, "Hyponym-of"], [1, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["So", "far", ",", "self", "-", "attention", "has", "been", "successfully", "applied", "to", "a", "variety", "of", "NLP", "tasks", ",", "such", "as", "language", "understanding", "[", "Shen", "et", "al", ".", ",", "2018", "]", "and", "semantic", "role", "labeling", "[", "Tan", "et", "al", ".", ",", "2018", "]", "."], "ner": [[3, 5, "Method"], [14, 14, "Task"], [19, 20, "Task"], [20, 20, "Task"], [30, 32, "Task"], [30, 31, "Other Scientific Term"], [32, 32, "Task"]], "relations": [[2, 3, "Hyponym-of"], [4, 6, "Hyponym-of"], [2, 1, "Hyponym-of"], [4, 1, "Hyponym-of"], [0, 1, "Used-for"], [0, 2, "Used-for"], [0, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["Because", "many", "NLP", "problems", "are", "unbounded", "in", "size", "and", "complexity", ",", "it", "is", "hard", "to", "specify", "all", "possible", "relevant", "kernel", "features", "without", "having", "so", "many", "features", "that", "the", "computations", "become", "intractable", "and/or", "the", "data", "becomes", "too", "sparse", "."], "ner": [[2, 2, "Task"], [7, 7, "Metric"], [9, 9, "Metric"], [19, 20, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[1, 0, "Evaluate-for"], [2, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["RNNs", "can", "learn", "to", "model", "sequential", "data", "over", "an", "extended", "period", "of", "time", "and", "store", "the", "memory", "in", "the", "network", "weights", ",", "then", "carry", "out", "rather", "complicated", "transformations", "on", "the", "sequential", "data", "."], "ner": [[0, 0, "Method"], [5, 6, "Other Scientific Term"], [19, 20, "Other Scientific Term"], [30, 31, "Other Scientific Term"]], "relations": [[1, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "proposed", "a", "shift", "-", "reduce", "word", "ordering", "model", "and", "applied", "it", "to", "J", "-", "to", "-", "E", "postordering", "."], "ner": [[3, 8, "Method"], [6, 7, "Task"], [18, 18, "Task"]], "relations": [[0, 1, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Compared", "to", "CCod", ",", "our", "method", "(", "FRC", ")", "can", "quickly", "calculate", "the", "codes", "by", "using", "a", "non", "-", "linear", "projection", "function", "."], "ner": [[2, 2, "Method"], [7, 7, "Method"], [17, 20, "Method"], [17, 21, "Other Scientific Term"], [20, 21, "Other Scientific Term"], [20, 20, "Method"]], "relations": [[2, 5, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "weakly", "supervised", "learning", "framework", "automatically", "time", "-", "tags", "tweets", "according", "to", "its", "underlying", "temporal", "orientation", ":", "past", ",", "present", ",", "or", "future", "."], "ner": [[1, 3, "Method"], [2, 3, "Method"], [14, 15, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Keyphrase", "extraction", "is", "the", "task", "of", "extracting", "a", "selection", "of", "phrases", "from", "a", "text", "document", "to", "concisely", "summarize", "its", "contents", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "conduct", "extensive", "empirical", "studies", "by", "comparing", "our", "SOLAR", "algorithms", "with", "conventional", "learning", "to", "rank", "algorithms", "on", "benchmark", "testbeds", ",", "in", "which", "promising", "results", "validate", "the", "efficacy", "and", "scalability", "of", "the", "proposed", "novel", "SOLAR", "algorithms", "."], "ner": [[8, 8, "Method"], [12, 15, "Method"], [12, 14, "Task"], [17, 17, "Other Scientific Term"], [17, 18, "Other Scientific Term"], [18, 18, "Other Scientific Term"], [33, 33, "Method"]], "relations": [[0, 6, "Synonymy-of"], [1, 2, "Used-for"], [0, 1, "Hyponym-of"], [6, 1, "Hyponym-of"], [0, 2, "Used-for"], [6, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "work", ",", "we", "present", "a", "fully", "automatic", "scene", "reconstruction", "pipeline", "that", "matches", "the", "reconstruction", "quality", "obtained", "with", "manual", "assistance", "by", "Xiao", "et", "al", ".", "and", "significantly", "exceeds", "the", "accuracy", "of", "prior", "automatic", "approaches", "to", "indoor", "reconstruction", "."], "ner": [[8, 11, "Method"], [9, 10, "Task"], [9, 11, "Method"], [10, 10, "Task"], [10, 11, "Method"], [30, 30, "Metric"], [36, 37, "Task"], [37, 37, "Task"]], "relations": [[0, 2, "Hyponym-of"], [2, 4, "Hyponym-of"], [1, 3, "Hyponym-of"], [0, 1, "Used-for"], [2, 1, "Used-for"], [4, 3, "Used-for"], [3, 7, "Synonymy-of"], [1, 7, "Hyponym-of"], [6, 7, "Hyponym-of"], [6, 3, "Hyponym-of"], [5, 6, "Evaluate-for"], [5, 1, "Evaluate-for"], [5, 0, "Evaluate-for"], [4, 7, "Used-for"]], "discontinuous": false}
{"tokens": ["Feature", "selection", "is", "a", "process", "of", "choosing", "a", "subset", "of", "preliminary", "features", "by", "removing", "irrelevant", "and", "redundant", "features", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "have", "then", "used", "the", "completeness", "of", "these", "new", "oracles", "to", "improve", "the", "training", "procedure", "of", "greedy", "parsers", "to", "include", "explorations", "of", "configurations", "which", "result", "from", "incorrect", "transitions", "."], "ner": [[16, 17, "Method"], [17, 17, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "system", "is", "able", "to", "capture", "synchronized", "face", "video", "and", "reconstruct", "the", "face", "model", "according", "to", "the", "tracked", "facial", "feature", "points", "."], "ner": [[12, 13, "Other Scientific Term"], [17, 20, "Other Scientific Term"], [18, 20, "Other Scientific Term"], [18, 19, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "hypothesize", "that", "the", "visual", "information", ",", "within", "videos", ",", "might", "give", "clues", "that", "help", "source", "separation", "."], "ner": [[4, 5, "Other Scientific Term"], [15, 16, "Task"], [16, 16, "Task"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "methods", "we", "presented", "are", "easily", "applied", "to", "other", "recursive", "tasks", "and", "network", "structures", "and", "provide", "a", "link", "between", "generative", "and", "conditional", "parsing", "."], "ner": [[12, 13, "Other Scientific Term"], [21, 22, "Method"], [22, 22, "Task"], [19, 19, 22, 22, "Method"]], "relations": [[1, 2, "Used-for"], [3, 2, "Used-for"]], "discontinuous": true}
{"tokens": ["We", "cast", "this", "problem", "as", "learning", "deep", "embeddings", "of", "the", "local", "geometry", "and", "radiometry", "of", "3D", "points", ",", "such", "that", "the", "border", "of", "objects", "presents", "high", "contrasts", "."], "ner": [[6, 7, "Other Scientific Term"], [7, 7, "Other Scientific Term"], [26, 26, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["These", "facts", "cause", "difficulties", "for", "the", "automated", "scoring", "of", "pronunciation", ",", "fluency", "and", "prosody", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["They", "develop", "a", "nonparametric", "Bayesian", "model", "which", "is", "able", "to", "infer", "unlimited", "features", ",", "based", "on", "distributional", "patterns", "as", "well", "as", "category", "information", "."], "ner": [[3, 5, "Method"], [4, 5, "Method"], [16, 17, "Other Scientific Term"], [21, 22, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "apply", "this", "methodology", "on", "two", "tasks", ",", "image", "classification", "and", "semantic", "segmentation", ",", "and", "discover", "undesirable", "dependency", "between", "objects", "and", "context", ",", "for", "example", "that", "`", "`", "sidewalk", "''", "segmentation", "is", "very", "sensitive", "to", "the", "presence", "of", "`", "`", "cars", "''", "in", "the", "image", "."], "ner": [[8, 9, "Task"], [9, 9, "Task"], [11, 12, "Task"], [12, 12, "Task"], [30, 30, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [2, 4, "Hyponym-of"], [3, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["This", "section", "summarizes", "CBS", "and", "the", "BCP", "technique", "applied", "to", "MAPF", "."], "ner": [[3, 3, "Method"], [6, 6, "Method"], [10, 10, "Task"]], "relations": [[0, 2, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Although", "satisfactory", "accuracy", "for", "automatic", "misinformation", "detection", "could", "be", "made", ",", "the", "effectiveness", "of", "discrediting", "misinformation", "on", "people", "'s", "belief", "and", "perception", "remains", "unknown", "."], "ner": [[2, 2, "Metric"], [4, 6, "Task"], [5, 6, "Task"], [6, 6, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["This", "architecture", "has", "the", "potential", "to", "overcome", "the", "problems", "of", "our", "VSM", "approach", "as", "it", "allows", "word", "representations", "to", "be", "learned", "jointly", "with", "a", "classifier", "on", "some", "supervised", "task", "of", "interest", "."], "ner": [[11, 11, "Method"], [16, 17, "Other Scientific Term"], [24, 24, "Method"], [27, 28, "Task"]], "relations": [[2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["As", "the", "generalized", "sparse", "convolution", "is", "a", "direct", "high", "-", "dimensional", "extension", "of", "the", "standard", "2D", "convolution", ",", "we", "can", "re", "-", "purpose", "all", "architectural", "innovations", "such", "as", "residual", "connections", ",", "batch", "normalization", ",", "and", "many", "others", "with", "little", "to", "no", "modification", "for", "high", "-", "dimensional", "problems", "."], "ner": [[2, 4, "Method"], [3, 4, "Method"], [4, 4, "Method"], [15, 16, "Method"], [16, 16, "Method"], [28, 29, "Method"], [31, 32, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [2, 4, "Synonymy-of"], [1, 4, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "investigate", "a", "different", ",", "rotational", "stereo", "model", "."], "ner": [[9, 11, "Method"], [10, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "presented", "a", "variational", "bayes", "solution", "to", "the", "problem", "of", "estimating", "a", "mixture", "of", "Gaussians", "from", "noisy", "input", "data", "with", "known", "uncertainty", "distributions", "."], "ner": [[7, 8, "Method"], [16, 18, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "recent", "years", ",", "language", "modeling", "has", "been", "widely", "employed", "in", "IR", "(", "Ponte", "and", "Croft", ",", "1998", ";", "Song", "and", "Croft", ",", "1998", ";", "Miller", "and", "Zhai", ",", "1999", ";", "Lafferty", "and", "Zhai", ",", "2001", ")", "."], "ner": [[4, 5, "Method"], [11, 11, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["VLAD", ",", "similar", "to", "BoVW", ",", "applies", "VQ", "to", "a", "collection", "of", "local", "features", "."], "ner": [[0, 0, "Method"], [4, 4, "Method"], [7, 7, "Method"], [12, 13, "Other Scientific Term"]], "relations": [[2, 0, "Used-for"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "then", "perform", "on", "-", "the", "-", "fly", "rescoring", "with", "the", "larger", "LM", "."], "ner": [[3, 8, "Method"], [8, 8, "Method"], [12, 12, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "addition", ",", "we", "develop", "a", "method", "to", "effectively", "capture", "asymmetric", "brain", "activity", "patterns", "that", "are", "important", "for", "emotion", "recognition", "."], "ner": [[10, 13, "Other Scientific Term"], [18, 19, "Task"], [19, 19, "Task"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "work", "builds", "on", "the", "success", "of", "convolutional", "networks", "for", "material", "segmentation", ",", "scene", "labeling", ",", "and", "object", "part", "-", "labeling", "tasks", "."], "ner": [[7, 8, "Method"], [10, 11, "Task"], [11, 11, "Task"], [13, 14, "Task"], [13, 13, "Other Scientific Term"], [14, 14, "Task"], [17, 20, "Task"]], "relations": [[1, 2, "Hyponym-of"], [3, 5, "Hyponym-of"], [0, 1, "Used-for"], [0, 3, "Used-for"], [0, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "central", "distinction", "between", "statistical", "and", "heuristic", "approaches", "is", "that", "statistical", "approaches", "are", "based", "on", "well", "-", "founded", "probabilistic", "models", "while", "heuristic", "ones", "are", "not", "."], "ner": [[6, 7, "Method"], [10, 11, "Method"], [18, 19, "Method"], [4, 4, 7, 7, "Method"]], "relations": [[2, 1, "Used-for"]], "discontinuous": true}
{"tokens": ["Therefore", ",", "the", "proposed", "TACNet", "can", "not", "only", "extract", "long", "-", "term", "temporal", "context", "information", "but", "also", "distinguish", "the", "transitional", "states", "."], "ner": [[4, 4, "Method"], [9, 14, "Other Scientific Term"], [13, 14, "Other Scientific Term"], [19, 20, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "goal", "of", "iFashion", "is", "to", "encourage", "research", "on", "a", "more", "complex", "task", "toward", "real", "-", "world", "applications", ",", "by", "jointly", "considering", "multi", "-", "label", "and", "fine", "-", "grained", "image", "recognition", "with", "a", "hierarchical", "label", "structure", "."], "ner": [[3, 3, "Material"], [26, 30, "Task"], [29, 30, "Task"], [33, 35, "Other Scientific Term"], [34, 35, "Other Scientific Term"], [22, 24, 29, 30, "Task"]], "relations": [[0, 1, "Used-for"], [0, 5, "Used-for"], [1, 2, "Hyponym-of"], [5, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["In", "terms", "of", "surface", "realisation", "from", "graphical", "models", "(", "and", "within", "the", "context", "of", "SDSs", ")", ",", "our", "approach", "is", "also", "related", "to", "work", "by", "Georgila", "et", "al", ".", "(", "2002", ")", "and", "Dethlefs", "and", "Cuayáhuitl", "(", "2011b", ")", ",", "who", "use", "HMMs", ",", "Dethlefs", "and", "Cuayáhuitl", "(", "2011a", ")", "who", "use", "Bayes", "Nets", ",", "and", "Mairesse", "et", "al", ".", "(", "2010", ")", "who", "use", "Dynamic", "Bayes", "Nets", "within", "an", "Active", "Learning", "framework", "."], "ner": [[6, 7, "Method"], [14, 14, "Method"], [42, 42, "Method"], [52, 53, "Method"], [65, 67, "Method"], [66, 67, "Method"], [70, 71, "Method"]], "relations": [[4, 5, "Hyponym-of"], [4, 3, "Hyponym-of"], [3, 5, "Synonymy-of"], [4, 6, "Part-for"]], "discontinuous": false}
{"tokens": ["With", "multiple", "possible", "locations", "for", "each", "frame", ",", "the", "problem", "can", "be", "understood", "as", "a", "measurement", "association", "and", "single", "target", "tracking", "problem", "."], "ner": [[15, 16, "Task"], [18, 20, "Task"], [19, 20, "Task"], [20, 20, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "experimental", "results", "demonstrated", "that", "the", "proposed", "method", "could", "improve", "the", "performance", "of", "the", "inter", "-", "sentential", "zero", "anaphora", "resolution", "drastically", ",", "which", "has", "been", "regarded", "as", "a", "notoriously", "difficult", "task", "."], "ner": [[14, 19, "Task"], [17, 19, "Task"], [18, 19, "Task"], [19, 19, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "submit", "the", "emotion", "recognition", "result", "on", "the", "test", "set", "of", "Atypical", "Affect", "Challenge", "predicted", "by", "HSF", "-", "CRNN", "system", ",", "and", "get", "the", "UA", "of", "35.795", "%", "."], "ner": [[3, 4, "Task"], [4, 4, "Task"], [11, 13, "Other Scientific Term"], [16, 18, "Method"], [24, 24, "Metric"]], "relations": [[0, 1, "Hyponym-of"], [3, 0, "Used-for"], [4, 3, "Evaluate-for"], [4, 0, "Evaluate-for"], [0, 2, "Part-for"]], "discontinuous": false}
{"tokens": ["Our", "results", "show", "that", "phrases", "directly", "extracted", "from", "GEC", "corpora", "outperform", "phrases", "from", "a", "statistical", "machine", "translation", "phrase", "table", "by", "a", "large", "margin", "."], "ner": [[8, 8, "Task"], [14, 18, "Other Scientific Term"], [14, 16, "Method"], [15, 16, "Task"], [17, 18, "Other Scientific Term"]], "relations": [[2, 3, "Used-for"], [1, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["For", "our", "experiments", "we", "generate", "inverse", "phrase", "for", "an", "RP", "by", "adding", "a", "phrase", "\"", "inverse", "of", "\"", "to", "that", "RP", "."], "ner": [[9, 9, "Other Scientific Term"], [20, 20, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["To", "address", "the", "limitations", "of", "the", "bag", "-", "of", "-", "words", "assumption", ",", "(", "Tian", "et", "al", ".", ",", "2016", ")", "proposed", "Sentence", "Level", "Recurrent", "Topic", "Model", "(", "SLRTM", ")", "by", "using", "a", "Recurrent", "Neural", "Networks", "(", "RNN", ")", "based", "framework", "to", "model", "long", "range", "dependencies", "between", "words", "."], "ner": [[6, 10, "Method"], [22, 26, "Method"], [24, 26, "Method"], [25, 26, "Method"], [28, 28, "Method"], [33, 35, "Method"], [34, 35, "Method"], [37, 37, "Method"], [43, 45, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [5, 6, "Hyponym-of"], [4, 2, "Hyponym-of"], [7, 6, "Hyponym-of"], [1, 4, "Synonymy-of"], [5, 7, "Synonymy-of"], [5, 1, "Used-for"], [5, 4, "Used-for"], [7, 1, "Used-for"], [7, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "system", "is", "evaluated", "on", "the", "ImageNet", "VID", "dataset", "for", "object", "detection", "in", "videos", "and", "the", "YTO", "dataset", "for", "object", "localization", ",", "both", "of", "which", "show", "promising", "results", "."], "ner": [[6, 7, "Material"], [6, 6, "Material"], [7, 7, "Task"], [10, 11, "Task"], [11, 11, "Task"], [16, 16, "Material"], [19, 20, "Task"], [20, 20, "Task"]], "relations": [[0, 2, "Used-for"], [0, 3, "Used-for"], [5, 6, "Used-for"], [3, 4, "Hyponym-of"], [6, 7, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Due", "to", "the", "fact", "that", "there", "often", "is", "a", "positive", "gap", "between", "the", "QMI", "problem", "and", "its", "LMI", "relaxation", ",", "a", "deterministic", "approximate", "algorithm", "is", "proposed", "to", "solve", "the", "robust", "adaptive", "beamforming", "in", "the", "QMI", "form", "."], "ner": [[13, 14, "Task"], [13, 13, "Other Scientific Term"], [17, 18, "Method"], [17, 17, "Other Scientific Term"], [21, 23, "Method"], [22, 23, "Method"], [30, 31, "Task"], [31, 31, "Task"], [34, 34, "Other Scientific Term"]], "relations": [[4, 5, "Hyponym-of"], [4, 6, "Used-for"], [6, 7, "Hyponym-of"], [1, 8, "Synonymy-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Additionally", ",", "the", "German", "and", "Swedish", "monolingual", "treebanks", "contain", "lemma", "information", "."], "ner": [[6, 7, "Other Scientific Term"], [7, 7, "Other Scientific Term"], [9, 10, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["It", "must", "be", "noted", "that", "results", "for", "noisy", "conditions", "can", "not", "be", "reported", "in", "terms", "of", "EER", ";", "doing", "so", "would", "amount", "to", "adjusting", "classifier", "parameters", "to", "achieve", "EER", "performance", ",", "which", "can", "be", "interpreted", "as", "a", "non", "-", "causal", "adaptation", "method", "."], "ner": [[16, 16, "Metric"], [24, 24, "Method"], [28, 28, "Metric"], [37, 41, "Method"], [40, 41, "Method"]], "relations": [[0, 2, "Synonymy-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["A", "general", "framework", "for", "independent", "feature", "extraction", "with", "tensor", "representation", "was", "proposed", "in", "this", "paper", "."], "ner": [[4, 6, "Task"], [5, 6, "Task"], [6, 6, "Task"], [8, 9, "Method"], [8, 8, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Another", "interesting", "perspective", "would", "be", "to", "study", "the", "combination", "of", "our", "approach", "with", "constraining", "heuristics", ",", "although", "language", "-", "specific", "and", "manual", "rules", "would", "be", "required", "."], "ner": [[13, 14, "Method"], [14, 14, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", ",", "in", "turn", ",", "can", "be", "applied", "to", "a", "variety", "of", "different", "tasks", "such", "as", "the", "automatic", "semantification", "of", "captions", ",", "query", "generation", "and", "expansion", "."], "ner": [[17, 18, "Task"], [18, 18, "Task"], [22, 23, "Task"], [23, 23, "Task"], [22, 22, 25, 25, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["The", "chroma", "components", "of", "the", "original", "video", "are", "interpolated", "using", "plain", "Bicubic", "interpolation", "."], "ner": [[1, 2, "Other Scientific Term"], [1, 1, "Other Scientific Term"], [11, 12, "Method"], [12, 12, "Method"]], "relations": [[2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Recently", ",", "Levy", "and", "Goldberg", "(", "2014", ")", "have", "generalized", "the", "skip", "-", "gram", "model", "to", "include", "not", "only", "linear", "but", "arbitrary", "contexts", "like", "contexts", "derived", "from", "dependency", "parse", "trees", "."], "ner": [[11, 13, "Method"], [27, 29, "Other Scientific Term"], [28, 29, "Other Scientific Term"], [29, 29, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "burden", "of", "ensuring", "that", "the", "result", "is", "linguistically", "consistent", "falls", "on", "the", "language", "model", "(", "LM", ")", "."], "ner": [[13, 14, "Method"], [16, 16, "Method"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["LENA", "[", "14", ",", "13", "]", "is", "one", "of", "such", "a", "system", "that", "is", "implemented", "with", "Gaussian", "Mixture", "Models", "and", "Hidden", "Markov", "Models", "and", "enables", "one", "to", "automatically", "distinguish", "the", "linguistic", "and", "non", "-", "linguistic", "vocalisations", "."], "ner": [[0, 0, "Method"], [16, 18, "Method"], [20, 22, "Method"], [32, 35, "Other Scientific Term"], [30, 30, 35, 35, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"], [2, 0, "Used-for"]], "discontinuous": true}
{"tokens": ["Compared", "with", "existing", "R", "-", "D", "detection", "schemes", ",", "the", "proposed", "R", "-", "D", "RMT", "criterion", "is", "able", "to", "significantly", "improve", "the", "identifiability", "."], "ner": [[3, 7, "Method"], [3, 6, "Task"], [6, 6, "Task"], [11, 15, "Method"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"], [3, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "SRC", ",", "multiple", "dictionaries", "are", "trained", "to", "distinctly", "represent", "different", "classes", "and", "the", "classification", "output", "is", "solely", "based", "on", "the", "minumum", "reconstruction", "error", "relative", "to", "the", "different", "dictionaries", "."], "ner": [[1, 1, "Method"], [14, 14, "Task"], [21, 23, "Other Scientific Term"], [22, 23, "Other Scientific Term"], [22, 22, "Task"]], "relations": [[2, 3, "Hyponym-of"], [2, 1, "Used-for"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Another", "appealing", "direction", "is", "to", "adopt", "our", "delayed", "copy", "mechanism", "to", "other", "NLG", "domains", "."], "ner": [[7, 9, "Method"], [12, 12, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "show", "that", "photographic", "images", "can", "be", "synthesized", "from", "semantic", "layouts", "by", "a", "single", "feedforward", "network", "with", "appropriate", "structure", ",", "trained", "end", "-", "to", "-", "end", "with", "a", "direct", "regression", "objective", "."], "ner": [[9, 10, "Other Scientific Term"], [14, 15, "Method"], [29, 29, "Method"]], "relations": [[2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "long", "term", "goal", "of", "our", "research", "is", "to", "lay", "the", "foundations", "for", "understanding", "argumentative", "structure", "in", "conversations", ",", "which", "could", "be", "applied", "to", "NLP", "tasks", "such", "as", "summarization", ",", "information", "retrieval", ",", "and", "text", "visualization", "."], "ner": [[24, 24, "Task"], [28, 28, "Task"], [30, 31, "Task"], [31, 31, "Task"], [34, 35, "Task"], [35, 35, "Task"]], "relations": [[2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [1, 0, "Hyponym-of"], [2, 0, "Hyponym-of"], [4, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "use", "distant", "supervision", "to", "automatically", "label", "data", "."], "ner": [[2, 3, "Method"], [3, 3, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "further", "utilize", "the", "multi", "-", "hop", "attention", "to", "extract", "multi", "-", "perspective", "information", ",", "and", "modify", "the", "episodic", "memory", "module", "as", "our", "gated", "recurrence", "network", "[", "Kumar", "et", "al", ".", ",", "2016", "]", "to", "explore", "implicitly", "relevant", "information", "of", "sequential", "data", "judging", "by", "a", "reference", "."], "ner": [[4, 7, "Method"], [7, 7, "Method"], [10, 13, "Other Scientific Term"], [18, 20, "Method"], [23, 25, "Method"], [24, 25, "Method"]], "relations": [[0, 1, "Hyponym-of"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Secondly", "with", "each", "disambiguation", "at", "lower", "levels", "of", "polysemy", ",", "a", "more", "stable", "context", "is", "constructed", "to", "perform", "the", "disambiguation", "of", "much", "more", "polysemous", "lemmas", "later", "."], "ner": [[3, 3, "Task"], [8, 8, "Other Scientific Term"], [19, 19, "Task"], [23, 24, "Other Scientific Term"]], "relations": [[0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["First", ",", "as", "the", "extension", "of", "the", "FST", "model", "is", "a", "preliminary", "study", ",", "there", "is", "much", "work", "that", "can", "be", "done", ",", "such", "as", "calculating", "the", "similarity", "more", "accurately", "without", "manual", "intervention", ",", "or", "finding", "a", "balance", "between", "the", "original", "FST", "model", "and", "the", "extended", "one", "to", "improve", "the", "performance", "in", "ASR", "transcription", "."], "ner": [[7, 7, "Method"], [41, 41, "Method"], [52, 53, "Task"], [52, 52, "Task"], [53, 53, "Task"]], "relations": [[2, 4, "Hyponym-of"], [0, 1, "Synonymy-of"], [0, 2, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "trained", "convolutional", "networks", "from", "scratch", "to", "perform", "hashtag", "prediction", ",", "and", "extended", "these", "networks", "with", "a", "three", "-", "way", "tensor", "model", "that", "learns", "user", "embeddings", "jointly", "with", "the", "final", "prediction", "model", "."], "ner": [[3, 4, "Method"], [9, 10, "Task"], [9, 9, "Other Scientific Term"], [10, 10, "Task"], [18, 22, "Method"], [21, 22, "Method"], [26, 26, "Other Scientific Term"], [31, 32, "Method"], [31, 31, "Task"]], "relations": [[1, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [7, 8, "Used-for"], [0, 1, "Used-for"], [4, 0, "Used-for"], [3, 8, "Synonymy-of"], [1, 8, "Hyponym-of"], [7, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "contrasts", "with", "NLP", ",", "where", "phonological", "features", "have", "been", "subject", "to", "less", "experimentation", ",", "perhaps", "because", "of", "the", "perceived", "lower", "relevance", "of", "phonology", "than", "morphology", ",", "syntax", ",", "and", "semantics", "to", "NLP", "tasks", "."], "ner": [[3, 3, "Task"], [6, 7, "Other Scientific Term"], [23, 23, "Other Scientific Term"], [25, 25, "Other Scientific Term"], [27, 27, "Other Scientific Term"], [30, 30, "Other Scientific Term"], [32, 32, "Task"]], "relations": [[0, 6, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "plug", "the", "score", "into", "an", "MIL", "pipeline", "and", "show", "significant", "improvements", "on", "the", "ILSVRC-20", ",", "VOC", "2007", "and", "COCO-07", "datasets", "."], "ner": [[6, 6, "Method"], [14, 14, "Material"], [16, 17, "Material"], [19, 19, "Material"]], "relations": [[0, 1, "Used-for"], [0, 2, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Using", "a", "declarative", "language", "for", "model", "description", "in", "such", "frameworks", "allows", "large", "parts", "of", "the", "recognition", "system", "to", "be", "application", "-", "independent", "."], "ner": [[2, 3, "Other Scientific Term"], [5, 6, "Task"], [15, 16, "Method"], [15, 15, "Task"]], "relations": [[2, 3, "Used-for"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["ISF", "sentences", "indicate", "previous", "attempts", "to", "find", "the", "requested", "information", "have", "failed", ",", "and", "are", "a", "good", "signal", "to", "the", "QA", "system", "to", "enable", "more", "indepth", "search", "strategies", "."], "ner": [[0, 0, "Other Scientific Term"], [20, 21, "Method"], [20, 20, "Task"], [26, 27, "Other Scientific Term"]], "relations": [[1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Unlike", "other", "automatic", "question", "answering", "systems", "that", "focus", "on", "searching", "answers", "from", "a", "given", "text", "collection", ",", "Q&A", "archive", "(", "Xue", "et", "al", ".", ",", "2008", ")", "or", "the", "Web", "(", "Jijkoun", "et", "al", ".", ",", "2005", ")", ",", "in", "a", "FAQ", "database", "the", "questions", "and", "answers", "are", "already", "provided", "by", "an", "expert", "."], "ner": [[2, 5, "Method"], [2, 4, "Task"], [3, 5, "Method"], [3, 4, "Task"], [17, 17, "Task"], [41, 41, "Method"], [42, 42, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [2, 3, "Used-for"], [0, 2, "Hyponym-of"], [1, 3, "Hyponym-of"], [0, 3, "Used-for"], [0, 4, "Used-for"], [3, 4, "Synonymy-of"], [2, 4, "Used-for"], [1, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "such", "approaches", "are", "heavily", "reliant", "on", "exploiting", "structure", "in", "neighboring", "pixels", ",", "often", "subsampling", ",", "reshaping", "or", "re", "-", "ordering", "data", ",", "and", "using", "convolutions", "to", "take", "advantage", "of", "neighboring", "correlations", "."], "ner": [[12, 12, "Other Scientific Term"], [15, 15, "Method"], [17, 17, "Method"], [19, 21, "Method"], [26, 26, "Method"], [31, 32, "Other Scientific Term"]], "relations": [[5, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["State", "forecasting", "in", "CPS", "is", "imperative", "for", "optimal", "planning", "of", "system", "energy", "utility", "and", "understanding", "normal", "operational", "characteristics", "of", "the", "system", "thus", "enabling", "anomaly", "detection", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"], [3, 3, "Task"], [23, 24, "Task"], [24, 24, "Task"]], "relations": [[0, 1, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["To", "extend", "the", "domain", "of", "dialog", "systems", ",", "Gašic", "et", "al", ".", "(", "2014", ")", "explicitly", "defined", "kernel", "functions", "between", "the", "belief", "states", "that", "come", "from", "different", "domains", "."], "ner": [[5, 6, "Task"], [17, 18, "Other Scientific Term"], [17, 17, "Other Scientific Term"], [21, 22, "Other Scientific Term"]], "relations": [[1, 2, "Synonymy-of"], [1, 0, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["To", "test", "our", "hypothesis", ",", "we", "first", "quantify", "language", "distance", "in", "terms", "of", "word", "order", "typology", ",", "and", "then", "systematically", "study", "the", "transferability", "of", "ordersensitive", "and", "order", "-", "free", "neural", "architectures", "on", "cross", "-", "lingual", "dependency", "parsing", "."], "ner": [[8, 9, "Other Scientific Term"], [13, 15, "Other Scientific Term"], [26, 30, "Other Scientific Term"], [29, 30, "Other Scientific Term"], [32, 36, "Task"], [35, 36, "Task"], [36, 36, "Task"], [24, 24, 29, 30, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [7, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [5, 6, "Hyponym-of"], [7, 4, "Used-for"], [2, 4, "Used-for"]], "discontinuous": true}
{"tokens": ["Extensive", "experiments", "on", "image", "classification", "and", "object", "detection", "tasks", "have", "verified", "the", "effectiveness", "of", "the", "proposed", "method", "."], "ner": [[3, 4, "Task"], [4, 4, "Task"], [6, 7, "Task"], [7, 7, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Conditional", "effects", ",", "however", ",", "are", "important", "for", "classical", "planning", ",", "and", "many", "domains", "require", "them", "for", "efficient", "modeling", "."], "ner": [[0, 1, "Other Scientific Term"], [8, 9, "Task"], [9, 9, "Task"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Due", "to", "the", "unconstrained", "nature", "of", "the", "attention", "mechanism", ",", "we", "do", "not", "know", "when", "a", "point", "in", "the", "scene", "has", "been", "last", "scrutinized", ",", "or", "if", "it", "has", "been", "attended", "to", "in", "the", "past", "."], "ner": [[7, 8, "Method"], [7, 7, "Method"], [19, 19, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["This", "zero", "-", "shot", "challenge", "drives", "the", "cross", "-", "lingual", "ASSUM", "to", "resort", "to", "two", "existing", "independent", "techniques", ",", "i.e.", ",", "the", "monolingual", "AS", "-", "SUM", "and", "the", "bilingual", "translation", "."], "ner": [[1, 4, "Other Scientific Term"], [7, 10, "Method"], [10, 10, "Method"], [22, 25, "Method"], [23, 25, "Method"], [28, 29, "Method"]], "relations": [[1, 2, "Hyponym-of"], [1, 4, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 2, "Hyponym-of"], [2, 4, "Synonymy-of"], [3, 1, "Used-for"], [5, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Amongst", "other", "features", "such", "as", "bag", "-", "of", "-", "words", ",", "negation", "and", "polarity", ",", "the", "TAM", "model", "also", "used", "the", "composite", "backoff", "features", "proposed", "by", "(", "Joshi", "and", "Penstein", "-", "Rosé", ",", "2009", ")", "."], "ner": [[5, 9, "Other Scientific Term"], [11, 11, "Other Scientific Term"], [13, 13, "Other Scientific Term"], [16, 16, "Method"], [21, 23, "Other Scientific Term"]], "relations": [[0, 3, "Used-for"], [1, 3, "Used-for"], [2, 3, "Used-for"], [4, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Secondly", ",", "we", "introduce", "an", "indicator", "matrix", "to", "avoid", "unobserved", "values", "involved", "into", "the", "numerical", "computation", "of", "feature", "selection", "models", "so", "that", "both", "our", "proposed", "robust", "feature", "selection", "framework", "and", "existing", "feature", "selection", "frameworks", "can", "be", "directly", "applied", "on", "incomplete", "data", "sets", "."], "ner": [[5, 6, "Other Scientific Term"], [14, 15, "Task"], [17, 19, "Method"], [17, 18, "Task"], [18, 19, "Method"], [18, 18, "Task"], [26, 28, "Method"], [26, 27, "Task"], [27, 28, "Method"], [27, 27, "Task"], [31, 33, "Method"], [31, 32, "Task"], [32, 33, "Method"], [32, 32, "Task"]], "relations": [[2, 4, "Hyponym-of"], [3, 5, "Hyponym-of"], [3, 9, "Hyponym-of"], [3, 13, "Hyponym-of"], [7, 5, "Hyponym-of"], [7, 9, "Hyponym-of"], [7, 13, "Hyponym-of"], [11, 5, "Hyponym-of"], [11, 9, "Hyponym-of"], [11, 13, "Hyponym-of"], [6, 8, "Hyponym-of"], [6, 12, "Hyponym-of"], [10, 8, "Hyponym-of"], [10, 12, "Hyponym-of"], [2, 3, "Used-for"], [2, 7, "Used-for"], [2, 11, "Used-for"], [6, 3, "Used-for"], [6, 7, "Used-for"], [6, 11, "Used-for"], [10, 3, "Used-for"], [10, 7, "Used-for"], [10, 11, "Used-for"], [4, 5, "Used-for"], [4, 9, "Used-for"], [4, 13, "Used-for"], [8, 5, "Used-for"], [8, 9, "Used-for"], [8, 13, "Used-for"], [12, 5, "Used-for"], [12, 9, "Used-for"], [12, 13, "Used-for"], [3, 7, "Synonymy-of"], [3, 11, "Synonymy-of"], [7, 11, "Synonymy-of"], [5, 9, "Synonymy-of"], [5, 13, "Synonymy-of"], [9, 13, "Synonymy-of"], [6, 10, "Synonymy-of"], [8, 12, "Synonymy-of"], [0, 1, "Used-for"], [0, 2, "Used-for"], [0, 6, "Used-for"], [0, 10, "Used-for"]], "discontinuous": false}
{"tokens": ["While", "future", "work", "is", "called", "for", "to", "generate", "larger", "and", "harder", "formulas", ",", "we", "believe", "our", "framework", "shows", "great", "potential", "for", "understanding", "and", "improving", "SAT", "solvers", "."], "ner": [[24, 25, "Method"], [24, 24, "Task"], [25, 25, "Method"]], "relations": [[0, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "method", "also", "enables", "new", "types", "of", "applications", "such", "as", "cloth", "retargeting", ",", "free", "-", "viewpoint", "video", "rendering", "and", "animations", "."], "ner": [[10, 11, "Task"], [13, 17, "Task"], [16, 17, "Task"], [19, 19, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Efforts", "of", "this", "line", "have", "been", "devoted", "to", "two", "directions", ":", "attention", "mechanism", "and", "reinforcement", "learning", "."], "ner": [[11, 12, "Method"], [11, 11, "Method"], [14, 15, "Method"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "the", "following", "simulation", "we", "first", "analyze", "the", "proposed", "estimator", "of", "the", "CMI", "lower", "bound", "."], "ner": [[9, 9, "Method"], [12, 12, "Method"], [12, 14, "Other Scientific Term"], [13, 14, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "note", "that", "these", "are", "important", "design", "requirements", "in", "the", "case", "of", "temporally", "varying", "signals", ",", "that", "are", "different", "from", "transforms", "in", "the", "2D", "spatial", "domain", "."], "ner": [[12, 14, "Other Scientific Term"], [23, 25, "Other Scientific Term"], [24, 25, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["A", "dialog", "management", "system", "with", "different", "states", "is", "designed", "to", "control", "the", "flow", "of", "the", "conversation", ",", "which", "consists", "of", "one", "part", "machine", "-", "initiative", "questions", "from", "Zara", "and", "answers", "from", "human", "users", ",", "and", "another", "part", "user", "-", "initiative", "questions", "and", "challenges", "to", "Zara", "."], "ner": [[1, 3, "Method"], [1, 2, "Task"], [27, 27, "Method"], [44, 44, "Method"]], "relations": [[0, 1, "Used-for"], [2, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Similar", "to", "the", "semantic", "segmentation", "approaches", ",", "poses", "or", "keypoints", "estimation", "can", "also", "be", "used", "for", "accurate", "/", "reliable", "human", "part", "localization", "."], "ner": [[3, 4, "Task"], [3, 5, "Method"], [4, 4, "Task"], [4, 5, "Method"], [9, 10, "Method"], [19, 21, "Task"], [21, 21, "Task"], [7, 7, 10, 10, "Method"]], "relations": [[1, 3, "Hyponym-of"], [0, 2, "Hyponym-of"], [1, 0, "Used-for"], [3, 2, "Used-for"], [7, 5, "Used-for"], [5, 6, "Hyponym-of"], [4, 5, "Used-for"], [1, 5, "Used-for"]], "discontinuous": true}
{"tokens": ["This", "database", "will", "be", "used", "for", "consistent", "utterance", "generation", "in", "dialog", "systems", "."], "ner": [[1, 1, "Other Scientific Term"], [6, 8, "Task"], [7, 8, "Task"], [8, 8, "Task"], [10, 11, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [1, 4, "Part-for"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "focus", "on", "expanding", "coverage", "of", "existing", "emotion", "lexicon", ",", "namely", "DepecheMood", ",", "using", "the", "synonymy", "semantic", "relation", "available", "in", "English", "WordNet", "."], "ner": [[11, 12, "Other Scientific Term"], [15, 15, "Other Scientific Term"], [19, 21, "Other Scientific Term"], [20, 21, "Other Scientific Term"], [24, 25, "Material"], [25, 25, "Material"]], "relations": [[4, 5, "Part-for"], [1, 0, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "paper", "proposes", "FES", "-", "LM", ",", "a", "joint", "neural", "language", "model", "for", "semantic", "sequences", "built", "upon", "frames", ",", "entities", "and", "sentiments", "."], "ner": [[3, 5, "Method"], [8, 11, "Method"], [9, 11, "Method"], [10, 11, "Method"], [13, 14, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "new", "distances", "are", "calculated", "by", "propagating", "the", "similarity", "information", "along", "the", "weighted", "edges", "of", "the", "graph", "."], "ner": [[12, 13, "Other Scientific Term"], [13, 13, "Other Scientific Term"], [16, 16, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Part-for"]], "discontinuous": false}
{"tokens": ["The", "advantage", "of", "our", "proposed", "story", "tracking", "solution", "is", "that", "it", "quickly", "adapts", "to", "emerging", "entities", "or", "events", "and", "their", "relatedness", ",", "because", "it", "does", "not", "require", "a", "slow", "-", "to", "-", "change", "knowledge", "base", "."], "ner": [[5, 7, "Method"], [5, 6, "Task"], [6, 6, "Task"], [15, 15, "Other Scientific Term"], [33, 34, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "measure", "performance", "by", "mean", "of", "average", "precision", "(", "MAP", ")", "or", "precision", "and", "recall", "curves", "for", "hamming", "ranking", "using", "16", "to", "128", "hash", "bits", "."], "ner": [[4, 7, "Metric"], [6, 7, "Metric"], [9, 9, "Metric"], [12, 12, "Metric"], [14, 14, "Metric"], [17, 18, "Method"], [18, 18, "Task"], [23, 24, "Other Scientific Term"], [23, 23, "Method"]], "relations": [[0, 2, "Synonymy-of"], [5, 6, "Used-for"], [0, 5, "Evaluate-for"], [2, 5, "Evaluate-for"], [3, 5, "Evaluate-for"], [4, 5, "Evaluate-for"], [0, 6, "Evaluate-for"], [2, 6, "Evaluate-for"], [3, 6, "Evaluate-for"], [4, 6, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["However", ",", "the", "approach", "does", "not", "extend", "to", "general", "graphical", "models", "or", "discrete", "latent", "variables", "."], "ner": [[9, 10, "Method"], [12, 14, "Other Scientific Term"], [13, 14, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "the", "future", ",", "other", "hierarchical", "3D", "space", "partition", "structures", "can", "be", "studied", "as", "the", "underlying", "structure", "for", "the", "deep", "net", "computation", "and", "the", "non", "-", "uniform", "point", "sampling", "issue", "needs", "to", "be", "taken", "into", "consideration", "."], "ner": [[5, 9, "Other Scientific Term"], [6, 9, "Other Scientific Term"], [6, 7, "Other Scientific Term"], [19, 21, "Task"], [24, 28, "Problem"], [28, 28, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "the", "third", ",", "we", "apply", "our", "models", "to", "a", "related", "downstream", "task", ",", "implicit", "discourse", "sense", "classification", ",", "and", "achieve", "competitive", "results", "by", "combining", "our", "event", "embeddings", "(", "Parker", "et", "al", ".", ",", "2011", ")", "."], "ner": [[14, 17, "Task"], [15, 17, "Task"], [16, 17, "Task"], [17, 17, "Task"], [26, 27, "Other Scientific Term"], [27, 27, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [4, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["As", "an", "added", "advantage", "of", "the", "current", "method", ",", "we", "automatically", "split", "word", "forms", "into", "stems", "and", "inflectional", "material", "."], "ner": [[12, 13, "Other Scientific Term"], [15, 15, "Other Scientific Term"], [17, 18, "Other Scientific Term"]], "relations": [[1, 0, "Part-for"], [2, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["Due", "to", "space", "constraints", ",", "we", "forgo", "a", "review", "of", "various", "predictive", "models", "as", "this", "paper", "is", "focused", "on", "computational", "efficient", "likelihoods", "."], "ner": [[11, 12, "Method"], [19, 21, "Other Scientific Term"], [21, 21, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "quantitative", "and", "qualitative", "experimental", "results", "on", "the", "large", "-", "scale", "VisDial", "v0.9", "and", "v1.0", "datasets", "demonstrate", "that", "the", "proposed", "RvA", "not", "only", "outperforms", "the", "state", "-", "of", "-", "the", "-", "art", "methods", ",", "but", "also", "achieves", "reasonable", "recursion", "and", "interpretable", "attention", "maps", "without", "additional", "annotations", "."], "ner": [[11, 12, "Material"], [20, 20, "Method"], [38, 38, "Method"], [40, 42, "Other Scientific Term"], [41, 42, "Other Scientific Term"], [41, 41, "Method"], [11, 11, 14, 14, "Material"]], "relations": [[1, 6, "Used-for"], [1, 0, "Used-for"], [3, 4, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["We", "use", "simple", "text", "classification", "algorithms", "by", "transforming", "the", "input", "features", "to", "a", "reduced", "feature", "set", "."], "ner": [[3, 5, "Method"], [3, 4, "Task"], [4, 4, "Task"], [4, 5, "Method"], [14, 15, "Other Scientific Term"]], "relations": [[0, 3, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "though", "robust", "to", "user", "and", "domain", "changes", ",", "the", "method", "is", "solely", "driven", "by", "the", "distance", "computed", "between", "predicted", "and", "true", "labels", ",", "and", "it", "does", "not", "exploit", "any", "notion", "of", "similarity", "between", "tasks", "(", "e.g.", "domains", ",", "users", ",", "MT", "engines", ")", "."], "ner": [[42, 43, "Method"], [42, 42, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "cases", "where", "user", "and", "item", "features", "are", "not", "available", ",", "we", "can", "construct", "a", "two", "-", "dimensional", "user", "-", "item", "matrix", "from", "the", "time", "sequences", "where", "each", "entry", "indicates", "the", "total", "count", "of", "user", "-", "item", "interactions", ",", "and", "apply", "SVD", "to", "get", "a", "latent", "feature", "vector", "for", "each", "use", "or", "item", "."], "ner": [[18, 21, "Other Scientific Term"], [41, 41, "Method"], [45, 47, "Other Scientific Term"], [46, 47, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "performance", "of", "the", "proposed", "method", "was", "compared", "with", "those", "of", "several", "conventional", "methods", "such", "as", "IMCRA", ",", "sparse", "NMF", ",", "supervised", "NMF", "with", "exemplars", ",", "and", "semi", "-", "supervised", "NMF", "."], "ner": [[16, 16, "Method"], [18, 19, "Method"], [19, 19, "Method"], [21, 22, "Method"], [22, 22, "Method"], [27, 30, "Method"], [30, 30, "Method"]], "relations": [[1, 2, "Hyponym-of"], [1, 4, "Hyponym-of"], [1, 6, "Hyponym-of"], [3, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 6, "Hyponym-of"], [5, 2, "Hyponym-of"], [5, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [2, 4, "Synonymy-of"], [2, 6, "Synonymy-of"], [4, 6, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "IC", "-", "LK", "method", "is", "efficient", "as", "the", "Jacobian", "can", "be", "pre", "-", "computed", "and", "re", "-", "used", "during", "subsequent", "iterations", ",", "while", "the", "ESM", "method", "has", "a", "high", "convergence", "rate", "."], "ner": [[1, 4, "Method"], [9, 9, "Other Scientific Term"], [25, 25, "Method"], [30, 31, "Metric"]], "relations": [[3, 2, "Evaluate-for"], [3, 0, "Evaluate-for"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "method", "is", "agnostic", "to", "the", "algorithm", "used", "for", "this", "optimization", "step", ",", "allowing", "the", "algorithm", "best", "-", "suited", "to", "the", "particular", "energy", "function", "to", "be", "used", "."], "ner": [[10, 10, "Task"], [22, 23, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["As", "such", "there", "is", "a", "huge", "requirement", "for", "an", "automated", "de", "-", "identification", "system", "."], "ner": [[9, 13, "Method"], [9, 12, "Task"], [10, 13, "Method"]], "relations": [[0, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Since", "the", "MS", "features", "are", "motivated", "from", "human", "auditory", "processing", ",", "another", "research", "direction", "is", "to", "investigate", "the", "performance", "of", "a", "ONN", "with", "the", "MS", "features", "at", "its", "input", "layer", "as", "an", "attempt", "to", "model", "human", "speech", "recognition", "."], "ner": [[2, 3, "Other Scientific Term"], [8, 9, "Task"], [21, 21, "Method"], [24, 25, "Other Scientific Term"], [36, 37, "Task"], [37, 37, "Task"]], "relations": [[4, 5, "Hyponym-of"], [0, 3, "Synonymy-of"], [0, 2, "Used-for"], [3, 2, "Used-for"], [2, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "initialize", "the", "representation", "of", "an", "edge", "(", "an", "ordered", "pair", "of", "entity", "mentions", ")", "from", "the", "representations", "of", "the", "entity", "mentions", "and", "their", "context", "."], "ner": [[6, 6, "Other Scientific Term"], [12, 12, "Other Scientific Term"], [12, 13, "Other Scientific Term"], [13, 13, "Other Scientific Term"], [20, 21, "Other Scientific Term"], [20, 20, "Other Scientific Term"], [21, 21, "Other Scientific Term"]], "relations": [[1, 5, "Synonymy-of"], [3, 6, "Synonymy-of"], [2, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "address", "this", "issue", "by", "extending", "the", "recurrent", "units", "with", "multiple", "blocks", "along", "with", "a", "trainable", "routing", "network", "."], "ner": [[7, 8, "Other Scientific Term"], [15, 17, "Method"], [16, 17, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "creates", "the", "problem", "of", "metal", "artifact", "reduction", "(", "MAR", ")", ",", "for", "which", "existing", "solutions", "are", "inadequate", "."], "ner": [[5, 7, "Problem"], [9, 9, "Problem"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Our", "paper", "proposes", "a", "model", "to", "tackle", "multi", "-", "source", "domain", "adaptation", ",", "which", "is", "a", "more", "general", "and", "challenging", "scenario", "."], "ner": [[7, 11, "Task"], [10, 11, "Task"], [11, 11, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "are", "not", "expecting", "a", "significant", "change", "in", "results", "with", "different", "loss", "functions", "as", "the", "proposed", "regularizers", "are", "not", "log", "loss", "specific", "."], "ner": [[11, 12, "Other Scientific Term"], [11, 11, "Other Scientific Term"], [16, 16, "Method"], [19, 20, "Other Scientific Term"], [20, 20, "Other Scientific Term"]], "relations": [[1, 4, "Synonymy-of"], [3, 4, "Hyponym-of"], [3, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Fraud", "detection", "has", "been", "an", "interesting", "topic", "in", "machine", "learning", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"], [8, 9, "Task"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Specifically", ",", "we", "develop", "an", "interactive", "search", "algorithm", "to", "uncover", "overconfident", "unknown", "unknowns", "based", "on", "an", "facility", "locations", "utility", "model", "."], "ner": [[5, 6, "Method"], [16, 19, "Method"], [16, 18, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Modeling", "morphological", "features", "in", "these", "languages", "not", "only", "provides", "an", "additional", "source", "of", "information", "but", "can", "also", "alleviate", "data", "sparsity", "problems", "."], "ner": [[1, 2, "Other Scientific Term"], [18, 19, "Problem"], [19, 19, "Problem"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["These", "knowledge", "bases", "have", "benefited", "many", "applications", ",", "such", "as", "web", "search", "and", "question", "answer", "."], "ner": [[1, 2, "Other Scientific Term"], [10, 11, "Task"], [11, 11, "Task"], [13, 14, "Task"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "results", "are", "discussed", "in", "terms", "of", "their", "implications", "for", "FP", "saliency", "and", "rhetorical", "training", "."], "ner": [[10, 11, "Other Scientific Term"], [10, 10, "Other Scientific Term"], [11, 11, "Other Scientific Term"], [13, 14, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["For", "the", "closest", "related", "work", ",", "Learn&Fuzz", "(", "Godefroid", ",", "Peleg", ",", "and", "Singh", "2017", ")", ",", "which", "adopted", "a", "generative", "Sequence", "-", "to", "-", "Sequence", "model", "to", "generate", "new", "PDF", "objects", "for", "PDF", "parser", "fuzzing", ",", "researchers", "trained", "a", "model", "with", "two", "layers", "and", "in", "each", "of", "these", "layers", ",", "there", "are", "128", "hidden", "units", "."], "ner": [[20, 25, "Method"], [21, 25, "Method"], [33, 34, "Method"], [34, 34, "Method"], [54, 55, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["On", "the", "other", "hand", ",", "sparse", "and", "poorly", "-", "connected", "networks", "require", "less", "neighboring", "communication", "costs", "and", "storage", "demands", "but", "suffer", "from", "slower", "convergence", "rates", "and", "poor", "adaptation", "ability", "to", "changes", "for", "networks", "."], "ner": [[13, 15, "Metric"], [17, 18, "Metric"], [23, 24, "Metric"], [27, 28, "Metric"], [27, 27, "Task"]], "relations": [[3, 4, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["We", "apply", "the", "proposed", "method", "to", "facial", "landmark", "localization", "on", "the", "Bosphorus", "3D", "Face", "Database", ",", "using", "frontal", "depth", "images", "with", "no", "occlusion", "."], "ner": [[6, 8, "Task"], [7, 8, "Task"], [8, 8, "Task"], [11, 14, "Material"], [18, 19, "Other Scientific Term"], [22, 22, "Other Scientific Term"]], "relations": [[3, 0, "Used-for"], [0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Drawing", "inspiration", "from", "this", "work", ",", "our", "paper", "differs", "by", "exploiting", "a", "image", "hierarchy", "as", "a", "knowledge", "ontology", "to", "perform", "image", "annotation", "and", "classification", "tasks", "."], "ner": [[12, 13, "Other Scientific Term"], [16, 17, "Other Scientific Term"], [17, 17, "Other Scientific Term"], [20, 21, "Task"], [21, 21, "Task"], [23, 23, "Task"], [20, 20, 23, 23, "Task"]], "relations": [[3, 4, "Hyponym-of"], [6, 5, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 6, "Used-for"], [0, 3, "Used-for"], [1, 6, "Used-for"], [1, 3, "Used-for"]], "discontinuous": true}
{"tokens": ["We", "also", "proposed", "a", "novel", "dataset", "comprising", "400k", "images", ",", "laser", "point", "clouds", "and", "annotations", "for", "all", "objects", "which", "we", "make", "publicly", "available", "."], "ner": [[10, 12, "Other Scientific Term"], [11, 12, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "BiLSTM", "-", "GCN", "encoder", "part", "of", "our", "model", "resembles", "the", "BiLSTM", "-", "TreeLSTM", "model", "proposed", "by", "Miwa", "and", "Bansal", "(", "2016", ")", ",", "as", "they", "also", "stack", "a", "dependency", "tree", "on", "top", "of", "sequences", "to", "jointly", "model", "entities", "and", "relations", "."], "ner": [[1, 4, "Method"], [1, 3, "Method"], [4, 4, "Method"], [11, 13, "Method"], [29, 30, "Other Scientific Term"], [30, 30, "Other Scientific Term"], [38, 38, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [1, 2, "Used-for"], [1, 0, "Used-for"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "learn", "a", "lowrank", "BHIM", "by", "directly", "minimizing", "the", "rank", "of", "the", "model", ",", "in", "order", "to", "increase", "the", "generalization", "power", "."], "ner": [[3, 4, "Method"], [4, 4, "Method"], [9, 9, "Other Scientific Term"], [19, 19, "Metric"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "is", "only", "a", "first", "step", "toward", "using", "ensembles", "of", "low", "-", "dimensional", "DSMs", "for", "semantic", "relation", "estimation", "."], "ner": [[10, 13, "Method"], [13, 13, "Method"], [15, 17, "Task"], [17, 17, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "learned", "models", "can", "also", "be", "used", "discriminatively", "as", "semantic", "role", "labelers", ",", "and", "when", "evaluated", "relative", "to", "the", "PropBank", "annotation", ",", "the", "best", "learned", "model", "reduces", "28", "%", "of", "the", "error", "between", "an", "informed", "baseline", "and", "an", "oracle", "upper", "bound", "."], "ner": [[9, 11, "Method"], [9, 10, "Other Scientific Term"], [11, 11, "Method"], [19, 19, "Material"], [35, 35, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["On", "average", "across", "languages", "our", "parser", "achieves", "UAS", "scores", "of", "87.78", "%", "and", "89.25", "%", "for", "first", "and", "second", "order", "parsing", "respectively", ",", "compared", "to", "respective", "UAS", "of", "87.98", "%", "and", "90.26", "%", "achieved", "by", "the", "original", "TurboParser", "."], "ner": [[5, 5, "Method"], [7, 7, "Metric"], [18, 20, "Task"], [20, 20, "Task"], [26, 26, "Metric"], [37, 37, "Method"], [16, 16, 19, 20, "Task"]], "relations": [[2, 3, "Hyponym-of"], [6, 3, "Hyponym-of"], [1, 4, "Synonymy-of"], [1, 0, "Evaluate-for"], [1, 6, "Evaluate-for"], [1, 2, "Evaluate-for"], [1, 5, "Evaluate-for"], [4, 0, "Evaluate-for"], [4, 6, "Evaluate-for"], [4, 2, "Evaluate-for"], [4, 5, "Evaluate-for"], [0, 6, "Used-for"], [0, 2, "Used-for"], [5, 6, "Used-for"], [5, 2, "Used-for"], [5, 0, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["Feedback", "can", "be", "interactively", "explored", "and", "searched", "rapidly", "with", "ease", ",", "whilst", "numerous", "graphs", "provide", "additional", "information", "."], "ner": [[0, 0, "Method"], [13, 13, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "the", "right", "plot", ",", "we", "compare", "the", "relative", "errors", "of", "our", "algorithm", "(", "denoted", "as", "\"", "Alg2", "\"", ")", "with", "the", "relative", "errors", "of", "two", "classical", "algorithms", ",", "namely", ",", "the", "multiplicative", "update", "algorithm", "(", "denoted", "as", "\"", "Mult", "\"", ")", "and", "the", "alternating", "(", "nonnegative", ")", "least", "-", "squares", "algorithm", "(", "denoted", "as", "\"", "Als", "\"", ")", ";", "these", "two", "algorithms", "can", "be", "implemented", "using", "the", "nnmf", "function", "of", "Matlab", "."], "ner": [[17, 17, "Method"], [22, 23, "Other Scientific Term"], [32, 34, "Method"], [39, 39, "Method"], [48, 51, "Method"], [56, 56, "Method"], [71, 71, "Method"]], "relations": [[6, 4, "Used-for"], [6, 2, "Used-for"], [6, 5, "Used-for"], [6, 3, "Used-for"], [2, 3, "Synonymy-of"], [4, 5, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "have", "evaluated", "our", "system", "on", "six", "common", "metrics", "for", "coreference", "resolution", "including", "B", "3", ",", "BLANC", ",", "CEAFE", ",", "CEAFM", ",", "LEA", ",", "and", "MUC", "using", "the", "official", "evaluation", "script", "provided", "by", "the", "shared", "task", "organizers", "."], "ner": [[10, 11, "Task"], [11, 11, "Task"], [13, 14, "Metric"], [16, 16, "Metric"], [18, 18, "Metric"], [20, 20, "Metric"], [22, 22, "Metric"], [25, 25, "Metric"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Evaluate-for"], [3, 0, "Evaluate-for"], [4, 0, "Evaluate-for"], [5, 0, "Evaluate-for"], [6, 0, "Evaluate-for"], [7, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "this", "work", "we", "propose", "the", "method", "for", "a", "rather", "unexplored", "problem", "of", "computer", "vision", "discriminatively", "trained", "dense", "surface", "normal", "estimation", "from", "a", "single", "image", "."], "ner": [[13, 14, "Task"], [17, 20, "Task"], [18, 20, "Task"], [18, 19, "Other Scientific Term"], [19, 20, "Task"], [20, 20, "Task"]], "relations": [[1, 0, "Hyponym-of"], [1, 2, "Hyponym-of"], [2, 4, "Hyponym-of"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "work", "just", "provides", "a", "trial", "along", "this", "line", ",", "trying", "to", "exhibit", "linear", "operations", "in", "a", "semantic", "word", "space", ",", "thereby", "making", "word", "vectors", "behave", "more", "like", "being", "in", "a", "mathematical", "vector", "space", "."], "ner": [[13, 14, "Method"], [17, 19, "Other Scientific Term"], [18, 19, "Other Scientific Term"], [23, 24, "Other Scientific Term"], [24, 24, "Other Scientific Term"], [31, 33, "Other Scientific Term"], [32, 33, "Other Scientific Term"], [32, 32, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [4, 7, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "proposed", "spatial", "pyramid", "encoding", "to", "extract", "d", "-", "vectors", "for", "TI", "-", "SV", "."], "ner": [[6, 8, "Method"], [6, 7, "Other Scientific Term"], [8, 8, "Task"], [15, 17, "Task"]], "relations": [[0, 2, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "achieved", "this", "by", "using", "the", "SALAAM", "method", "[", "14", "]", "and", "each", "of", "the", "four", "source", "language", "recognizers", "."], "ner": [[6, 6, "Method"], [16, 18, "Method"], [16, 17, "Other Scientific Term"], [18, 18, "Method"]], "relations": [[1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Generation", "of", "3D", "data", "by", "deep", "neural", "network", "has", "been", "attracting", "increasing", "attention", "in", "the", "research", "community", "."], "ner": [[0, 0, "Task"], [2, 3, "Other Scientific Term"], [5, 7, "Method"], [6, 7, "Method"]], "relations": [[2, 3, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Daume", "III", "(", "2007", ")", "proposed", "a", "simple", "feature", "augmentation", "method", "to", "achieve", "domain", "adaptation", "."], "ner": [[8, 10, "Method"], [8, 9, "Task"], [9, 9, "Task"], [13, 14, "Task"], [14, 14, "Task"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 4, "Hyponym-of"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "propose", "learning", "a", "matching", "model", "for", "response", "selection", "under", "a", "general", "co", "-", "teaching", "framework", "with", "three", "specific", "teaching", "strategies", "."], "ner": [[4, 5, "Method"], [4, 4, "Task"], [7, 8, "Task"], [8, 8, "Task"], [12, 14, "Method"]], "relations": [[0, 1, "Used-for"], [2, 3, "Hyponym-of"], [0, 2, "Used-for"], [4, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["They", "were", "told", "that", "the", "automatic", "system", "was", "not", "perfect", ",", "and", "that", "some", "of", "the", "PHIs", "present", "in", "the", "documents", "might", "be", "original", "PHIs", ",", "that", "they", "had", "to", "try", "and", "identify", "."], "ner": [[16, 16, "Other Scientific Term"], [24, 24, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Thus", ",", "to", "do", "the", "boundary", "regression", "effectively", ",", "the", "object", "bounding", "box", "coordinates", "should", "be", "first", "normalized", "to", "some", "standard", "scale", ",", "but", "for", "actions", ",", "time", "itself", "is", "the", "standard", "scale", "."], "ner": [[5, 6, "Task"], [6, 6, "Task"], [11, 12, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Traditional", "optical", "flow", "priors", "are", "extended", "to", "this", "framework", "and", "result", "in", "spatially", "coherent", "segmentations", "."], "ner": [[1, 3, "Other Scientific Term"], [1, 2, "Other Scientific Term"], [3, 3, "Other Scientific Term"], [12, 14, "Method"], [13, 14, "Method"], [14, 14, "Task"]], "relations": [[3, 4, "Hyponym-of"], [0, 2, "Hyponym-of"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Supervision", "information", "can", "be", "incorporated", "into", "the", "group", "lasso", "regularizer", "on", "the", "transportation", "map", "."], "ner": [[0, 1, "Other Scientific Term"], [0, 0, "Other Scientific Term"], [7, 9, "Method"], [8, 9, "Method"], [8, 8, "Method"], [9, 9, "Method"]], "relations": [[2, 3, "Hyponym-of"], [3, 5, "Hyponym-of"], [4, 5, "Used-for"], [4, 3, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "method", "has", "the", "advantage", "that", "it", "leverages", "underlying", "structure", "arising", "in", "LP", "formulations", "of", "NLP", "problems", "."], "ner": [[12, 12, "Method"], [15, 15, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "examine", "the", "problem", "of", "joint", "active", "search", "of", "multiple", "objects", "under", "interaction", "."], "ner": [[5, 7, "Task"], [6, 7, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "introduce", "an", "unlexicalized", "transition", "-", "based", "parser", "for", "discontinuous", "constituency", "structures", ",", "based", "on", "a", "structure", "-", "label", "transition", "system", "and", "a", "bi", "-", "LSTM", "scoring", "system", "."], "ner": [[7, 11, "Method"], [8, 11, "Method"], [11, 11, "Method"], [13, 15, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [20, 23, "Method"], [27, 30, "Method"], [27, 29, "Method"], [30, 30, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [6, 8, "Used-for"], [7, 8, "Used-for"], [7, 6, "Used-for"], [5, 0, "Used-for"], [6, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "present", "a", "novel", "multi", "-", "task", "modeling", "approach", "to", "learning", "multilingual", "distributed", "representations", "of", "text", "."], "ner": [[4, 8, "Method"], [4, 7, "Task"], [7, 7, "Task"], [7, 8, "Method"], [11, 13, "Other Scientific Term"], [12, 13, "Other Scientific Term"]], "relations": [[0, 3, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "second", "dataset", "is", "publicly", "available", "MSCOCO", ",", "where", "we", "make", "quantitative", "evaluations", "for", "a", "multi", "-", "label", "learning", "problem", "with", "human", "-", "specified", "object", "labels", "."], "ner": [[6, 6, "Material"], [15, 18, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["They", "proposed", "a", "non", "-", "intrusive", "algorithm", "based", "on", "clipping", "statistics", "to", "predict", "speech", "quality", "."], "ner": [[3, 6, "Method"], [9, 10, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["By", "visualizing", "the", "learned", "context", "-", "aware", "filters", ",", "we", "further", "validate", "and", "rationalize", "the", "effectiveness", "of", "proposed", "framework", "."], "ner": [[4, 7, "Method"], [7, 7, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["With", "the", "growth", "of", "the", "online", "market", ",", "there", "is", "an", "urgent", "need", "for", "intelligent", "recommendation", "of", "products", "for", "customers", "."], "ner": [[14, 15, "Task"], [15, 15, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "show", "that", "the", "problem", "is", "essentially", "a", "minimum", "dominating", "set", "problem", "[", "29", "]", ",", "and", "can", "be", "solved", "by", "using", "an", "improved", "reverse", "heuristic", "algorithm", "[", "30", "]", "."], "ner": [[8, 10, "Task"], [9, 10, "Other Scientific Term"], [24, 26, "Method"], [25, 26, "Method"]], "relations": [[2, 3, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["One", "example", "of", "such", "a", "task", "is", "semantic", "role", "labeling", "(", "SRL", ")", ",", "which", "relies", "heavily", "on", "labels", "from", "trained", "linguistic", "experts", "."], "ner": [[7, 9, "Task"], [7, 8, "Other Scientific Term"], [8, 9, "Task"], [9, 9, "Task"], [11, 11, "Task"]], "relations": [[0, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 4, "Synonymy-of"], [4, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "suppose", "that", "many", "of", "the", "current", "works", "on", "unsupervised", "dependency", "parsers", "use", "gold", "POS", "tags", "only", "as", "a", "simplification", "of", "this", "task", ",", "and", "that", "the", "ultimate", "purpose", "of", "this", "effort", "is", "to", "develop", "a", "fully", "unsupervised", "induction", "of", "linguistic", "structure", "from", "raw", "texts", "that", "would", "be", "useful", "across", "many", "languages", ",", "domains", ",", "and", "applications", "."], "ner": [[9, 11, "Method"], [10, 11, "Method"], [11, 11, "Method"], [14, 15, "Other Scientific Term"], [14, 14, "Other Scientific Term"], [37, 38, "Method"], [40, 41, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "model", "consists", "of", "hierarchical", "wavelet", "transformations", "and", "translation", "-", "invariant", "operators", ",", "which", "explains", "deep", "learning", "from", "the", "viewpoint", "of", "signal", "processing", "."], "ner": [[4, 6, "Method"], [5, 6, "Method"], [8, 11, "Method"], [15, 16, "Method"], [21, 22, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["There", "are", "many", "variants", "which", "can", "be", "considered", ":", "one", "example", "is", "the", "incorporation", "of", "word", "order", "and", "context", "through", "an", "n", "-", "gram", "model", "based", "on", "conditional", "probabilities", "."], "ner": [[21, 23, "Method"], [27, 28, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["From", "a", "behavioral", "modeling", "perspective", ",", "our", "results", "show", "that", "the", "deviations", "of", "human", "behavior", "from", "rational", "play", "have", "common", "characteristics", "that", "can", "be", "learned", "and", "transferred", "between", "different", "games", "via", "fixed", "functions", "and", "without", "explicit", "modeling", "of", "player", "preferences", "."], "ner": [[2, 3, "Task"], [3, 3, "Task"], [16, 17, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "first", "lexical", "identification", "task", "was", "designed", "to", "train", "listeners", "to", "correctly", "identify", "the", "vowels", "of", "NZE", "."], "ner": [[2, 3, "Task"], [3, 3, "Task"], [14, 14, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["These", "document", "-", "level", "annotations", "can", "provide", "additional", "supervision", "for", "guiding", "topic", "model", "learning", "."], "ner": [[8, 8, "Other Scientific Term"], [11, 12, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["A", "data", "-", "driven", "model", ",", "however", ",", "does", "not", "demand", "any", "of", "human", "-", "knowledge", ",", "knowledge", "bases", ",", "semantic", "thesaurus", ",", "syntactic", "parser", "or", "the", "like", "."], "ner": [[1, 4, "Method"], [17, 18, "Other Scientific Term"], [20, 21, "Other Scientific Term"], [21, 21, "Other Scientific Term"], [23, 24, "Method"], [24, 24, "Method"]], "relations": [[2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["A", "preliminary", "evaluation", "based", "on", "a", "C++", "proof", "-", "of", "-", "concept", "implementation", "has", "illustrated", "several", "potential", "benefits", "of", "the", "proposed", "architecture", "for", "VNET", "applications", "."], "ner": [[6, 6, "Method"], [7, 11, "Task"], [23, 23, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "have", "proposed", "a", "novel", "sensor", "-", "based", "image", "augmentation", "pipeline", "for", "augmenting", "synthetic", "training", "data", "input", "to", "DNNs", "for", "the", "task", "of", "object", "detection", "in", "real", "urban", "driving", "scenes", "."], "ner": [[5, 9, "Method"], [8, 9, "Method"], [9, 9, "Task"], [18, 18, "Method"], [23, 24, "Task"], [24, 24, "Task"]], "relations": [[0, 1, "Hyponym-of"], [4, 5, "Hyponym-of"], [0, 3, "Used-for"], [0, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "statistical", "machine", "translation", ",", "decoding", "without", "any", "reordering", "constraint", "is", "an", "NP", "-", "hard", "problem", "."], "ner": [[1, 3, "Method"], [2, 3, "Task"], [5, 5, "Task"], [8, 9, "Other Scientific Term"], [12, 15, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "goal", "of", "domain", "adaptation", "is", "to", "eliminate", "or", "reduce", "the", "mismatch", "between", "the", "training", "data", "and", "the", "test", "data", "."], "ner": [[3, 4, "Task"], [4, 4, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Previous", "approaches", "that", "learn", "a", "lexicon", "during", "training", "have", "inadequate", "coverage", "at", "test", "time", ",", "and", "pure", "search", "strategies", "can", "not", "handle", "the", "exponential", "search", "space", "."], "ner": [[10, 10, "Metric"], [23, 25, "Other Scientific Term"], [24, 25, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "proposed", "gender", "detection", "system", "has", "been", "packaged", "as", "an", "open", "-", "source", "framework", "."], "ner": [[2, 4, "Method"], [2, 3, "Task"], [3, 3, "Task"], [10, 13, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "compare", "three", "sequentializations", ":", "a", "direct", "linearization", "of", "the", "logical", "form", ",", "a", "linearization", "of", "the", "associated", "canonical", "realization", ",", "and", "a", "sequence", "consisting", "of", "derivation", "steps", "relative", "to", "the", "underlying", "grammar", "."], "ner": [[3, 3, "Method"], [6, 7, "Method"], [7, 7, "Method"], [10, 11, "Other Scientific Term"], [14, 14, "Method"], [18, 19, "Other Scientific Term"], [31, 32, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [1, 4, "Hyponym-of"], [2, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "fact", ",", "we", "evaluate", "our", "method", "in", "the", "task", "of", "automatic", "verb", "classification", ",", "which", "can", "be", "considered", "as", "lexicon", "expansion", "."], "ner": [[11, 13, "Task"], [12, 13, "Task"], [12, 12, "Other Scientific Term"], [13, 13, "Task"], [20, 21, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "the", "context", "of", "patent", "search", ",", "for", "example", ",", "Graf", "and", "Azzopardi", "(", "2008", ")", "utilised", "citations", "in", "patent", "office", "expert", "reports", "as", "relevance", "judgements", ",", "while", "Fujii", "et", "al", ".", "(", "2006", ")", "automatically", "extracted", "patent", "office", "expert", "citations", "used", "to", "reject", "patent", "applications", "."], "ner": [[4, 5, "Task"], [5, 5, "Task"], [17, 17, "Other Scientific Term"], [19, 22, "Other Scientific Term"], [24, 25, "Other Scientific Term"], [37, 40, "Other Scientific Term"], [40, 40, "Other Scientific Term"]], "relations": [[5, 6, "Hyponym-of"], [2, 6, "Synonymy-of"], [5, 2, "Hyponym-of"], [0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "method", "showed", "to", "be", "effective", "for", "building", "children", "'s", "speech", "models", "."], "ner": [[8, 11, "Method"], [10, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "also", "compare", "the", "traditional", "random", "evaluation", "protocol", "to", "our", "proposed", "chronological", "sampling", "method", ",", "which", "can", "be", "used", "for", "determining", "the", "optimal", "time", "-", "span", "of", "the", "training", "history", "for", "optimizing", "the", "performance", "of", "algorithms", "."], "ner": [[5, 7, "Method"], [5, 6, "Method"], [11, 12, "Method"], [12, 12, "Method"]], "relations": [[2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Additionally", ",", "we", "use", "an", "unsupervised", "autoencoder", "to", "show", "that", "indeed", "there", "may", "be", "differential", "features", "in", "human", "microcirculation", "."], "ner": [[5, 6, "Method"], [6, 6, "Method"], [17, 18, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Aspect", "extraction", "and", "sentiment", "analysis", "of", "reviews", "are", "both", "important", "tasks", "in", "opinion", "mining", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"], [3, 4, "Task"], [4, 4, "Task"], [12, 13, "Task"], [13, 13, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [0, 4, "Hyponym-of"], [2, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "LTUR", ",", "we", "learn", "the", "long", "-", "term", "representations", "of", "users", "from", "the", "embeddings", "of", "their", "IDs", "."], "ner": [[1, 1, "Method"], [6, 9, "Other Scientific Term"], [14, 14, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "mainly", "focus", "on", "an", "entropy", "model", "with", "complementary", "combination", "of", "autoregressive", "and", "hierarchical", "priors", "."], "ner": [[5, 6, "Method"], [5, 5, "Other Scientific Term"], [13, 14, "Other Scientific Term"], [14, 14, "Other Scientific Term"], [11, 11, 14, 14, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [4, 3, "Hyponym-of"], [4, 0, "Used-for"], [2, 0, "Used-for"]], "discontinuous": true}
{"tokens": ["This", "year", ",", "we", "developed", "a", "new", "ranking", "method", "that", "allows", "us", "to", "achieve", "the", "same", "with", "fewer", "judgments", "."], "ner": [[7, 8, "Method"], [7, 7, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "idea", "is", "to", "make", "these", "metrics", "flexible", "such", "that", ",", "if", "needed", ",", "the", "weight", "assigned", "to", "answerability", "and", "n", "-", "gram", "similarity", "can", "be", "adjusted", "depending", "on", "the", "task", "(", "document", "QA", ",", "Knowledge", "-", "Base", "QA", ",", "Visual", "QA", ")", "."], "ner": [[18, 18, "Other Scientific Term"], [20, 23, "Other Scientific Term"], [20, 22, "Other Scientific Term"], [32, 33, "Task"], [33, 33, "Task"], [35, 38, "Task"], [35, 37, "Other Scientific Term"], [38, 38, "Task"], [40, 41, "Task"], [41, 41, "Task"]], "relations": [[3, 4, "Hyponym-of"], [3, 7, "Hyponym-of"], [3, 9, "Hyponym-of"], [5, 4, "Hyponym-of"], [5, 7, "Hyponym-of"], [5, 9, "Hyponym-of"], [8, 4, "Hyponym-of"], [8, 7, "Hyponym-of"], [8, 9, "Hyponym-of"], [4, 7, "Synonymy-of"], [4, 9, "Synonymy-of"], [7, 9, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Outlier", "rejection", "based", "methods", "are", "developed", "to", "suppress", "global", "illumination", "effects", "by", "considering", "them", "as", "outliers", "."], "ner": [[0, 1, "Method"], [0, 0, "Other Scientific Term"], [8, 10, "Other Scientific Term"], [9, 10, "Other Scientific Term"], [15, 15, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [1, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Finally", ",", "we", "suggest", "that", "the", "environment", "of", "a", "honeybee", "hive", "offers", "an", "excellent", "model", "system", "for", "the", "development", "of", "tracking", "approaches", "."], "ner": [[20, 21, "Method"], [20, 20, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Future", "work", "includes", "studying", "different", "kinds", "of", "alignment", "heuristics", "."], "ner": [[7, 8, "Method"], [8, 8, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "work", ",", "we", "consider", "open", "domain", "dialogue", "generation", "with", "dialog", "acts", "."], "ner": [[6, 9, "Task"], [8, 9, "Task"], [9, 9, "Task"], [11, 12, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Specifically", ",", "WSNet", "is", "parameterized", "by", "layerwise", "condensed", "filters", "from", "which", "each", "filter", "participating", "in", "actual", "convolutions", "can", "be", "directly", "sampled", ",", "in", "both", "spatial", "and", "channel", "dimensions", "."], "ner": [[2, 2, "Method"], [6, 8, "Method"], [8, 8, "Method"], [12, 12, "Method"], [16, 16, "Method"], [26, 27, "Other Scientific Term"], [24, 24, 27, 27, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"], [3, 4, "Used-for"], [1, 2, "Hyponym-of"], [1, 3, "Hyponym-of"], [2, 3, "Synonymy-of"], [2, 4, "Used-for"]], "discontinuous": true}
{"tokens": ["Although", "direct", "orthographic", "mapping", "has", "implicitly", "or", "partially", "modelled", "the", "tone", "information", "via", "individual", "characters", ",", "the", "model", "nevertheless", "heavily", "depends", "on", "the", "availability", "of", "training", "data", "and", "could", "be", "skewed", "by", "the", "distribution", "of", "a", "certain", "homophone", "and", "thus", "precludes", "an", "acceptable", "transliteration", "alternative", "."], "ner": [[1, 3, "Method"], [2, 3, "Method"], [3, 3, "Method"], [10, 11, "Other Scientific Term"], [37, 37, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["One", "difference", "between", "our", "framework", "and", "theirs", "is", "that", "we", "additionally", "exploit", "spatial", "attention", "."], "ner": [[12, 13, "Method"], [13, 13, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Word", "-", "level", "language", "ID", "has", "also", "been", "studied", "by", "Mandal", "et", "al", ".", "(", "2015", ")", "in", "the", "context", "of", "question", "answering", "and", "by", "King", "and", "Abney", "(", "2013", ")", "."], "ner": [[0, 4, "Other Scientific Term"], [3, 4, "Other Scientific Term"], [21, 22, "Task"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "formulate", "the", "learning", "task", "as", "a", "multi", "-", "task", "learning", "problem", "."], "ner": [[7, 11, "Task"], [7, 10, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Most", "of", "the", "previous", "research", "extensively", "exploited", "the", "linguistic", "features", "of", "the", "source", "documents", "in", "a", "supervised", "or", "semi", "-", "supervised", "way", "."], "ner": [[8, 9, "Other Scientific Term"], [18, 21, "Method"], [16, 16, 21, 21, "Method"]], "relations": [[0, 2, "Used-for"], [0, 1, "Used-for"]], "discontinuous": true}
{"tokens": ["We", "also", "use", "recursive", "feature", "elimination", "to", "reduce", "the", "feature", "space", "to", "2000", "most", "important", "features", "."], "ner": [[3, 5, "Method"], [4, 5, "Method"], [9, 10, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "set", "of", "input", "features", "for", "each", "token", "is", "basically", "formed", "by", "three", "distinct", "components", ":", "the", "word", "embedding", "(", "WE", ")", "and", "two", "complementary", "information", ":", "syllable", "(", "SE", ")", "and", "morphological", "embeddings", "(", "ME", ")", "."], "ner": [[17, 18, "Other Scientific Term"], [18, 18, "Other Scientific Term"], [20, 20, "Other Scientific Term"], [27, 27, "Other Scientific Term"], [29, 29, "Other Scientific Term"], [32, 33, "Other Scientific Term"], [33, 33, "Other Scientific Term"], [35, 35, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [5, 6, "Hyponym-of"], [0, 6, "Hyponym-of"], [5, 1, "Hyponym-of"], [0, 2, "Synonymy-of"], [5, 7, "Synonymy-of"], [2, 1, "Hyponym-of"], [2, 6, "Hyponym-of"], [7, 6, "Hyponym-of"], [7, 1, "Hyponym-of"], [1, 6, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "experimental", "results", "obtained", "in", "this", "research", "are", "thus", "very", "encouraging", "due", "to", "the", "difficulty", "of", "face", "matching", "under", "non", "-", "rigid", "deformations", "."], "ner": [[16, 17, "Task"], [17, 17, "Task"], [19, 22, "Other Scientific Term"], [22, 22, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "if", "the", "adversary", "acts", "on", "information", "in", "the", "honey", "traffic", ",", "it", "will", "unknowingly", "attack", "an", "intrusion", "detection", "node", "and", "be", "discovered", "."], "ner": [[10, 11, "Other Scientific Term"], [18, 20, "Other Scientific Term"], [18, 19, "Task"], [19, 19, "Task"], [20, 20, "Other Scientific Term"]], "relations": [[1, 4, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["It", "uses", "a", "GMM", "for", "soft", "classification", ",", "a", "Mel", "-", "cepstral", "vocoder", "for", "acoustic", "analysis", "and", "an", "improved", "dynamic", "time", "warping", "procedure", "for", "source", "-", "target", "alignment", "."], "ner": [[3, 3, "Method"], [5, 6, "Task"], [6, 6, "Task"], [9, 12, "Method"], [12, 12, "Method"], [14, 15, "Task"], [15, 15, "Task"], [19, 21, "Method"], [24, 27, "Task"], [27, 27, "Task"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [8, 9, "Hyponym-of"], [0, 1, "Used-for"], [3, 5, "Used-for"], [7, 8, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "built", "a", "portable", "photometric", "stereo", "sensor", "and", "introduced", "the", "first", "large", "scale", "dataset", "of", "garment", "surfaces", ",", "belonging", "to", "9", "different", "fabric", "classes", "."], "ner": [[4, 6, "Method"], [4, 5, "Method"], [6, 6, "Method"]], "relations": [[0, 2, "Hyponym-of"], [1, 0, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "vectors", "are", "then", "used", "to", "provide", "semantic", "scoring", "of", "phrase", "pairs", "."], "ner": [[7, 8, "Task"], [8, 8, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "proposed", "to", "address", "model", "pruning", "by", "using", "Convolutional", "Neural", "Mixture", "Models", "(", "CNMMs", ")", ",", "a", "novel", "probabilistic", "framework", "that", "embeds", "a", "mixture", "of", "an", "exponential", "number", "of", "CNNs", "."], "ner": [[4, 5, "Task"], [8, 11, "Method"], [9, 11, "Method"], [10, 11, "Method"], [13, 13, "Method"], [29, 29, "Method"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [1, 4, "Synonymy-of"], [4, 2, "Hyponym-of"], [1, 0, "Used-for"], [4, 0, "Used-for"], [5, 1, "Used-for"], [5, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["As", "a", "black", "box", "model", "system", ",", "although", "the", "AI", "method", "usually", "do", "not", "consider", "internal", "operation", "mechanisms", ",", "they", "can", "also", "build", "a", "relationship", "between", "the", "input", "features", "and", "the", "output", "response", "to", "predict", "the", "water", "quality", "."], "ner": [[2, 3, "Other Scientific Term"], [2, 4, "Method"], [9, 9, "Task"], [9, 10, "Method"]], "relations": [[3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Their", "method", "does", "not", "produce", "an", "accurate", "environment", "matte", ",", "but", "instead", "a", "visually", "pleasing", "refractive", "effect", "."], "ner": [[7, 8, "Other Scientific Term"], [8, 8, "Other Scientific Term"], [15, 16, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Each", "pipeline", "typically", "starts", "with", "image", "matching", "followed", "by", "pose", "estimation", "and", "dense", "stereo", ",", "and", "ends", "up", "with", "a", "fusion", "of", "partial", "depth", "maps", "into", "one", "consistent", "3D", "model", "."], "ner": [[5, 6, "Task"], [6, 6, "Task"], [9, 10, "Task"], [10, 10, "Task"], [12, 13, "Task"], [23, 24, "Other Scientific Term"], [28, 29, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "lack", "of", "advanced", "tongue", "root", "supports", "such", "an", "analysis", "."], "ner": [[3, 5, "Other Scientific Term"], [4, 5, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "GRU", "module", "added", "a", "memory", "element", "within", "the", "architecture", "that", "remembers", "and", "predicts", "the", "flow", "of", "micro", "-", "expression", "intensity", "across", "the", "temporal", "frames", "of", "the", "micro", "-", "expression", "clip", "."], "ner": [[1, 1, "Method"], [5, 6, "Other Scientific Term"]], "relations": [[1, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["Hierarchical", "priors", "that", "favor", "sparsity", "have", "been", "a", "central", "development", "in", "modern", "statistics", "and", "machine", "learning", ",", "and", "find", "widespread", "use", "for", "variable", "selection", "in", "biology", ",", "engineering", ",", "and", "economics", "."], "ner": [[0, 1, "Other Scientific Term"], [1, 1, "Other Scientific Term"], [12, 12, "Task"], [14, 15, "Task"], [22, 23, "Task"], [23, 23, "Task"]], "relations": [[0, 1, "Hyponym-of"], [4, 5, "Hyponym-of"], [0, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["Socher", "et", "al", ".", "(", "2013", ")", ",", "and", "Jenatton", "et", "al", ".", "(", "2012", ")", "try", "to", "discover", "unseen", "facts", "from", "a", "knowledge", "base", ",", "which", "can", "be", "seen", "as", "a", "form", "of", "inference", "based", "on", "a", "restricted", "predicate", "logic", "."], "ner": [[23, 24, "Other Scientific Term"], [34, 34, "Task"], [38, 40, "Method"], [39, 40, "Method"]], "relations": [[2, 3, "Hyponym-of"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "investigate", "the", "learned", "representation", "by", "designing", "two", "simple", "models", "with", "our", "building", "blocks", ",", "achieving", "comparable", "performance", "to", "many", "methods", "which", "use", "Backpropagation", ",", "while", "we", "reach", "comparable", "performance", "on", "Cifar10", "and", "give", "baseline", "performances", "on", "Cifar100", ",", "Tiny", "ImageNet", "and", "a", "small", "subset", "of", "ImageNet", "for", "Backpropagation", "-", "free", "methods", "."], "ner": [[23, 23, "Method"], [31, 31, "Material"], [34, 34, "Other Scientific Term"], [37, 37, "Material"], [39, 40, "Material"], [46, 46, "Material"], [48, 51, "Method"]], "relations": [[6, 3, "Used-for"], [6, 4, "Used-for"], [6, 5, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "dataset", ",", "we", "test", "the", "RI", "-", "LBCNN-8", "models", "that", "uses", "8", "orientation", "LBoM", "and", "an", "ORAlign", "layer", "to", "encode", "the", "orientation", "information", "."], "ner": [[7, 9, "Method"], [14, 15, "Method"], [15, 15, "Method"], [18, 18, "Method"], [18, 19, "Other Scientific Term"], [23, 24, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [1, 0, "Used-for"], [3, 0, "Used-for"], [4, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["By", "estimating", "bivariate", "\"", "same", "\"", "and", "\"", "different", "\"", "distributions", "for", "neighboring", "patches", ",", "we", "model", "the", "dependency", "relationships", ",", "allowing", "us", "to", "compute", "a", "sequence", "of", "patches", "with", "high", "joint", "information", "content", "."], "ner": [[13, 13, "Other Scientific Term"], [18, 19, "Other Scientific Term"], [28, 28, "Other Scientific Term"]], "relations": [[0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["TPN", "utilizes", "an", "additional", "convolutional", "block", "in", "the", "graph", "construction", "network", ",", "and", "Relation", "Networks", "use", "additional", "convolutional", "blocks", "in", "its", "relation", "module", "."], "ner": [[0, 0, "Method"], [4, 5, "Other Scientific Term"], [8, 10, "Method"], [8, 8, "Other Scientific Term"], [13, 14, "Method"], [17, 18, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"], [1, 4, "Used-for"], [5, 0, "Used-for"], [5, 4, "Used-for"], [1, 5, "Synonymy-of"], [0, 2, "Used-for"], [1, 2, "Used-for"], [5, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "presented", "a", "new", "mathematical", "framework", "to", "evaluate", "the", "performance", "of", "source", "localization", "for", "acoustic", "arrays", "."], "ner": [[4, 5, "Method"], [11, 12, "Task"], [12, 12, "Task"], [14, 15, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Greater", "care", "in", "preliminary", "assessment", "of", "the", "audio", "content", "can", "significantly", "increase", "the", "effectiveness", "and", "reliability", "of", "the", "final", "speech", "algorithm", "solution", "."], "ner": [[13, 13, "Metric"], [15, 15, "Metric"], [19, 20, "Method"]], "relations": [[0, 2, "Evaluate-for"], [1, 2, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "have", "presented", "a", "fast", "method", "for", "the", "reconstruction", "of", "NMR", "relaxation", "time", "distributions", "."], "ner": [[12, 12, "Task"], [14, 17, "Other Scientific Term"], [14, 14, "Other Scientific Term"], [15, 17, "Other Scientific Term"], [15, 16, "Other Scientific Term"]], "relations": [[1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Butin", "et", "al", ".", "[", "Butin", "et", "al", ".", ",", "2013", "]", "address", "the", "issues", "of", "log", "design", "for", "accountability", ",", "such", "as", "how", "meaningful", "a", "posteriori", "compliance", "analysis", "can", "be", "performed", "on", "the", "logs", "."], "ner": [[16, 17, "Task"], [26, 28, "Method"], [27, 28, "Task"], [28, 28, "Task"]], "relations": [[1, 2, "Used-for"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Overall", ",", "we", "have", "demonstrated", "that", "a", "MIDI", "-", "to", "-", "audio", "synthesizer", "can", "be", "learned", "directly", "from", "audio", ",", "and", "that", "this", "learning", "allows", "for", "flexible", "timbre", "control", "."], "ner": [[7, 12, "Method"], [12, 12, "Method"], [27, 27, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "conducted", "our", "experiments", "using", "Faster", "R", "-", "CNN", "by", "comparing", "the", "detection", "results", "on", "the", "unannotated", "dataset", "performed", "by", "the", "detector", "trained", "using", "our", "approach", "and", "detectors", "trained", "with", "other", "manually", "labeled", "datasets", "."], "ner": [[5, 8, "Method"], [6, 8, "Method"], [12, 12, "Task"], [16, 17, "Other Scientific Term"], [21, 21, "Method"], [27, 27, "Method"], [31, 33, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"], [4, 5, "Synonymy-of"], [4, 2, "Used-for"], [5, 2, "Used-for"], [6, 5, "Used-for"], [6, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["PNs", "have", "also", "been", "used", "to", "model", "the", "behaviour", "of", "multi", "-", "robot", "systems", "."], "ner": [[0, 0, "Method"], [10, 13, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "inference", "of", "low", "-", "dimensional", "latent", "structure", "in", "matrix", "and", "tensor", "data", "constitutes", "a", "problem", "of", "increasing", "interest", "."], "ner": [[1, 1, "Task"], [3, 7, "Other Scientific Term"], [6, 7, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "second", "application", "is", "for", "supervised", "classification", "tasks", "."], "ner": [[5, 6, "Task"], [6, 6, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "statistical", "functions", "improve", "significantly", "their", "results", "when", "they", "are", "used", "in", "an", "ensemble", "."], "ner": [[1, 2, "Other Scientific Term"], [13, 13, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["It", "can", "only", "be", "used", "reliably", "on", "small", "portions", "of", "a", "trajectory", "and", "ca", "n't", "be", "the", "only", "source", "of", "measurement", "for", "absolute", "localization", "."], "ner": [[22, 23, "Task"], [23, 23, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "UIMA", ",", "The", "original", "document", "and", "its", "analysis", "are", "represented", "in", "a", "structure", "called", "the", "Common", "Analysis", "Structure", ",", "or", "CAS", "."], "ner": [[1, 1, "Method"], [16, 18, "Other Scientific Term"], [21, 21, "Other Scientific Term"]], "relations": [[1, 2, "Synonymy-of"], [1, 0, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "have", "presented", "a", "novel", ",", "linguistically", "-", "informed", "annotation", "scheme", "for", "tackling", "the", "elided", "content", "of", "sluices", "and", "have", "shown", "that", "the", "system", "can", "produce", "annotations", "with", "a", "high", "degree", "of", "reliability", "."], "ner": [[10, 14, "Method"], [36, 36, "Metric"]], "relations": [[1, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Compared", "with", "existing", "computational", "scanpath", "estimation", "approaches", "which", "model", "IOR", "in", "a", "linear", "manner", ",", "our", "IOR", "-", "LSTM", ",", "simulating", "the", "VWM", ",", "learns", "IOR", "dynamics", "based", "on", "visual", "features", "extracted", "by", "CNNs", "."], "ner": [[3, 6, "Method"], [4, 6, "Method"], [4, 5, "Task"], [5, 5, "Task"], [5, 6, "Method"], [9, 9, "Other Scientific Term"], [12, 13, "Other Scientific Term"], [16, 18, "Method"], [22, 22, "Other Scientific Term"], [25, 26, "Other Scientific Term"], [25, 25, "Other Scientific Term"], [33, 33, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 4, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 2, "Used-for"], [1, 2, "Used-for"], [4, 3, "Used-for"], [5, 10, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "other", "three", "groups", "start", "with", "positive", "and", "negative", "seed", "sets", "and", "expand", "them", "by", "adding", "synonyms", "and", "antonyms", ",", "and", "traversing", "horizontal", "links", "in", "WordNet", "."], "ner": [[16, 16, "Other Scientific Term"], [18, 18, "Other Scientific Term"], [22, 23, "Other Scientific Term"], [25, 25, "Material"]], "relations": [], "discontinuous": false}
{"tokens": ["Moreover", ",", "reference", "resolution", "is", "only", "an", "aspect", "of", "what", "we", "do", ":", "Besides", "being", "able", "to", "associate", "a", "word", "with", "a", "visual", "extension", ",", "our", "model", "is", "simultaneously", "learning", "word", "representations", "that", "allow", "us", "to", "deal", "with", "a", "variety", "of", "other", "tasks", "-", "for", "example", ",", "as", "mentioned", "above", ",", "guessing", "the", "appearance", "of", "the", "object", "denoted", "by", "a", "new", "word", "from", "a", "purely", "verbal", "description", ",", "grouping", "concepts", "into", "categories", "by", "their", "similarity", ",", "or", "having", "both", "abstract", "and", "concrete", "words", "represented", "in", "the", "same", "space", "."], "ner": [[2, 3, "Task"], [3, 3, "Task"], [30, 31, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "most", "of", "the", "popular", "collections", "of", "word", "embeddings", "assign", "only", "one", "vector", "to", "each", "word", ",", "thus", "shifting", "the", "burden", "of", "word", "disambiguation", "to", "deeper", ",", "task", "-", "specific", "layers", ",", "which", "commonly", "rely", "on", "data", "of", "much", "smaller", "scales", "."], "ner": [[8, 9, "Method"], [9, 9, "Method"], [23, 24, "Task"], [24, 24, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "developed", "models", "appropriately", "model", "the", "dialogue", "history", "and", "are", "informed", "of", "the", "past", "emotional", "states", "through", "emotional", "embeddings", "."], "ner": [[6, 7, "Other Scientific Term"], [6, 6, "Task"], [14, 15, "Other Scientific Term"], [17, 18, "Method"], [18, 18, "Method"]], "relations": [[3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["For", "LOP", "-", "CRF", "and", "HySOL", ",", "we", "also", "used", "four", "base", "discriminative", "models", "trained", "by", "CRFs", "with", "different", "feature", "sets", "."], "ner": [[1, 3, "Method"], [5, 5, "Method"], [12, 13, "Method"], [16, 16, "Method"]], "relations": [[3, 2, "Used-for"], [2, 1, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "is", "different", "from", "our", "work", "where", "the", "bidirectional", "LSTM", "approximates", "the", "posteriors", "for", "all", "frames", "of", "the", "window", "."], "ner": [[8, 9, "Method"], [9, 9, "Method"], [12, 12, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Generative", "model", "based", "approaches", "typically", "built", "on", "topic", "models", "."], "ner": [[0, 1, "Method"], [7, 8, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "use", "the", "general", "global", "attention", "mechanism", "suggested", "by", "Luong", ",", "Pham", ",", "and", "Manning", "(", "2015", ")", "."], "ner": [[4, 6, "Method"], [4, 5, "Method"], [5, 5, "Method"], [5, 6, "Method"]], "relations": [[0, 1, "Synonymy-of"], [2, 3, "Synonymy-of"], [1, 2, "Hyponym-of"], [1, 3, "Hyponym-of"], [0, 2, "Hyponym-of"], [0, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "present", "our", "method", "to", "detect", "the", "ambiguous", "annotation", "cases", "within", "a", "Diacritization", "annotation", "project", "."], "ner": [[11, 13, "Other Scientific Term"], [16, 17, "Task"], [17, 17, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "scenario", "is", "similar", "to", "ours", "when", "ranking", "tweets", "by", "retweet", "likelihood", "."], "ner": [[7, 7, "Task"], [10, 11, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["GRNet", "implicitly", "achieves", "alignment", "and", "more", "precise", "matching", "of", "salient", "clothing", "components", "through", "information", "propagation", "among", "nodes", "of", "similarities", "."], "ner": [[0, 0, "Method"], [3, 3, "Task"], [7, 7, "Task"], [13, 14, "Method"], [16, 16, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [0, 2, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "introduce", "a", "stochastic", ",", "inverse", "-", "ranking", "utility", "model", "compatible", "with", "the", "Gaussian", "Process", "preference", "learning", "framework", "and", "integrate", "it", "into", "a", "(", "belief", ")", "Markov", "Decision", "Process", "paradigm", "which", "formalizes", "automated", "negotiation", "processes", "with", "incomplete", "information", "."], "ner": [[5, 9, "Method"], [13, 16, "Method"], [13, 14, "Method"], [15, 16, "Method"], [26, 29, "Other Scientific Term"], [26, 28, "Method"], [32, 33, "Other Scientific Term"]], "relations": [[1, 3, "Hyponym-of"], [2, 3, "Used-for"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "then", "propose", "to", "exploit", "the", "graph", "for", "the", "purpose", "of", "DA", "and", "we", "design", "novel", "domain", "-", "alignment", "layers", "."], "ner": [[6, 6, "Other Scientific Term"], [11, 11, "Task"], [16, 19, "Method"]], "relations": [[2, 1, "Used-for"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", "we", "use", "TTR", "to", "put", "forward", "an", "account", "of", "the", "semantics", "of", "vague", "scalar", "predicates", "like", "'", "tall", "'", "that", "makes", "precise", "how", "perceptual", "information", "can", "be", "integrated", "into", "their", "meaning", "representation", ";", "how", "an", "agent", "evaluates", "whether", "an", "entity", "counts", "as", "tall", ";", "and", "how", "the", "proposed", "semantics", "for", "these", "expressions", "can", "be", "learned", "and", "dynamically", "updated", "through", "language", "use", "."], "ner": [[5, 5, "Method"], [13, 13, "Other Scientific Term"], [15, 17, "Other Scientific Term"], [33, 34, "Other Scientific Term"], [38, 38, "Other Scientific Term"], [51, 51, "Other Scientific Term"]], "relations": [[1, 5, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "Section", "II", ",", "we", "review", "some", "popular", "gradient", "methods", "that", "have", "been", "successful", "for", "deep", "networks", "."], "ner": [[8, 9, "Method"], [8, 8, "Other Scientific Term"], [15, 16, "Method"]], "relations": [[0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Hence", ",", "the", "RN", "-", "HPOMDP", "is", "utilized", "as", "a", "unified", "framework", "for", "the", "autonomous", "robot", "navigation", "problem", ",", "that", "integrates", "the", "modules", "for", "localization", ",", "planning", "and", "local", "obstacle", "avoidance", "."], "ner": [[3, 5, "Method"], [14, 16, "Task"], [15, 16, "Task"], [24, 24, "Task"], [26, 26, "Task"], [28, 30, "Task"]], "relations": [[0, 1, "Used-for"], [0, 3, "Used-for"], [0, 4, "Used-for"], [0, 5, "Used-for"], [1, 2, "Hyponym-of"], [3, 1, "Part-for"], [4, 1, "Part-for"], [5, 1, "Part-for"]], "discontinuous": false}
{"tokens": ["Since", "a", "huge", "feature", "space", "is", "generated", ",", "tree", "pruning", "is", "employed", "to", "discard", "the", "unnecessary", "dimensions", "and", "make", "the", "problem", "tractable", "."], "ner": [[3, 4, "Other Scientific Term"], [8, 9, "Method"], [8, 8, "Other Scientific Term"], [9, 9, "Method"]], "relations": [[1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "test", "the", "method", "on", "20", "frequent", "speakers", ",", "on", "both", "reference", "word", "transcripts", "and", "the", "output", "of", "automatic", "speech", "recognition", "."], "ner": [[18, 20, "Task"], [19, 20, "Task"], [20, 20, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "core", "idea", "of", "this", "architecture", "is", "to", "learn", "an", "ordinary", "differential", "equation", "which", "dynamic", "is", "parameterized", "by", "a", "neural", "network", "."], "ner": [[10, 12, "Other Scientific Term"], [11, 12, "Other Scientific Term"], [19, 20, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Relation", "extraction", "has", "been", "widely", "used", "for", "finding", "unknown", "relational", "facts", "from", "the", "plain", "text", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Currently", ",", "ROUGE", "(", "Lin", ",", "2004", ")", "is", "the", "accepted", "standard", "for", "automatic", "evaluation", "of", "content", "selection", "because", "of", "its", "simplicity", "and", "its", "good", "correlation", "with", "human", "judgments", "."], "ner": [[2, 2, "Metric"], [13, 14, "Task"], [14, 14, "Task"], [16, 17, "Task"], [17, 17, "Task"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [0, 3, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Sequence", "modeling", "problem", "has", "been", "the", "core", "issue", "for", "a", "great", "variety", "of", "sequence", "classification", "tasks", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"], [13, 14, "Task"], [14, 14, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 2, "Part-for"]], "discontinuous": false}
{"tokens": ["To", "improve", "the", "vanilla", "LSTM", "model", ",", "Stab", "et", "al", ".", "(", "2018a", ")", "use", "attention", "mechanism", "to", "fuse", "topic", "and", "sentence", "information", "together", "."], "ner": [[3, 4, "Method"], [4, 4, "Method"], [15, 16, "Method"], [15, 15, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Synonymy-of"], [2, 0, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "builds", "upon", "the", "existing", "RS", "approach", "used", "to", "boost", "the", "sum", "-", "DoF", "and", "sum", "-", "rate", "performances", "."], "ner": [[5, 5, "Method"], [11, 13, "Metric"], [15, 17, "Metric"]], "relations": [[1, 0, "Evaluate-for"], [2, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["This", "leverages", "self", "-", "supervised", "learning", "where", "ground", "-", "truth", "parameters", "are", "generated", "synthetically", "using", "random", "transformations", "with", ",", "however", ",", "a", "higher", "sensitivity", "to", "non", "-", "rigid", "deformations", "."], "ner": [[2, 5, "Method"], [7, 9, "Other Scientific Term"], [15, 16, "Other Scientific Term"], [25, 28, "Other Scientific Term"], [28, 28, "Other Scientific Term"]], "relations": [[3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "instead", "take", "a", "probabilistic", "interpretation", "of", "IoU", "prediction", "and", "a", "very", "different", "general", "approach", "."], "ner": [[4, 5, "Other Scientific Term"], [7, 8, "Task"], [7, 7, "Other Scientific Term"], [8, 8, "Task"]], "relations": [[1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "will", "make", "the", "cluster", "kernel", "method", "adaptively", "fit", "the", "storage", "budget", "."], "ner": [[8, 9, "Method"], [8, 10, "Method"], [9, 10, "Method"], [9, 9, "Other Scientific Term"]], "relations": [[3, 2, "Used-for"], [0, 1, "Used-for"], [1, 2, "Hyponym-of"], [3, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "ubiquity", "of", "polyhedral", "models", "in", "computer", "vision", ",", "computer", "graphics", ",", "medical", "imaging", "and", "solid", "modeling", "calls", "for", "algorithms", "for", "the", "analysis", "of", "the", "smooth", "object", "boundaries", "associated", "with", "them", "."], "ner": [[3, 4, "Other Scientific Term"], [6, 7, "Task"], [9, 10, "Task"], [12, 13, "Task"], [13, 13, "Task"], [15, 16, "Task"], [16, 16, "Task"], [25, 27, "Other Scientific Term"]], "relations": [[3, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [0, 1, "Used-for"], [0, 2, "Used-for"], [0, 3, "Used-for"], [0, 5, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "designed", "a", "restricted", "dynamic", "oracle", "for", "the", "simultaneous", "translation", "problem", "and", "provided", "a", "local", "training", "method", "utilizing", "this", "dynamic", "oracle", "."], "ner": [[4, 6, "Method"], [5, 6, "Method"], [9, 10, "Task"], [15, 16, "Method"], [20, 21, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"], [4, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "MIL", "model", "assumes", "independent", "labels", "for", "each", "instance", "and", "accounts", "for", "the", "uncertainty", "of", "the", "weak", "labels", "by", "assigning", "a", "positive", "bag", "label", "only", "if", "there", "is", "at", "least", "one", "positive", "instance", "."], "ner": [[1, 1, "Method"], [16, 17, "Other Scientific Term"], [21, 23, "Other Scientific Term"], [22, 23, "Other Scientific Term"]], "relations": [[2, 3, "Part-for"]], "discontinuous": false}
{"tokens": ["Although", "not", "learning", "any", "meta", "-", "embedding", ",", "several", "prior", "works", "have", "shown", "that", "incorporating", "multiple", "word", "embeddings", "learnt", "using", "different", "methods", "improve", "performance", "in", "various", "NLP", "tasks", "."], "ner": [[4, 6, "Other Scientific Term"], [16, 17, "Other Scientific Term"], [17, 17, "Other Scientific Term"], [26, 26, "Task"]], "relations": [[1, 2, "Hyponym-of"], [1, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "model", "design", "is", "motivated", "by", "some", "of", "the", "characteristics", "observed", "in", "dense", "heterogeneous", "traffic", "."], "ner": [[12, 14, "Other Scientific Term"], [13, 14, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "first", "present", "standard", "NLP", "sentiment", "experiments", "that", "show", "the", "classifiers", "achieve", "good", "performance", "on", "individual", "tweets", "."], "ner": [[4, 4, "Task"], [10, 10, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["One", "intriguing", "finding", "is", "that", "there", "is", "still", "such", "an", "improvement", "by", "combining", "ConvNet", "predictions", "with", "FVencoded", "IDT", "features", "."], "ner": [[13, 13, "Method"], [16, 18, "Other Scientific Term"], [16, 17, "Method"], [17, 17, "Method"], [17, 18, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [1, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "data", "sets", "for", "English", ",", "Finnish", ",", "Turkish", "and", "German", "are", "from", "the", "Morpho", "Challenge", "2010", "competition", "6", "(", "MC2010", ")", "."], "ner": [[14, 18, "Other Scientific Term"], [20, 20, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["It", "should", "be", "mentioned", "that", "earlier", "methods", "to", "horizon", "detection", "suffer", "from", "the", "assumption", "that", "the", "horizon", "boundary", "is", "linear", "and", "hence", "are", "limited", "."], "ner": [[8, 9, "Task"], [9, 9, "Task"], [16, 17, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "the", "recent", "literature", ",", "researchers", "concentrate", "on", "single", "image", "dehazing", "methods", ",", "which", "can", "dehaze", "an", "input", "image", "without", "requiring", "any", "extra", "information", ",", "e.g.", "depth", "information", "or", "known", "3D", "model", "of", "the", "scene", "."], "ner": [[8, 10, "Task"], [8, 11, "Method"], [30, 31, "Other Scientific Term"], [34, 34, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "previous", "work", ",", "audio", "-", "visual", "ASR", ",", "which", "leverages", "visual", "features", "to", "help", "ASR", ",", "has", "been", "explored", "on", "restricted", "domains", "of", "videos", "."], "ner": [[4, 7, "Method"], [7, 7, "Task"], [15, 15, "Task"]], "relations": [[0, 1, "Used-for"], [0, 2, "Used-for"], [1, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "next", "experiment", "investigates", "the", "performance", "of", "FRNNLMs", "trained", "using", "various", "criteria", "when", "using", "50", "-", "best", "rescoring", "."], "ner": [[7, 7, "Method"], [14, 17, "Method"], [17, 17, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["To", "the", "best", "of", "our", "knowledge", ",", "this", "paper", "is", "the", "first", "to", "introduce", "a", "detection", "network", ",", "common", "in", "object", "recognition", ",", "to", "the", "depthmap", "reconstruction", "task", "."], "ner": [[15, 16, "Method"], [15, 15, "Task"], [20, 21, "Task"], [21, 21, "Task"], [25, 26, "Task"], [25, 25, "Other Scientific Term"], [26, 26, "Task"]], "relations": [[0, 1, "Used-for"], [2, 3, "Hyponym-of"], [4, 6, "Hyponym-of"], [0, 2, "Used-for"], [0, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "after", "the", "model", "is", "fine", "-", "tuned", "on", "FlyingThings3D", ",", "DenseNet", "leads", "to", "lower", "errors", "."], "ner": [[10, 10, "Material"], [12, 12, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "define", "a", "universal", "morphological", "feature", "space", "in", "which", "every", "language", "and", "its", "morphological", "analysis", "reside", "."], "ner": [[4, 6, "Other Scientific Term"], [5, 6, "Other Scientific Term"], [13, 14, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["There", "is", "growing", "interest", "on", "automatic", "searching", "of", "neural", "network", "architectures", "from", "scratch", "."], "ner": [[5, 6, "Task"], [6, 6, "Task"], [8, 10, "Other Scientific Term"], [8, 9, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "doing", "so", ",", "we", "demonstrate", "that", "using", "the", "posterior", "grammar", "of", "an", "AG", "model", "to", "decode", "unseen", "data", "is", "a", "feasible", "way", "to", "scale", "these", "models", "to", "large", "data", "sets", "."], "ner": [[9, 10, "Method"], [13, 13, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Instead", "of", "posing", "a", "hard", "epipolar", "constraint", ",", "in", "this", "paper", ",", "we", "propose", "to", "use", "soft", "epipolar", "constraints", "that", "are", "derived", "using", "low", "-", "rankness", "when", "the", "scene", "is", "stationary", ",", "and", "union", "of", "subspaces", "structure", "when", "the", "scene", "is", "motion", "agnostic", "."], "ner": [[4, 6, "Other Scientific Term"], [5, 6, "Other Scientific Term"], [16, 18, "Other Scientific Term"], [17, 18, "Other Scientific Term"], [35, 36, "Other Scientific Term"]], "relations": [[1, 3, "Synonymy-of"], [0, 1, "Hyponym-of"], [0, 3, "Hyponym-of"], [2, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "showed", "how", "well", "various", "factorizations", "are", "able", "to", "take", "advantage", "of", "these", "unlabeled", "data", "features", ",", "focusing", "our", "analysis", "on", "conjunctions", "and", "prepositions", "."], "ner": [[5, 5, "Method"], [13, 15, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [21, 21, "Other Scientific Term"], [23, 23, "Other Scientific Term"]], "relations": [[1, 2, "Part-for"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "work", "is", ",", "to", "the", "best", "of", "our", "knowledge", ",", "the", "first", "to", "attempt", "building", "a", "speaker", "-", "informed", "NMT", "system", "."], "ner": [[17, 20, "Method"], [20, 20, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "the", "final", "experiment", "we", "focus", "on", "the", "tracking", "ability", "of", "3C", "(", "PNS", "Dataset", ")", "."], "ner": [[8, 9, "Metric"], [11, 11, "Method"], [13, 13, "Other Scientific Term"], [13, 14, "Material"]], "relations": [[0, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["The", "contextual", "semantic", "information", "that", "the", "TLD", "model", "tracks", "is", "similar", "to", "that", "potentially", "used", "in", "other", "linguistic", "learning", "tasks", "."], "ner": [[1, 3, "Other Scientific Term"], [2, 3, "Other Scientific Term"], [6, 7, "Method"], [17, 18, "Task"]], "relations": [[0, 1, "Hyponym-of"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Researchers", "have", "devoted", "a", "substantial", "amount", "of", "effort", "to", "design", "effective", "features", "for", "automated", "essay", "scoring", "."], "ner": [[13, 15, "Task"], [14, 15, "Task"], [15, 15, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Motivated", "by", "the", "universality", "and", "significance", ",", "considerable", "efforts", "have", "been", "devoted", "to", "filter", "pruning", "techniques", "."], "ner": [[13, 14, "Method"], [13, 13, "Method"], [14, 14, "Method"]], "relations": [[0, 2, "Hyponym-of"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "choice", "of", "the", "nonlinear", "contrast", "function", "depends", "on", "the", "probability", "distribution", "of", "the", "source", "signal", "."], "ner": [[4, 6, "Other Scientific Term"], [5, 6, "Other Scientific Term"], [10, 11, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "model", "resonates", "with", "the", "recent", "trend", "of", "developing", "neural", "network", "models", "for", "semantic", "role", "labeling", "."], "ner": [[9, 10, "Method"], [13, 15, "Task"], [13, 14, "Other Scientific Term"], [15, 15, "Task"]], "relations": [[0, 1, "Used-for"], [1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Specifically", ",", "both", "translation", "and", "recognition", "tasks", "share", "the", "same", "encoder", "network", ",", "which", "allows", "to", "explicitly", "regularize", "the", "training", "of", "recognition", "task", "with", "the", "help", "of", "translation", ",", "and", "thus", "improve", "its", "final", "generalization", "ability", "."], "ner": [[5, 5, "Task"], [10, 11, "Method"], [10, 10, "Method"], [21, 21, "Task"], [34, 35, "Metric"]], "relations": [[0, 3, "Synonymy-of"], [1, 0, "Used-for"], [1, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "introduce", "a", "novel", ",", "improved", "method", "that", "achieves", "higher", "correct", "classification", "rate", "for", "LF", "identification", ",", "compared", "to", "the", "trivial", "method", "."], "ner": [[10, 12, "Metric"], [11, 11, "Task"], [14, 15, "Task"], [14, 14, "Other Scientific Term"], [15, 15, "Task"]], "relations": [[2, 4, "Hyponym-of"], [0, 1, "Evaluate-for"], [0, 2, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Moreover", ",", "we", "exploit", "class", "-", "wise", "loss", "to", "preserve", "the", "class", "-", "level", "semantic", "information", "when", "the", "generators", "synthesize", "two", "intermediate", "domains", "reducing", "domain", "discrepancy", "."], "ner": [[4, 7, "Other Scientific Term"], [7, 7, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [18, 18, "Method"], [21, 22, "Other Scientific Term"], [24, 25, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Leveraging", "word", "embeddings", ":", "MIGA", "can", "be", "extended", "to", "incorporate", "word", "embeddings", "to", "guide", "the", "generation", "of", "latent", "topics", "."], "ner": [[1, 2, "Method"], [2, 2, "Method"], [4, 4, "Method"], [10, 11, "Method"], [11, 11, "Method"], [15, 15, "Task"], [17, 18, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [0, 4, "Hyponym-of"], [3, 1, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 2, "Used-for"], [2, 5, "Used-for"], [0, 2, "Used-for"], [0, 3, "Synonymy-of"], [1, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Thus", ",", "they", "proposed", "a", "code", "reviewer", "recommendation", "approach", "REVFINDER", "to", "solve", "the", "problem", "by", "leveraging", "the", "file", "location", "information", "."], "ner": [[5, 8, "Method"], [5, 7, "Task"], [7, 7, "Task"], [7, 8, "Method"], [9, 9, "Method"], [17, 19, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [3, 2, "Used-for"], [0, 3, "Hyponym-of"], [1, 2, "Hyponym-of"], [4, 0, "Hyponym-of"], [4, 1, "Used-for"], [5, 0, "Used-for"], [5, 4, "Used-for"], [5, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "first", "pass", "typically", "applies", "a", "weak", "language", "model", "(", "n", "-", "grams", ")", "to", "a", "lattice", "and", "the", "second", "pass", "applies", "a", "stronger", "language", "model", "to", "N", "best", "lists", "."], "ner": [[7, 8, "Method"], [10, 12, "Method"], [16, 16, "Other Scientific Term"], [24, 25, "Method"]], "relations": [[0, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "the", "user", "encoder", ",", "we", "learn", "representations", "of", "users", "from", "their", "browsing", "by", "using", "multi", "-", "head", "self", "-", "attention", "to", "capture", "their", "relatedness", "."], "ner": [[2, 3, "Method"], [3, 3, "Method"], [15, 20, "Method"], [18, 20, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "resulting", "higher", "-", "order", "parsers", "depend", "on", "approximate", "inference", "and", "decoding", "procedures", ",", "which", "may", "prevent", "them", "from", "predicting", "the", "best", "parse", "."], "ner": [[2, 5, "Method"], [5, 5, "Method"], [8, 9, "Method"], [9, 9, "Task"], [11, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"], [4, 0, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "instantiate", "our", "idea", "with", "Caicedo", "and", "Lazebnik", "[", "2", "]", "as", "a", "single", "active", "search", "model", "baseline", ",", "but", "our", "mechanism", "could", "be", "applied", "to", "other", "baseline", "models", "with", "minor", "adaptation", "."], "ner": [[14, 15, "Method"], [17, 17, "Other Scientific Term"], [27, 27, "Other Scientific Term"]], "relations": [[1, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["It", "does", "not", "require", "processing", "the", "entire", "video", ",", "but", "just", "the", "portion", "that", "is", "selected", "by", "the", "fast", "-", "forward", "agent", ",", "which", "makes", "the", "process", "very", "computationally", "efficient", "."], "ner": [[18, 21, "Method"], [21, 21, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "unlike", "existing", "IE", "systems", ",", "such", "as", "Evita", "(", "Saurí", "et", "al", ".", ",", "2005", ")", ",", "a", "robust", "event", "recognizer", "for", "QA", "system", ",", "and", "SRES", "(", "Rozenfeld", "and", "Feldman", ",", "2008", ")", ",", "a", "self", "-", "supervised", "relation", "extractor", "for", "the", "web", ",", "it", "targets", "tweets", ",", "a", "new", "genre", "of", "text", ",", "which", "are", "short", "and", "informal", ",", "and", "its", "focus", "is", "on", "adapting", "existing", "IE", "components", "to", "tweets", "."], "ner": [[4, 5, "Method"], [4, 4, "Task"], [9, 9, "Method"], [21, 22, "Method"], [22, 22, "Method"], [24, 25, "Method"], [24, 24, "Task"], [28, 28, "Method"], [38, 42, "Method"], [41, 42, "Method"], [42, 42, "Method"], [70, 71, "Method"], [70, 70, "Task"]], "relations": [[0, 1, "Used-for"], [11, 1, "Used-for"], [0, 12, "Used-for"], [11, 12, "Used-for"], [3, 4, "Hyponym-of"], [8, 9, "Hyponym-of"], [9, 10, "Hyponym-of"], [2, 0, "Hyponym-of"], [3, 5, "Used-for"], [5, 6, "Used-for"], [3, 6, "Used-for"], [7, 8, "Hyponym-of"], [1, 12, "Synonymy-of"], [2, 3, "Hyponym-of"], [2, 5, "Used-for"], [2, 6, "Used-for"], [7, 0, "Hyponym-of"], [2, 6, "Used-for"], [2, 1, "Used-for"], [2, 12, "Used-for"], [3, 1, "Used-for"], [3, 12, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "approach", "is", "combined", "with", "the", "effect", "of", "DFD", "to", "improve", "the", "robustness", "of", "measurement", "."], "ner": [[8, 8, "Method"], [12, 12, "Metric"]], "relations": [[1, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["We", "study", "the", "problem", "of", "emphasis", "selection", ",", "i.e.", "choosing", "candidates", "for", "emphasis", "in", "short", "written", "text", ",", "to", "enable", "automated", "design", "assistance", "in", "authoring", "."], "ner": [[5, 6, "Task"], [6, 6, "Task"], [20, 22, "Task"], [21, 22, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Moreover", ",", "even", "if", "we", "wish", "to", "use", "entity", "matching", ",", "we", "must", "first", "recognize", "the", "entities", "from", "a", "review", "."], "ner": [[8, 9, "Method"], [8, 8, "Other Scientific Term"], [9, 9, "Task"], [16, 16, "Other Scientific Term"]], "relations": [[1, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["However", ",", "creating", "a", "verb", "classification", "is", "highly", "resource", "intensive", ",", "in", "terms", "of", "both", "required", "time", "and", "linguistic", "expertise", "."], "ner": [[4, 5, "Task"], [4, 4, "Other Scientific Term"], [5, 5, "Task"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "propose", "to", "build", "large", "-", "scale", "sentiment", "lexicon", "from", "Twitter", "with", "a", "representation", "learning", "approach", "."], "ner": [[11, 12, "Other Scientific Term"], [14, 14, "Material"], [17, 18, "Method"]], "relations": [[2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "video", "sequence", "is", "segmented", "into", "the", "scenes", ",", "and", "the", "wavelet", "transform", "is", "employed", "along", "the", "temporal", "axis", "of", "the", "scene", "."], "ner": [[7, 7, "Other Scientific Term"], [11, 12, "Method"], [17, 18, "Other Scientific Term"], [21, 21, "Other Scientific Term"]], "relations": [[0, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "believe", "this", "work", "will", "not", "only", "benefit", "the", "3D", "modeling", ",", "but", "also", "easily", "find", "applications", "in", "video", "processing", ",", "rendering", ",", "and", "understanding", "."], "ner": [[9, 10, "Task"], [10, 10, "Task"], [18, 19, "Task"], [21, 21, "Task"], [24, 24, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Consequently", ",", "the", "trained", "model", "parameters", "are", "not", "optimum", "for", "parameter", "generation", "."], "ner": [[10, 11, "Task"], [11, 11, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["On", "-", "line", "LDA", "(", "AlSumait", "et", "al", ".", ",", "2008", ")", "incorporates", "topic", "detection", "into", "its", "algorithm", "by", "calculating", "the", "KL", "divergence", "of", "evolving", "topics", "at", "adjacent", "time", "periods", "."], "ner": [[0, 3, "Method"], [3, 3, "Method"], [13, 14, "Task"], [14, 14, "Task"], [21, 22, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 2, "Used-for"], [4, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Each", "model", "is", "in", "the", "form", "of", "a", "template", "that", "consists", "of", "a", "small", "group", "of", "part", "templates", "that", "are", "allowed", "to", "shift", "their", "locations", "and", "orientations", "relative", "to", "each", "other", ",", "and", "each", "part", "template", "is", "in", "turn", "a", "composition", "of", "Gabor", "wavelets", "that", "are", "also", "allowed", "to", "shift", "their", "locations", "and", "orientations", "relative", "to", "each", "other", "."], "ner": [[42, 43, "Other Scientific Term"], [43, 43, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "since", "the", "MUSHRA", "test", "did", "not", "reveal", "a", "difference", "in", "perceptual", "quality", "between", "methods", ",", "we", "conclude", "that", "the", "difference", "in", "perceptual", "SNR", "is", "either", "too", "small", "to", "be", "perceived", "or", "that", "the", "measure", "itself", "is", "not", "an", "accurate", "measure", "of", "perceptual", "quality", "."], "ner": [[4, 4, "Metric"], [23, 24, "Metric"], [24, 24, "Metric"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "paper", "has", "presented", "L2", "-", "ARCTIC", ",", "a", "new", "non", "-", "native", "English", "speech", "corpus", "designed", "for", "voice", "conversion", ",", "accent", "conversion", ",", "and", "mispronunciation", "detection", "tasks", "."], "ner": [[4, 6, "Material"], [18, 19, "Task"], [19, 19, "Task"], [21, 22, "Task"], [22, 22, "Task"], [25, 26, "Task"], [26, 26, "Task"]], "relations": [[1, 2, "Hyponym-of"], [1, 4, "Hyponym-of"], [3, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [2, 4, "Synonymy-of"], [0, 1, "Used-for"], [0, 3, "Used-for"], [0, 5, "Used-for"], [5, 6, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "second", "camp", ",", "focusing", "on", "natural", "language", "analysis", ",", "looks", "into", "tasks", "such", "as", "extracting", "social", "relationships", "from", "narrative", "text", "(", "Elson", "et", "al", ".", ",", "2010", ";", "Van", "De", "Camp", "and", "van", "den", "Bosch", ",", "2011", ";", "Agarwal", "et", "al", ".", ",", "2012", ")", "and", "analyzing", "the", "contents", "of", "the", "information", "flowing", "through", "the", "network", "."], "ner": [[6, 8, "Task"], [8, 8, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "results", "show", "that", "the", "unsupervised", "crosslingual", "STS", "metric", "using", "BERT", "without", "fine", "-", "tuning", "achieves", "performance", "on", "par", "with", "supervised", "or", "weakly", "supervised", "approaches", "."], "ner": [[5, 7, "Metric"], [6, 7, "Metric"], [7, 7, "Metric"], [10, 10, "Method"], [12, 14, "Method"], [22, 24, "Method"], [23, 24, "Method"], [20, 20, 24, 24, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [5, 6, "Hyponym-of"], [5, 7, "Hyponym-of"], [7, 6, "Synonymy-of"], [3, 0, "Used-for"]], "discontinuous": true}
{"tokens": ["The", "results", "show", "that", "our", "method", "outperforms", "conventional", "unsupervised", "object", "matching", "methods", "."], "ner": [[8, 11, "Method"], [8, 10, "Task"], [9, 11, "Method"], [9, 10, "Task"], [10, 10, "Task"], [10, 11, "Method"]], "relations": [[0, 2, "Hyponym-of"], [2, 5, "Hyponym-of"], [1, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [0, 1, "Used-for"], [2, 3, "Used-for"], [5, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["Static", "and", "dynamic", "spectral", "cues", "are", "investigated", "to", "characterize", "the", "fricatives", "with", "NAE", "."], "ner": [[2, 4, "Other Scientific Term"], [3, 4, "Other Scientific Term"], [10, 10, "Other Scientific Term"], [12, 12, "Other Scientific Term"], [0, 0, 3, 4, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [4, 1, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["Inspired", "by", "this", ",", "we", "propose", "to", "use", "attribute", "representation", "to", "address", "generic", "instance", "search", ",", "where", "there", "is", "only", "1", "example", "available", "and", "there", "still", "exists", "a", "wide", "range", "of", "appearance", "variations", "."], "ner": [[8, 9, "Method"], [12, 14, "Task"], [13, 14, "Task"], [14, 14, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "these", "two", "last", "approaches", "employ", "human", "motion", "capture", "system", "instead", "of", "vision", "features", "to", "capture", "the", "human", "motion", "."], "ner": [[7, 10, "Method"], [7, 9, "Task"], [8, 9, "Task"], [8, 10, "Method"], [9, 9, "Task"], [9, 10, "Method"], [13, 14, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [2, 4, "Hyponym-of"], [0, 3, "Hyponym-of"], [3, 5, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"], [5, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "NLU", "models", "are", "not", "replicated", "for", "each", "user", "."], "ner": [[1, 2, "Method"], [1, 1, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Temporal", "information", "extraction", "is", "becoming", "an", "active", "research", "field", "in", "natural", "language", "processing", "(", "NLP", ")", "due", "to", "the", "rapidly", "growing", "need", "for", "NLP", "applications", "such", "as", "timeline", "generation", "and", "question", "answering", "(", "Llorens", "et", "al", ".", ",", "2015", ";", "Meng", "et", "al", ".", ",", "2017", ")", "."], "ner": [[0, 2, "Task"], [0, 1, "Other Scientific Term"], [1, 2, "Task"], [2, 2, "Task"], [10, 12, "Task"], [14, 14, "Task"], [23, 23, "Task"], [27, 28, "Task"], [28, 28, "Task"], [30, 31, "Task"]], "relations": [[4, 5, "Synonymy-of"], [4, 6, "Synonymy-of"], [5, 6, "Synonymy-of"], [0, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [7, 8, "Hyponym-of"], [0, 4, "Hyponym-of"], [0, 5, "Hyponym-of"], [0, 6, "Hyponym-of"], [7, 4, "Hyponym-of"], [7, 5, "Hyponym-of"], [7, 6, "Hyponym-of"], [9, 4, "Hyponym-of"], [9, 5, "Hyponym-of"], [9, 6, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "work", "we", "introduce", "Time", "Series", "Chains", ",", "which", "are", "related", "to", ",", "but", "distinct", "from", ",", "time", "series", "motifs", "."], "ner": [[5, 7, "Method"], [5, 6, "Other Scientific Term"], [18, 20, "Method"], [18, 19, "Other Scientific Term"]], "relations": [[1, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["For", "supervised", "speech", "separation", ",", "input", "features", "and", "training", "targets", "are", "both", "important", "."], "ner": [[1, 3, "Task"], [2, 3, "Task"], [3, 3, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["They", "trained", "a", "dependency", "parser", "by", "merging", "the", "training", "MWE", "annotation", "into", "its", "dependency", "annotation", "."], "ner": [[3, 4, "Method"], [3, 3, "Other Scientific Term"], [4, 4, "Method"], [9, 9, "Other Scientific Term"], [13, 13, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [1, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["And", "second", ",", "we", "propose", "to", "formulate", "the", "generation", "of", "natural", "language", "as", "a", "machine", "translation", "problem", "using", "the", "semantic", "representation", "as", "source", "language", "and", "the", "generated", "sentences", "as", "target", "language", "."], "ner": [[14, 15, "Task"], [19, 20, "Method"], [22, 23, "Other Scientific Term"], [29, 30, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"], [2, 0, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "checked", "the", "statistical", "relationship", "between", "CS", "words", "being", "cognate", "words", "(", "Table", "6", ")", "and", "found", "that", "there", "is", "a", "strong", "statistical", "relationship", "between", "both", "variables", ",", "but", "surprisingly", "we", "found", "that", "CS", "words", "are", "overall", "less", "likely", "to", "be", "cognates", "than", "other", "words", "."], "ner": [[7, 8, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [34, 35, "Other Scientific Term"]], "relations": [[0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["DREAM", "is", "likely", "to", "present", "significant", "challenges", "for", "existing", "reading", "comprehension", "systems", ":", "84", "%", "of", "answers", "are", "non", "-", "extractive", ",", "85", "%", "of", "questions", "require", "reasoning", "beyond", "a", "single", "sentence", ",", "and", "34", "%", "of", "questions", "also", "involve", "commonsense", "knowledge", "."], "ner": [[0, 0, "Material"], [9, 11, "Method"], [9, 10, "Task"], [40, 41, "Other Scientific Term"]], "relations": [[1, 2, "Used-for"], [1, 0, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["It", "is", "also", "the", "first", "time", "that", "partially", "supervised", "learning", "is", "proposed", "to", "tackle", "the", "end", "-", "to", "-", "end", "text", "reading", "task", "."], "ner": [[7, 9, "Method"], [8, 9, "Method"], [15, 21, "Task"], [20, 21, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "second", "phase", "is", "the", "well", "-", "known", "supervised", "fine", "-", "tuning", "phase", "."], "ner": [[8, 11, "Method"], [9, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "instead", "of", "creating", "a", "graph", "with", "nodes", "representing", "noun", "phrases", ",", "they", "added", "edges", "from", "the", "surface", "relations", "directly", "to", "the", "entity", "nodes", "in", "the", "graph", "."], "ner": [[6, 6, "Other Scientific Term"], [8, 8, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [10, 10, "Other Scientific Term"], [15, 15, "Other Scientific Term"], [18, 19, "Other Scientific Term"], [23, 24, "Other Scientific Term"], [23, 23, "Other Scientific Term"], [24, 24, "Other Scientific Term"], [27, 27, "Other Scientific Term"]], "relations": [[0, 9, "Synonymy-of"], [1, 8, "Synonymy-of"], [1, 0, "Part-for"], [1, 9, "Part-for"], [8, 0, "Part-for"], [8, 9, "Part-for"], [4, 0, "Part-for"], [4, 9, "Part-for"], [6, 1, "Hyponym-of"], [6, 8, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "problem", "is", "challenging", "due", "to", "the", "lack", "of", "human", "supervision", "and", "the", "ambiguous", "definition", "of", "human", "-", "perceivable", "abnormality", "in", "video", "events", "."], "ner": [[9, 10, "Other Scientific Term"], [10, 10, "Other Scientific Term"], [16, 19, "Other Scientific Term"], [21, 22, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["For", "short", ",", "we", "use", "FastText", "to", "refer", "to", "the", "FastText", "-", "based", "model", "and", "fasttext", "to", "refer", "to", "the", "fasttext", "embeddings", ",", "Lexicon", "to", "refer", "to", "the", "Lexicon", "-", "based", "model", "and", "lexicon", "to", "refer", "to", "the", "lexicon", "embeddings", "."], "ner": [[5, 5, "Method"], [10, 13, "Method"], [15, 15, "Other Scientific Term"], [20, 21, "Other Scientific Term"], [21, 21, "Other Scientific Term"], [23, 23, "Method"], [28, 31, "Method"], [33, 33, "Other Scientific Term"], [38, 39, "Other Scientific Term"], [39, 39, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"], [2, 3, "Synonymy-of"], [5, 6, "Synonymy-of"], [7, 8, "Synonymy-of"], [4, 9, "Synonymy-of"], [3, 4, "Hyponym-of"], [3, 9, "Hyponym-of"], [8, 9, "Hyponym-of"], [8, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "constructively", "prove", "the", "completeness", "of", "this", "framework", "by", "converting", "a", "general", "continuous", "Markov", "process", "into", "the", "proposed", "dynamic", "structure", "."], "ner": [[12, 14, "Method"], [13, 14, "Method"], [18, 19, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "presented", "a", "novel", "approach", "to", "conversational", "POCBR", "that", "conducts", "an", "interactive", "dialog", "with", "users", "to", "facilitate", "the", "retrieval", "of", "workflows", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"], [11, 12, "Task"], [18, 18, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "first", "run", "a", "series", "of", "2D", "convolutions", ",", "and", "then", "backproject", "the", "resulting", "features", "into", "the", "3D", "grid", "."], "ner": [[6, 7, "Method"], [7, 7, "Method"], [11, 11, "Other Scientific Term"], [17, 18, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["There", "are", "two", "major", "types", "of", "end", "-", "to", "-", "end", "architectures", "for", "ASR", ":", "attention", "-", "based", "methods", "use", "an", "attention", "mechanism", "to", "perform", "alignment", "between", "acoustic", "frames", "and", "recognized", "symbols", ",", "and", "connectionist", "temporal", "classification", "(", "CTC", ")", ",", "uses", "Markov", "assumptions", "to", "efficiently", "solve", "sequential", "problems", "by", "dynamic", "programming", "."], "ner": [[6, 11, "Method"], [13, 13, "Task"], [15, 18, "Method"], [21, 22, "Method"], [21, 21, "Method"], [25, 25, "Task"], [27, 28, "Other Scientific Term"], [34, 36, "Method"], [36, 36, "Task"], [38, 38, "Method"], [42, 43, "Method"], [47, 48, "Task"], [50, 51, "Method"]], "relations": [[0, 1, "Used-for"], [3, 4, "Synonymy-of"], [7, 8, "Used-for"], [9, 8, "Used-for"], [2, 0, "Hyponym-of"], [7, 0, "Hyponym-of"], [3, 2, "Used-for"], [2, 5, "Used-for"], [10, 7, "Used-for"], [12, 7, "Used-for"], [7, 11, "Used-for"], [9, 11, "Used-for"], [2, 1, "Used-for"], [7, 1, "Used-for"], [7, 9, "Synonymy-of"], [4, 2, "Used-for"], [10, 9, "Used-for"], [12, 9, "Used-for"], [10, 11, "Used-for"], [12, 11, "Used-for"], [7, 0, "Hyponym-of"], [9, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "order", "to", "remove", "the", "wide", "specular", "lobes", "on", "surfaces", ",", "Mallick", "et", "al", ".", "[", "13", "]", "proposed", "a", "data", "-", "dependent", "specular", "separation", "method", "using", "color", "information", "."], "ner": [[6, 7, "Other Scientific Term"], [20, 24, "Method"], [23, 24, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "results", "suggest", "that", "omni", "-", "scale", "feature", "learning", "is", "useful", "beyond", "instance", "recognition", "and", "can", "be", "considered", "for", "a", "broad", "range", "of", "visual", "recognition", "tasks", "."], "ner": [[4, 8, "Method"], [7, 8, "Method"], [12, 13, "Task"], [13, 13, "Task"], [23, 24, "Task"], [24, 24, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [0, 4, "Used-for"], [3, 5, "Synonymy-of"], [2, 5, "Hyponym-of"], [4, 3, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "model", "is", "capable", "of", "learning", "several", "tasks", "associated", "with", "ADR", "monitoring", "with", "different", "levels", "of", "supervisions", "collectively", "."], "ner": [[10, 11, "Task"], [10, 10, "Other Scientific Term"], [16, 16, "Other Scientific Term"]], "relations": [[2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "have", "proposed", "GRAB", ",", "which", "does", "not", "rely", "on", "position", "and", "interference", "calibration", ",", "but", "locates", "speech", "energy", "guided", "by", "a", "speech", "model", "and", "minimize", "the", "non", "-", "speech", "energy", "."], "ner": [[3, 3, "Method"], [12, 13, "Method"], [17, 18, "Other Scientific Term"], [22, 23, "Method"], [27, 30, "Other Scientific Term"]], "relations": [[3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["That", "is", ",", "we", "propose", "a", "combined", "framework", "of", "dual", "discriminative", "dimensionality", "reduction", "and", "classification", "within", "the", "maximum", "margin", "framework", "of", "SVMs", "."], "ner": [[9, 12, "Task"], [11, 12, "Task"], [14, 14, "Task"], [17, 19, "Method"], [21, 21, "Method"]], "relations": [[0, 1, "Hyponym-of"], [3, 0, "Used-for"], [3, 2, "Used-for"], [3, 4, "Part-for"]], "discontinuous": false}
{"tokens": ["To", "make", "up", "for", "the", "above", "deficiency", "of", "FCN", ",", "some", "works", "have", "been", "proposed", "to", "introduce", "useful", "contextual", "information", "to", "benefit", "the", "semantic", "segmentation", "task", "."], "ner": [[8, 8, "Method"], [18, 19, "Other Scientific Term"], [23, 24, "Task"], [24, 24, "Task"]], "relations": [[2, 3, "Hyponym-of"], [0, 2, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Using", "a", "monolingual", "language", "model", "in", "a", "multipass", "decoding", "framework", "would", "improve", "the", "performances", "significantly", "."], "ner": [[2, 4, "Method"], [3, 4, "Method"], [7, 8, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Despite", "such", "difficulty", ",", "SISR", "is", "a", "very", "active", "area", "because", "it", "can", "offer", "the", "promise", "of", "overcoming", "resolution", "limitations", ",", "and", "could", "be", "used", "in", "a", "variety", "of", "applications", "such", "as", "video", "streaming", "or", "surveillance", "system", "."], "ner": [[4, 4, "Task"], [18, 18, "Other Scientific Term"], [32, 33, "Task"], [35, 36, "Task"]], "relations": [[0, 2, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "discriminator", "is", "trained", "with", "the", "reliable", "data", "as", "positive", "instances", "and", "the", "data", "selected", "by", "the", "generator", "as", "negative", "ones", "."], "ner": [[1, 1, "Method"], [9, 10, "Other Scientific Term"], [17, 17, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Since", "our", "method", "also", "refines", "the", "curve", "upsampled", "from", "LR", "mask", ",", "we", "can", "benefit", "from", "these", "methods", "and", "refine", "the", "boundary", "further", "."], "ner": [[9, 9, "Other Scientific Term"], [9, 10, "Other Scientific Term"], [10, 10, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["To", "overpass", "this", "limitation", ",", "(", "Nogueira", "and", "Cho", ",", "2017", ")", "have", "proposed", "a", "reinforcement", "learning", "model", "for", "query", "reformulation", "in", "which", "the", "reward", "is", "based", "on", "terms", "of", "documents", "retrieved", "by", "the", "IR", "system", "."], "ner": [[15, 16, "Method"], [19, 20, "Task"], [24, 24, "Other Scientific Term"], [34, 35, "Method"], [34, 34, "Task"]], "relations": [[0, 1, "Used-for"], [3, 4, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Thanks", "to", "a", "quadratic", "reformulation", "of", "the", "original", "problem", ",", "the", "proposed", "method", "can", "handle", "different", "signal", "constraints", "by", "employing", "the", "power", "method", "-", "like", "iterations", "."], "ner": [[3, 4, "Method"], [4, 4, "Task"], [16, 17, "Other Scientific Term"], [21, 25, "Method"], [25, 25, "Method"]], "relations": [[3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "decompose", "the", "task", "into", "two", "parts", ":", "view", "synthesis", "and", "stereo", "matching", "."], "ner": [[8, 9, "Task"], [9, 9, "Task"], [11, 12, "Task"], [12, 12, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "analyze", "the", "performance", "of", "recognition", "APIs", "under", "challenging", "conditions", "in", "Section", "IV", ",", "and", "we", "investigate", "the", "relationship", "between", "object", "recognition", "performance", "and", "objective", "quality", "assessment", "in", "Section", "V."], "ner": [[5, 6, "Method"], [5, 5, "Task"], [20, 21, "Task"], [21, 21, "Task"], [24, 26, "Task"], [25, 26, "Task"], [26, 26, "Task"]], "relations": [[1, 3, "Synonymy-of"], [0, 1, "Used-for"], [0, 3, "Used-for"], [2, 3, "Hyponym-of"], [2, 1, "Hyponym-of"], [4, 5, "Hyponym-of"], [5, 6, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "framework", "is", "derived", "from", "the", "well", "-", "known", "Viola", "-", "Jones", "(", "VJ", ")", "framework", "but", "distinguished", "by", "three", "key", "differences", "."], "ner": [[9, 15, "Method"], [13, 13, "Method"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "propose", "a", "method", "of", "collecting", "regions", "activated", "in", "different", "frames", ",", "using", "a", "warping", "technique", "based", "on", "optical", "flow", "."], "ner": [[14, 15, "Method"], [18, 19, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Direct", "semantic", "matching", "(", "as", "opposed", "to", "pattern", "generation", ")", "has", "been", "explored", "in", "early", "work", "like", "(", "Leacock", "and", "Chodorow", ",", "2003", ")", "."], "ner": [[0, 2, "Task"], [1, 2, "Task"], [2, 2, "Task"], [7, 8, "Task"], [8, 8, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "would", "then", "indicate", "that", "if", "the", "domain", "of", "the", "language", "to", "be", "tested", "is", "the", "same", "or", "similar", "to", "the", "one", "that", "the", "models", "have", "been", "created", "from", ",", "the", "models", "could", "use", "longer", "character", "n", "-", "grams", "and", "words", ",", "if", "not", ",", "then", "using", "just", "character", "n", "-", "grams", "is", "a", "better", "strategy", "."], "ner": [[35, 38, "Method"], [36, 38, "Method"], [48, 51, "Method"], [49, 51, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 3, "Hyponym-of"], [2, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 2, "Synonymy-of"], [1, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Domain", "information", "has", "been", "used", "for", "many", "NLP", "tasks", "."], "ner": [[0, 1, "Other Scientific Term"], [7, 7, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "include", "lexical", "similarities", ",", "cross", "-", "language", "explicit", "semantic", "analysis", ",", "internal", "representations", "of", "multilingual", "neural", "networks", "and", "interlingual", "word", "embeddings", "."], "ner": [[2, 3, "Method"], [5, 10, "Method"], [8, 10, "Method"], [9, 10, "Method"], [12, 13, "Method"], [15, 17, "Method"], [16, 17, "Method"], [19, 21, "Method"], [20, 21, "Method"], [21, 21, "Method"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [5, 6, "Hyponym-of"], [7, 8, "Hyponym-of"], [8, 9, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Finally", ",", "existing", "semantic", "segmentation", "networks", "can", "not", "handle", "directly", "the", "complex", "task", "with", "these", "challenges", "."], "ner": [[3, 5, "Method"], [3, 4, "Task"], [4, 4, "Task"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "subsequently", "conduct", "experiments", "for", "video", "event", "recognition", "to", "evaluate", "our", "model", "on", "the", "visual", "modality", "."], "ner": [[5, 7, "Task"], [6, 7, "Task"], [7, 7, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "present", "SPoT", ",", "a", "sentence", "planner", ",", "and", "a", "new", "methodology", "for", "automatically", "training", "SPoT", "on", "the", "basis", "of", "feedback", "provided", "by", "human", "judges", "."], "ner": [[6, 6, "Method"], [9, 10, "Method"], [10, 10, "Method"], [19, 19, "Method"]], "relations": [[1, 2, "Hyponym-of"], [0, 3, "Synonymy-of"], [0, 1, "Hyponym-of"], [3, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Most", "recently", ",", "there", "have", "been", "growing", "interests", "in", "using", "deep", "learning", "for", "sentiment", "classification", "."], "ner": [[10, 11, "Method"], [13, 14, "Task"], [14, 14, "Task"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "previous", "works", ",", "separate", "pose", "and", "depth", "CNN", "predictors", "had", "to", "be", "determined", "such", "that", "their", "joint", "outputs", "minimized", "the", "photometric", "error", "."], "ner": [[7, 9, "Method"], [8, 8, "Method"], [8, 9, "Method"], [9, 9, "Method"], [21, 22, "Other Scientific Term"], [5, 5, 8, 9, "Method"]], "relations": [[0, 2, "Hyponym-of"], [5, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [1, 2, "Used-for"], [1, 3, "Used-for"], [1, 0, "Used-for"], [1, 5, "Used-for"]], "discontinuous": true}
{"tokens": ["In", "this", "paper", ",", "to", "overcome", "the", "above", "issues", ",", "we", "propose", "a", "novel", "and", "unified", "framework", ",", "FRAUDSCAN", ",", "to", "conduct", "RFC", "detection", "online", "."], "ner": [[18, 18, "Method"], [22, 23, "Task"], [22, 22, "Other Scientific Term"], [23, 23, "Task"]], "relations": [[1, 3, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Compared", "to", "this", "work", ",", "we", "suggest", "to", "consider", "the", "directional", "variance", "when", "analyzing", "the", "spatial", "context", "."], "ner": [[10, 11, "Other Scientific Term"], [11, 11, "Other Scientific Term"], [15, 16, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "to", "the", "best", "of", "our", "knowledge", ",", "all", "previous", "Markov", "Random", "Walk", "-", "based", "sentence", "ranking", "models", "only", "make", "use", "of", "topic", "relevance", "information", ",", "i.e.", "whether", "this", "sentence", "is", "relevant", "to", "the", "fact", "we", "are", "looking", "for", ",", "thus", "they", "are", "limited", "to", "fact", "-", "based", "QA", "tasks", "."], "ner": [[11, 17, "Method"], [16, 17, "Task"], [16, 18, "Method"], [17, 17, "Task"], [17, 18, "Method"], [23, 25, "Other Scientific Term"], [46, 49, "Task"], [49, 49, "Task"]], "relations": [[0, 2, "Hyponym-of"], [2, 4, "Hyponym-of"], [1, 3, "Hyponym-of"], [0, 1, "Used-for"], [2, 1, "Used-for"], [4, 3, "Used-for"], [2, 1, "Used-for"], [5, 0, "Used-for"], [5, 1, "Used-for"], [0, 6, "Used-for"], [6, 7, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Moreover", ",", "we", "propose", "a", "recursive", "depth", "multi", "-", "frame", "SR", "algorithm", "by", "using", "multiple", "Kalman", "filters", "."], "ner": [[5, 10, "Method"], [7, 10, "Task"], [10, 10, "Task"], [14, 16, "Method"], [15, 16, "Method"], [16, 16, "Method"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 0, "Used-for"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "propose", "an", "attention", "-", "based", "multitask", "learning", "framework", "and", "integrate", "lexicon", "information", "to", "achieve", "better", "performance", "."], "ner": [[7, 11, "Method"], [10, 11, "Method"], [15, 16, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "shows", "that", ",", "the", "proposed", "MKF", "additionally", "takes", "advantage", "of", "temporal", "correlations", "of", "speech", "compared", "with", "standard", "approaches", "employing", "the", "MWF", "."], "ner": [[6, 6, "Method"], [11, 12, "Other Scientific Term"], [21, 21, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "first", "contribution", "is", "a", "generic", "optimization", "procedure", ",", "based", "on", "a", "Taylor", "series", "expansion", "of", "the", "risk", ",", "that", "can", "be", "applied", "to", "any", "loss", "function", "."], "ner": [[5, 7, "Method"], [6, 7, "Method"], [6, 6, "Task"], [12, 14, "Method"], [12, 13, "Other Scientific Term"], [25, 26, "Other Scientific Term"], [25, 25, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Used-for"], [0, 2, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "particular", ",", "we", "fully", "examine", "the", "temporal", "ordering", "of", "strokes", "through", "a", "two", "-", "branch", "CNN", "-", "RNN", "network", ",", "and", "address", "the", "abstraction", "problem", "by", "proposing", "a", "novel", "hashing", "loss", "that", "enforces", "more", "compact", "feature", "clusters", "for", "each", "sketch", "category", "in", "Hamming", "space", "."], "ner": [[13, 18, "Method"], [16, 18, "Method"], [24, 25, "Task"], [30, 31, "Other Scientific Term"], [31, 31, "Other Scientific Term"], [36, 37, "Other Scientific Term"], [43, 44, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [3, 2, "Used-for"], [3, 4, "Hyponym-of"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "practice", ",", "the", "chromatic", "number", "is", "obtained", "approximately", "with", "a", "heuristic", "graph", "coloring", "algorithm", ",", "so", "that", "the", "extra", "cost", "is", "quite", "limited", "."], "ner": [[4, 5, "Other Scientific Term"], [11, 14, "Method"], [12, 14, "Method"], [12, 13, "Task"], [12, 12, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Used-for"], [1, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "now", "formulate", "the", "problem", "as", "a", "Markov", "Decision", "Process", "(", "MDP", ")", ",", "where", "states", "are", "NLG", "dialogue", "contexts", "and", "actions", "are", "NLG", "decisions", "."], "ner": [[7, 9, "Method"], [11, 11, "Method"], [15, 15, "Other Scientific Term"], [17, 17, "Task"], [17, 19, "Other Scientific Term"], [21, 21, "Other Scientific Term"], [23, 23, "Task"], [23, 24, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"], [3, 6, "Synonymy-of"], [2, 0, "Part-for"], [2, 1, "Part-for"], [5, 0, "Part-for"], [5, 1, "Part-for"]], "discontinuous": false}
{"tokens": ["They", "use", "word", "embeddings", "combined", "with", "word", "-", "level", "features", "as", "input", "for", "their", "networks", "and", "they", "also", "rely", "on", "IOB", "labeling", "strategy", "."], "ner": [[2, 3, "Other Scientific Term"], [3, 3, "Other Scientific Term"], [6, 9, "Other Scientific Term"], [20, 22, "Method"], [21, 22, "Method"], [21, 21, "Task"]], "relations": [[3, 4, "Hyponym-of"], [0, 1, "Hyponym-of"], [3, 5, "Used-for"], [4, 5, "Used-for"]], "discontinuous": false}
{"tokens": ["Second", ",", "we", "provide", "detailed", "results", "and", "analysis", "for", "the", "task", "of", "one", "-", "shot", "visual", "pattern", "detection", "."], "ner": [[12, 17, "Task"], [15, 17, "Task"], [17, 17, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["And", "they", "came", "up", "with", "an", "explainability", "mask", "to", "relieve", "the", "problem", "of", "moving", "object", "in", "rigid", "scenes", "."], "ner": [[6, 7, "Other Scientific Term"], [7, 7, "Other Scientific Term"], [16, 17, "Other Scientific Term"], [17, 17, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", "we", "demonstrate", "a", "simple", "and", "novel", "illumination", "model", "that", "can", "be", "used", "for", "illumination", "invariant", "facial", "recognition", "."], "ner": [[9, 10, "Method"], [16, 19, "Task"], [18, 19, "Task"], [19, 19, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Standardizing", "non", "-", "standard", "forms", "presumably", "helped", "the", "SVM", "slightly", "by", "boosting", "the", "frequency", "counts", "of", "ngrams", "while", "removing", "nonstandard", "ngrams", "."], "ner": [[8, 8, "Method"], [16, 16, "Method"], [20, 20, "Method"]], "relations": [[1, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "introduce", "a", "database", "for", "NIR", "-", "VIS", "face", "recognition", ",", "and", "also", "specify", "the", "standard", "protocols", "to", "enable", "systematic", "evaluation", "."], "ner": [[7, 7, "Other Scientific Term"], [9, 13, "Task"], [12, 13, "Task"], [13, 13, "Task"], [24, 24, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["A", "combination", "of", "correlation", "-", "based", "scoring", "and", "ranking", "makes", "it", "possible", "to", "build", "datasets", "with", "weighted", "judgments", "based", "on", "the", "annotator", "confidence", "that", "we", "measure", "."], "ner": [[3, 6, "Task"], [6, 6, "Task"], [8, 8, "Task"], [3, 5, 8, 8, "Task"]], "relations": [[0, 1, "Hyponym-of"], [3, 2, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["The", "anomaly", "detection", "is", "performed", "using", "this", "time", "-", "stamp", "aware", "anomaly", "detector", "."], "ner": [[1, 2, "Task"], [2, 2, "Task"], [7, 12, "Method"], [10, 12, "Method"], [12, 12, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"], [2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Their", "methodology", "consists", "of", "first", "generating", "candidate", "labels", "for", "topics", "from", "topic", "-", "related", "documents", "using", "a", "chunk", "parser", "."], "ner": [[17, 18, "Method"], [18, 18, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["There", "has", "been", "a", "recent", "trend", "to", "improve", "results", "for", "pixel", "labeling", "problems", "by", "incorporating", "higher", "-", "order", "terms", "into", "the", "CRF", "models", "."], "ner": [[10, 11, "Task"], [11, 11, "Task"], [15, 18, "Other Scientific Term"], [21, 21, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Based", "on", "the", "proposed", "smooth", "OEC", "algorithm", ",", "a", "tonality", "-", "enhanced", "OEC", "algorithm", "and", "a", "dynamics", "-", "controlled", "OEC", "algorithm", "are", "hence", "developed", "to", "increase", "dynamic", "range", "of", "predicted", "OECs", "."], "ner": [[4, 6, "Method"], [5, 6, "Method"], [5, 5, "Other Scientific Term"], [9, 13, "Method"], [12, 13, "Method"], [12, 12, "Other Scientific Term"], [16, 20, "Method"], [19, 20, "Method"], [19, 19, "Other Scientific Term"], [30, 30, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [0, 4, "Hyponym-of"], [0, 7, "Hyponym-of"], [3, 1, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 7, "Hyponym-of"], [6, 1, "Hyponym-of"], [6, 4, "Hyponym-of"], [6, 7, "Hyponym-of"], [1, 4, "Synonymy-of"], [1, 7, "Synonymy-of"], [4, 7, "Synonymy-of"], [2, 5, "Synonymy-of"], [2, 8, "Synonymy-of"], [2, 9, "Synonymy-of"], [5, 8, "Synonymy-of"], [5, 9, "Synonymy-of"], [8, 9, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["There", "has", "been", "significant", "progress", "in", "automatic", "speech", "recognition", "(", "ASR", ")", "due", "to", "the", "development", "of", "Deep", "Learning", "(", "DL", ")", "."], "ner": [[6, 8, "Task"], [7, 8, "Task"], [8, 8, "Task"], [10, 10, "Task"], [17, 18, "Method"], [20, 20, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 3, "Synonymy-of"], [3, 1, "Hyponym-of"], [4, 5, "Synonymy-of"], [4, 0, "Used-for"], [5, 0, "Used-for"], [4, 3, "Used-for"], [5, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Reference", "[", "34", "]", "proposed", "generating", "adversarial", "examples", "of", "the", "DREBIN", "Android", "malware", "dataset", "and", "claimed", "up", "to", "an", "84", "%", "misclassification", "rate", "."], "ner": [[10, 10, "Material"], [11, 12, "Other Scientific Term"], [12, 12, "Other Scientific Term"], [21, 22, "Metric"]], "relations": [[1, 2, "Hyponym-of"], [3, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Group", "activity", "recognition", "in", "sports", "is", "often", "challenging", "due", "to", "the", "complex", "dynamics", "and", "interaction", "among", "the", "players", "."], "ner": [[0, 2, "Task"], [2, 2, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Compared", "with", "the", "disappointing", "results", "of", "joint", "learning", "on", "syntactic", "and", "semantic", "parsing", ",", "Miller", "et", "al", ".", "(", "2000", ")", "and", "Finkel", "and", "Manning", "(", "2009", ")", "showed", "the", "effectiveness", "of", "joint", "learning", "on", "syntactic", "parsing", "and", "some", "simple", "NLP", "tasks", ",", "such", "as", "information", "extraction", "and", "name", "entity", "recognition", "."], "ner": [[6, 7, "Method"], [11, 12, "Task"], [12, 12, "Task"], [32, 33, "Method"], [35, 36, "Task"], [36, 36, "Task"], [40, 40, "Task"], [45, 46, "Task"], [46, 46, "Task"], [48, 50, "Task"], [48, 49, "Other Scientific Term"], [49, 49, "Other Scientific Term"], [50, 50, "Task"], [9, 9, 12, 12, "Task"]], "relations": [[1, 2, "Hyponym-of"], [13, 2, "Hyponym-of"], [1, 5, "Hyponym-of"], [13, 5, "Hyponym-of"], [2, 5, "Synonymy-of"], [9, 12, "Hyponym-of"], [10, 11, "Synonymy-of"], [7, 8, "Hyponym-of"], [7, 6, "Hyponym-of"], [9, 6, "Hyponym-of"], [0, 3, "Synonymy-of"], [0, 13, "Used-for"], [0, 1, "Used-for"], [0, 4, "Used-for"], [0, 7, "Used-for"], [0, 9, "Used-for"], [3, 13, "Used-for"], [3, 1, "Used-for"], [3, 4, "Used-for"], [3, 7, "Used-for"], [3, 9, "Used-for"], [4, 2, "Hyponym-of"], [4, 5, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["Also", "because", "of", "such", "parallel", "processing", ",", "PPFNet", "is", "very", "fast", "in", "inference", "."], "ner": [[4, 5, "Method"], [7, 7, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "firstly", "briefly", "review", "the", "two", "major", "building", "blocks", "regarding", "the", "representations", "of", "temporal", "and", "spatial", "priors", "."], "ner": [[15, 16, "Other Scientific Term"], [16, 16, "Other Scientific Term"], [13, 13, 16, 16, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 1, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["We", "have", "proposed", "in", "this", "paper", "a", "new", "method", "to", "remove", "texture", "in", "images", "by", "pixel", "classification", "using", "a", "rotating", "smoothing", "filter", "."], "ner": [[11, 11, "Other Scientific Term"], [15, 16, "Task"], [16, 16, "Task"], [19, 21, "Method"], [20, 21, "Method"], [21, 21, "Method"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [4, 5, "Hyponym-of"], [3, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "figure", "also", "shows", "that", "the", "guided", "Expansion", "algorithm", "is", "able", "to", "find", "a", "lower", "-", "energy", "solution", "much", "more", "quickly", "compared", "to", "the", "standard", "method", "."], "ner": [[6, 8, "Method"], [7, 8, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["To", "answer", "this", "question", ",", "we", "present", "an", "iterative", "method", "to", "promote", "temporal", "smoothness", "on", "the", "SABR", "weights", "by", "imposing", "constraints", "on", "how", "many", "anchors", "can", "be", "active", "over", "an", "analysis", "window", "."], "ner": [[8, 9, "Method"], [12, 13, "Other Scientific Term"], [13, 13, "Other Scientific Term"], [16, 16, "Method"], [16, 17, "Other Scientific Term"], [30, 31, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [5, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "approach", "offers", "additional", "flexibility", "in", "how", "the", "temporal", "annotation", "data", "can", "be", "used", "."], "ner": [[8, 10, "Other Scientific Term"], [9, 10, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Furthermore", ",", "model", "explainability", "techniques", "can", "either", "be", "applicable", "to", "a", "specific", "model", "type", "(", "model", "-", "specific", ")", "or", "to", "a", "variety", "of", "different", "models", "(", "model", "-", "agnostic", ")", "."], "ner": [[2, 4, "Method"], [2, 3, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "have", "proposed", "a", "new", "simple", "shading", "-", "correction", "algorithm", "that", "transforms", "the", "image", "to", "a", "new", "image", "that", "better", "satisfies", "the", "assumptions", "typically", "needed", "by", "existing", "SFS", "algorithms", "."], "ner": [[6, 9, "Method"], [6, 8, "Task"], [27, 27, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "sets", "it", "apart", "from", "existing", "folding", "algorithms", ",", "which", "are", "typically", "based", "on", "Monte", "Carlo", "simulations", ",", "and", "can", "only", "sample", "one", "possible", "trajectory", "."], "ner": [[6, 7, "Method"], [14, 16, "Method"], [21, 21, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "is", "implemented", "by", "extending", "the", "Spejd", "shallow", "parsing", "framework", "(", "Buczyński", "and", "Przepiórkowski", ",", "2009", ")", "with", "a", "rule", "action", "that", "is", "able", "to", "generate", "phrase", "lemmas", "."], "ner": [[6, 8, "Method"], [7, 8, "Task"], [8, 8, "Task"], [19, 20, "Other Scientific Term"], [26, 27, "Other Scientific Term"], [27, 27, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"], [4, 5, "Hyponym-of"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Finally", ",", "we", "evaluate", "the", "proposed", "method", "on", "person", "re", "-", "ID", "and", "show", "that", "the", "learned", "embeddings", "demonstrate", "a", "consistent", "improvement", "over", "the", "strong", "ResNet", "baseline", "."], "ner": [[8, 11, "Task"], [9, 11, "Task"], [17, 17, "Other Scientific Term"], [25, 25, "Method"], [26, 26, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [3, 0, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "form", "of", "pseudo", "ground", "-", "truth", "is", "accurate", "enough", "to", "enable", "quantitative", "evaluations", "for", "models", "of", "body", ",", "hands", "and", "faces", "together", "."], "ner": [[3, 6, "Other Scientific Term"], [4, 6, "Other Scientific Term"], [13, 13, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "work", ",", "we", "propose", "a", "more", "efficient", "approach", "to", "handle", "table", "-", "related", "tokens", "before", "the", "semantic", "parser", "."], "ner": [[15, 15, "Other Scientific Term"], [18, 19, "Method"], [19, 19, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["It", "proofs", "that", "the", "dependency", "tree", "is", "important", "in", "the", "opinion", "relation", "extraction", "."], "ner": [[4, 5, "Other Scientific Term"], [5, 5, "Other Scientific Term"], [10, 12, "Task"], [10, 11, "Other Scientific Term"], [11, 12, "Task"], [12, 12, "Task"]], "relations": [[2, 4, "Hyponym-of"], [4, 5, "Hyponym-of"], [0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "report", "on", "the", "first", "structured", "distributional", "semantic", "model", "for", "Croatian", ",", "DM", "."], "ner": [[5, 8, "Method"], [6, 8, "Method"], [7, 8, "Method"], [12, 12, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "have", "also", "tried", "larger", "latent", "space", "like", "VAE-10000", ",", "and", "it", "can", "reconstruct", "the", "ground", "truth", "masks", "almost", "perfectly", "."], "ner": [[5, 6, "Other Scientific Term"], [8, 8, "Method"], [15, 16, "Other Scientific Term"]], "relations": [[1, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "goal", "of", "the", "task", "is", "to", "advance", "data", "-", "driven", "parsing", "into", "graph", "-", "structured", "representations", "of", "sentence", "meaning", "."], "ner": [[8, 11, "Method"], [11, 11, "Task"], [13, 16, "Method"]], "relations": [[0, 1, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Taking", "these", "studies", "together", ",", "the", "thesis", "uses", "NLI", "to", "support", "and", "inform", "topics", "in", "SLA", ",", "and", "conversely", ",", "we", "connect", "principles", "in", "SLA", "to", "NLI", "by", "expanding", "and", "building", "new", "NLI", "models", "."], "ner": [[8, 8, "Method"], [15, 15, "Task"], [24, 24, "Task"], [26, 26, "Task"], [32, 33, "Method"], [32, 32, "Task"]], "relations": [[0, 1, "Used-for"], [0, 2, "Used-for"], [1, 2, "Synonymy-of"], [3, 5, "Synonymy-of"], [4, 3, "Used-for"], [4, 5, "Used-for"], [4, 1, "Used-for"], [4, 2, "Used-for"], [0, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "apply", "this", "approach", "to", "reduce", "the", "run", "-", "time", "of", "our", "forced", "derivation", "procedure", "."], "ner": [[7, 9, "Metric"], [12, 13, "Method"], [13, 13, "Method"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["The", "DVSNet", "framework", "consists", "of", "two", "major", "parts", ":", "a", "segmentation", "path", "and", "a", "spatial", "warping", "path", "."], "ner": [[1, 1, "Method"], [10, 11, "Other Scientific Term"], [14, 16, "Other Scientific Term"]], "relations": [[1, 0, "Part-for"], [2, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "presents", "a", "novel", "3D", "non", "-", "rigid", "registration", "algorithm", "between", "histological", "and", "MR", "images", "of", "the", "prostate", "."], "ner": [[5, 9, "Method"], [6, 9, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "begin", "by", "dramatically", "increasing", "the", "size", "of", "our", "SMT", "phrase", "table", "in", "order", "to", "expand", "its", "coverage", "and", "then", "use", "non", "-", "parallel", "data", "to", "rescore", "and", "filter", "the", "table", "."], "ner": [[9, 11, "Other Scientific Term"], [9, 9, "Method"], [10, 11, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "the", "matching", "procedure", "is", "hand", "-", "tuned", ",", "while", "potentially", "useful", "surface", "information", ",", "such", "as", "depth", "and", "normals", ",", "is", "ignored", "."], "ner": [[3, 3, "Task"], [13, 14, "Other Scientific Term"], [18, 18, "Other Scientific Term"], [20, 20, "Other Scientific Term"]], "relations": [[2, 1, "Hyponym-of"], [3, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Using", "L1", "-", "orthogonal", "regularization", "during", "training", ",", "however", ",", "preserves", "the", "accuracy", "of", "the", "NN", ",", "while", "it", "can", "be", "closely", "approximated", "by", "small", "decision", "trees", "."], "ner": [[1, 4, "Method"], [4, 4, "Method"], [12, 12, "Metric"], [15, 15, "Method"], [25, 26, "Method"], [26, 26, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Evaluate-for"], [5, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["For", "example", ",", "WordNetAffect", "(", "Strapparava", "and", "Valitutti", ",", "2004", ")", "was", "constructed", "by", "extending", "Wordnet", ",", "a", "lexical", "database", "of", "English", "terms", ",", "with", "information", "on", "affective", "terms", "."], "ner": [[3, 3, "Material"], [15, 15, "Material"], [18, 19, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["For", "the", "comparison", "on", "these", "problems", ",", "we", "extend", "some", "existing", "zero", "-", "shot", "classification", "algorithms", "and", "consider", "some", "variations", "of", "our", "own", "approach", "."], "ner": [[11, 15, "Method"], [11, 14, "Task"], [14, 15, "Method"], [14, 14, "Task"]], "relations": [[0, 2, "Hyponym-of"], [1, 3, "Hyponym-of"], [0, 1, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["While", "this", "is", "the", "case", ",", "the", "MLP", "part", "of", "the", "embedding", "still", "plays", "a", "crucial", "role", "in", "shaping", "the", "RNN", "embeddings", "and", "remains", "a", "crucial", "component", "of", "our", "model", "."], "ner": [[7, 7, "Method"], [11, 11, "Method"], [20, 21, "Other Scientific Term"], [20, 20, "Method"], [21, 21, "Other Scientific Term"]], "relations": [[2, 4, "Hyponym-of"], [0, 1, "Part-for"]], "discontinuous": false}
{"tokens": ["Their", "superiority", "goes", "beyond", "measures", "of", "performance", ":", "iterative", "classifiers", "are", "simpler", "to", "implement", ",", "and", "more", "efficient", "."], "ner": [[8, 9, "Method"], [9, 9, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Experimental", "results", "on", "challenging", "videos", "demonstrate", "the", "effectiveness", "and", "robustness", "of", "the", "proposed", "tracker", "."], "ner": [[9, 9, "Metric"], [13, 13, "Method"]], "relations": [[0, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "both", "works", ",", "a", "3D", "representation", "of", "the", "scene", "is", "obtained", "by", "estimating", "depth", "maps", "from", "multiple", "views", "and", "converting", "them", "to", "triangle", "meshes", "based", "on", "the", "respective", "neighborhood", "connectivity", "."], "ner": [[5, 6, "Other Scientific Term"], [9, 9, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [18, 18, "Other Scientific Term"], [23, 24, "Other Scientific Term"], [24, 24, "Other Scientific Term"], [29, 30, "Other Scientific Term"], [30, 30, "Other Scientific Term"]], "relations": [[4, 5, "Hyponym-of"], [6, 7, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["With", "the", "utilization", "of", "prior", "information", ",", "NNLRR", "encodes", "label", "information", "with", "graph", "-", "based", "regularization", "to", "seek", "low", "-", "rank", "and", "sparse", "representation", "simultaneously", "with", "nonnegativity", "constraints", "."], "ner": [[4, 4, "Other Scientific Term"], [7, 7, "Method"], [12, 15, "Method"], [15, 15, "Method"], [22, 23, "Method"], [26, 27, "Other Scientific Term"], [18, 20, 23, 23, "Method"]], "relations": [[2, 3, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": true}
{"tokens": ["The", "proposed", "framework", "utilizes", "a", "novel", "lightweight", "stackable", "decoder", "-", "encoder", "module", "which", "uses", "convolutional", "re", "-", "sampling", "layers", "to", "improve", "features", "while", "maintaining", "efficient", "memory", "and", "runtime", "cost", "."], "ner": [[6, 10, "Method"], [7, 10, "Method"], [8, 10, "Method"], [14, 18, "Other Scientific Term"], [14, 17, "Method"], [15, 17, "Method"], [27, 28, "Metric"], [25, 25, 28, 28, "Metric"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [4, 5, "Hyponym-of"], [4, 0, "Used-for"], [7, 0, "Evaluate-for"], [6, 0, "Evaluate-for"], [3, 0, "Used-for"]], "discontinuous": true}
{"tokens": ["This", "leads", "to", "a", "challenge", "of", "deploying", "NMT", "models", "on", "the", "devices", "with", "limited", "computation", "and", "memory", "budgets", "."], "ner": [[7, 8, "Method"], [7, 7, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "work", "also", "considers", "that", "puns", "consist", "of", "homophonic", "and", "homographic", "puns", "."], "ner": [[5, 5, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [11, 11, "Other Scientific Term"], [8, 8, 11, 11, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [3, 2, "Hyponym-of"], [1, 0, "Hyponym-of"], [3, 0, "Hyponym-of"], [0, 2, "Synonymy-of"]], "discontinuous": true}
{"tokens": ["For", "that", "purpose", ",", "the", "autoencoders", "are", "pre", "-", "trained", "layer", "by", "layer", ",", "with", "the", "current", "layer", "being", "fed", "the", "latent", "representation", "of", "the", "previous", "autoencoder", "as", "input", "."], "ner": [[5, 5, "Method"], [21, 22, "Other Scientific Term"], [26, 26, "Method"]], "relations": [[0, 2, "Synonymy-of"], [1, 0, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "addition", ",", "we", "present", "a", "Bayesian", "integration", "method", "to", "combine", "saliency", "maps", "constructed", "from", "dense", "and", "sparse", "reconstruction", "."], "ner": [[6, 7, "Method"], [7, 7, "Method"], [11, 12, "Other Scientific Term"], [17, 18, "Method"], [15, 15, 18, 18, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["Future", "work", "should", "focus", "on", "improved", "labels", ",", "such", "as", "those", "from", "dynamic", "analysis", "tools", "or", "mined", "from", "security", "patches", "."], "ner": [[12, 13, "Method"], [18, 19, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "are", "interested", "in", "exploring", "Deep", "Neural", "Network", "(", "DNN", ")", "based", "speaker", "embedding", "for", "Random", "-", "digit", "task", "using", "content", "information", "."], "ner": [[9, 11, "Method"], [9, 17, "Other Scientific Term"], [10, 11, "Method"], [13, 13, "Method"], [16, 17, "Other Scientific Term"], [17, 17, "Other Scientific Term"], [19, 22, "Task"], [24, 25, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [0, 3, "Synonymy-of"], [3, 2, "Hyponym-of"], [4, 5, "Hyponym-of"], [4, 0, "Used-for"], [4, 3, "Used-for"], [0, 6, "Used-for"], [3, 6, "Used-for"], [7, 6, "Used-for"], [1, 4, "Hyponym-of"], [1, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["Not", "only", "can", "sense", "selection", "tasks", "such", "as", "word", "sense", "disambiguation", ",", "parsing", ",", "and", "semantic", "analysis", "benefit", "from", "our", "framework", ",", "but", "more", "inference", "-", "oriented", "tasks", "such", "as", "question", "answering", "and", "text", "summarization", "as", "well", "."], "ner": [[3, 4, "Task"], [4, 4, "Task"], [8, 10, "Task"], [10, 10, "Task"], [12, 12, "Task"], [15, 16, "Task"], [16, 16, "Task"], [24, 27, "Task"], [30, 31, "Task"], [33, 34, "Task"], [34, 34, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [5, 6, "Hyponym-of"], [9, 10, "Hyponym-of"], [2, 0, "Hyponym-of"], [4, 0, "Hyponym-of"], [5, 0, "Hyponym-of"], [8, 7, "Hyponym-of"], [9, 7, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "extend", "the", "scope", "of", "question", "and", "answer", "detection", "and", "pairing", "to", "encompass", "also", "questions", "in", "imperative", "and", "declarative", "forms", ",", "and", "to", "operate", "at", "sentence", "-", "level", "fidelity", "."], "ner": [[8, 8, "Task"], [10, 10, "Task"], [5, 7, 10, 10, "Task"], [5, 8, "Task"]], "relations": [[3, 0, "Hyponym-of"], [2, 1, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["This", "paper", "works", "to", "improve", "the", "tags", "and", "boundaries", "of", "the", "Bengali", "verb", "chunks", "returned", "by", "the", "data", "driven", "chunker", "in", "order", "to", "improve", "the", "machine", "translation", "quality", "."], "ner": [[12, 12, "Other Scientific Term"], [17, 19, "Method"], [19, 19, "Method"], [25, 26, "Task"]], "relations": [[1, 2, "Hyponym-of"], [1, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "a", "numerical", "study", ",", "we", "demonstrate", "the", "ability", "of", "our", "bounds", "to", "roughly", "predict", "the", "threshold", "SNR", "of", "practical", "estimators", "."], "ner": [[16, 17, "Metric"], [17, 17, "Metric"], [20, 20, "Method"]], "relations": [[0, 2, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "all", "cases", ",", "the", "statistics", "computed", "on", "deformations", "can", "be", "turned", "into", "a", "new", "metric", "in", "the", "tangent", "space", "of", "the", "mean", "pattern", ",", "acting", "as", "a", "deformation", "prior", "on", "one", "particular", "shape", "."], "ner": [[8, 8, "Other Scientific Term"], [18, 19, "Other Scientific Term"], [22, 23, "Other Scientific Term"], [28, 29, "Other Scientific Term"], [28, 28, "Other Scientific Term"], [29, 29, "Other Scientific Term"]], "relations": [[0, 4, "Synonymy-of"], [3, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "novel", "active", "learning", "strategy", "dynamically", "combines", "influence", "and", "uncertainty", "cues", ",", "where", "the", "uncertainty", "is", "measured", "with", "our", "proposed", "multiple", "peak", "entropy", "that", "favours", "images", "with", "multiple", "weak", "local", "peaks", "in", "their", "predicted", "heat", "maps", "."], "ner": [[2, 3, "Method"], [20, 22, "Other Scientific Term"], [22, 22, "Other Scientific Term"], [28, 30, "Other Scientific Term"], [29, 30, "Other Scientific Term"], [34, 35, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "have", "addressed", "spatio", "-", "temporal", "person", "retrieval", "from", "multiple", "videos", "using", "natural", "language", "queries", "."], "ner": [[7, 11, "Task"], [10, 11, "Task"], [11, 11, "Task"], [16, 18, "Method"]], "relations": [[0, 1, "Hyponym-of"], [3, 0, "Used-for"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Moreover", ",", "we", "feed", "not", "only", "the", "enhanced", "feature", "but", "also", "the", "latent", "code", "from", "the", "DVAE", "into", "the", "VAD", "network", "."], "ner": [[12, 13, "Other Scientific Term"], [16, 16, "Method"], [19, 20, "Method"], [19, 19, "Task"]], "relations": [[2, 3, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "main", "idea", "is", "to", "exploit", "a", "feedback", "mechanism", "to", "self", "-", "generate", "training", "instances", "where", "they", "are", "needed", "most", ",", "thereby", "learning", "models", "that", "can", "generalize", "across", "difficulty", "levels", "."], "ner": [[7, 8, "Method"], [7, 7, "Method"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "showed", "that", "our", "novel", "crowd", "-", "sourcing", "data", "collection", "framework", "was", "valid", ",", "and", "could", "be", "used", "to", "easily", "scale", "up", "listening", "behaviour", "representing", "different", "psychological", "conditions", "."], "ner": [[5, 10, "Method"], [5, 9, "Task"], [8, 10, "Method"], [8, 9, "Task"]], "relations": [[0, 2, "Hyponym-of"], [1, 3, "Hyponym-of"], [0, 1, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "particular", ",", "given", "an", "optimal", "pairwise", "bilingual", "ranking", ",", "we", "show", "that", "simple", "heuristics", "can", "effectively", "approximate", "the", "optimal", "monolingual", "ranking", "."], "ner": [[6, 8, "Other Scientific Term"], [7, 8, "Other Scientific Term"], [14, 14, "Method"], [20, 21, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Although", "the", "coverage", "and", "the", "quality", "of", "the", "annotations", "from", "open", "GIS", "vary", "a", "lot", "depending", "on", "the", "users", "'", "knowledge", "and", "number", "of", "contributors", ",", "this", "data", "may", "contain", "relevant", "information", "for", "mapping", "specific", "areas", "and", "classes", "."], "ner": [[10, 11, "Method"], [11, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Since", "a", "good", "video", "model", "must", "also", "support", "effective", "transfer", "learning", "to", "other", "datasets", ",", "we", "include", "results", "obtained", "by", "pretraining", "our", "models", "on", "Sports-1", "M", "and", "Kinetics", ",", "and", "finetuning", "them", "on", "UCF101", "[", "31", "]", "and", "HMDB51", "[", "20", "]", "."], "ner": [[3, 4, "Method"], [9, 10, "Method"], [24, 25, "Material"], [27, 27, "Material"], [33, 33, "Material"], [38, 38, "Material"]], "relations": [[1, 2, "Used-for"], [1, 3, "Used-for"], [1, 4, "Used-for"], [1, 5, "Used-for"], [0, 2, "Used-for"], [0, 3, "Used-for"], [0, 4, "Used-for"], [0, 5, "Used-for"]], "discontinuous": false}
{"tokens": ["One", "standard", "corpus", "used", "to", "develop", "new", "domain", "adaptation", "algorithms", "is", "the", "Amazon", "sentiment", "analysis", "dataset", "."], "ner": [[7, 9, "Method"], [7, 8, "Task"], [8, 8, "Task"], [8, 9, "Method"], [13, 14, "Task"], [14, 14, "Task"]], "relations": [[0, 3, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "implies", "that", "these", "automatically", "discovered", "acoustic", "tokens", "correlate", "well", "to", "underlying", "linguistic", "units", "such", "as", "phonemes", "."], "ner": [[6, 7, "Other Scientific Term"], [7, 7, "Other Scientific Term"], [12, 13, "Other Scientific Term"], [16, 16, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [3, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "optimization", "problem", "can", "be", "efficiently", "solved", "by", "blockwise", "gradient", "descent", "."], "ner": [[1, 1, "Task"], [8, 10, "Method"], [9, 10, "Method"], [9, 9, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "investigate", "further", "and", "find", "that", "untrained", "models", "outperform", "trained", "ones", "on", "the", "task", "of", "neighboring", "word", "identity", "prediction", ",", "which", "confirms", "that", "trained", "encoders", "do", "not", "perform", "well", "on", "tagging", "tasks", "because", "the", "classifiers", "are", "simply", "memorizing", "word", "identity", "information", "."], "ner": [[15, 18, "Task"], [15, 16, "Other Scientific Term"], [18, 18, "Task"], [24, 24, "Method"], [30, 30, "Task"], [34, 34, "Method"]], "relations": [[0, 2, "Hyponym-of"], [3, 0, "Used-for"], [3, 4, "Used-for"], [5, 4, "Used-for"], [5, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "semantic", "models", "are", "typically", "studied", "in", "the", "context", "of", "natural", "language", "processing", "system", "performance", "."], "ner": [[2, 3, "Method"], [11, 14, "Method"], [11, 13, "Task"]], "relations": [[1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "describes", "the", "steps", "and", "decisions", "made", "towards", "a", "UD", "treebank", "for", "Shipibo", "-", "Konibo", "."], "ner": [[10, 10, "Material"], [11, 11, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Partially", "inspired", "by", "their", "study", ",", "we", "introduce", "a", "term", "translation", "consistency", "metric", "with", "document", "-", "informed", "information", "."], "ner": [[9, 10, "Task"], [11, 11, "Metric"], [14, 17, "Other Scientific Term"]], "relations": [[1, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Typically", ",", "NMT", "adopts", "the", "encoder", "-", "decoder", "architecture", "and", "generates", "the", "target", "translation", "from", "left", "to", "right", "."], "ner": [[2, 2, "Method"], [5, 8, "Other Scientific Term"], [5, 7, "Method"]], "relations": [[2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "same", "issue", "is", "found", "in", "another", "relevant", "lexical", "task", ",", "Cross", "-", "lingual", "Semantic", "Similarity", "."], "ner": [[11, 15, "Task"], [14, 15, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Another", "important", "property", "is", "the", "amenability", "of", "ES", "to", "formal", "verification", "and", "analysis", "."], "ner": [[7, 7, "Method"], [9, 10, "Task"], [10, 10, "Task"], [12, 12, "Task"], [9, 9, 12, 12, "Task"]], "relations": [[1, 2, "Hyponym-of"], [4, 3, "Hyponym-of"], [0, 4, "Used-for"], [0, 1, "Used-for"]], "discontinuous": true}
{"tokens": ["We", "then", "asses", "the", "scorability", "of", "the", "corpus", "by", "a", "series", "of", "experiments", "using", "a", "supervised", "machine", "learning", "system", "with", "a", "standard", "feature", "set", "."], "ner": [[15, 17, "Method"], [16, 17, "Method"], [21, 23, "Other Scientific Term"], [22, 23, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "shared", "common", "layer", "takes", "MFCC", "features", "as", "input", "and", "the", "output", "is", "distributed", "to", "both", "speaker", "and", "utterance", "modeling", "layers", "."], "ner": [[5, 6, "Other Scientific Term"], [5, 5, "Other Scientific Term"], [18, 19, "Task"], [19, 19, "Task"], [16, 16, 19, 19, "Task"]], "relations": [[2, 3, "Hyponym-of"], [4, 3, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["In", "this", "paper", "we", "propose", "a", "novel", "MTL", "algorithm", "for", "QE", "that", "learns", "the", "structure", "shared", "by", "different", "tasks", "in", "an", "online", "fashion", "and", "from", "an", "input", "stream", "of", "instances", "from", "all", "the", "tasks", "."], "ner": [[7, 7, "Method"], [10, 10, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "investigate", "the", "issue", "of", "cross", "-", "dataset", "generalization", "in", "Visual", "QA", "."], "ner": [[9, 12, "Task"], [12, 12, "Task"], [14, 15, "Task"], [15, 15, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "basic", "idea", "is", "to", "simplify", "channel", "estimation", "and", "data", "detection", "processes", "by", "taking", "advantage", "of", "the", "null", "-", "space", "and", "orthogonality", "properties", "of", "the", "data", "-", "bearer", "and", "pilot", "matrices", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"], [9, 10, "Task"], [10, 10, "Task"], [17, 19, "Other Scientific Term"], [21, 22, "Other Scientific Term"], [29, 30, "Other Scientific Term"], [25, 27, 30, 30, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["Here", ",", "we", "will", "use", "an", "all", "pole", "model", "that", "has", "been", "obtained", "after", "modeling", "a", "speech", "segment", "using", "LPC", "technique", ",", "to", "produce", "the", "synthetic", "speech", "signal", "by", "passing", "three", "different", "types", "of", "excitations", "through", "it", "."], "ner": [[6, 8, "Method"], [7, 7, "Other Scientific Term"], [19, 19, "Method"], [25, 27, "Other Scientific Term"], [26, 27, "Other Scientific Term"], [34, 34, "Other Scientific Term"]], "relations": [[2, 0, "Used-for"], [5, 0, "Used-for"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["These", "approaches", "make", "use", "of", "existing", "codebases", "for", "adaptive", "learning", "-", "rate", "methods", "to", "perform", "VI", ",", "which", "can", "handle", "many", "network", "architectures", "and", "can", "scale", "well", "to", "large", "datasets", "."], "ner": [[6, 6, "Other Scientific Term"], [8, 12, "Method"], [9, 11, "Other Scientific Term"], [15, 15, "Method"], [21, 22, "Other Scientific Term"]], "relations": [[1, 3, "Used-for"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "system", "is", "able", "to", "generate", "promising", "scene", "parsing", "results", "if", "images", "from", "the", "same", "scene", "category", "are", "retrieved", "in", "the", "annotated", "database", "."], "ner": [[7, 8, "Task"], [7, 7, "Other Scientific Term"], [8, 8, "Task"], [22, 22, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "implementation", "framework", "is", "to", "decompose", "one", "multi", "-", "class", "problem", "into", "multiple", "binary", "problems", "and", "then", "learn", "the", "individual", "binary", "classification", "problems", "by", "centroid", "classifier", "."], "ner": [[7, 10, "Task"], [20, 21, "Task"], [21, 21, "Task"], [24, 25, "Method"], [25, 25, "Method"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "kernels", "in", "the", "last", "layer", "are", "more", "likely", "to", "affect", "the", "adequate", "backpropagation", "of", "error", "information", "."], "ner": [[1, 1, "Other Scientific Term"], [13, 13, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "focus", "on", "sparse", "coding", "as", "the", "building", "block", "of", "CVS", "is", "largely", "inspired", "by", "its", "appealing", "property", "in", "modeling", "sparsity", "and", "representativeness", "in", "data", "summarization", "."], "ner": [[3, 4, "Method"], [10, 10, "Method"], [20, 20, "Other Scientific Term"], [24, 25, "Task"], [25, 25, "Task"]], "relations": [[3, 4, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Due", "to", "large", "variations", "in", "entity", "names", "and", "flexibility", "in", "entity", "mentions", ",", "NER", "has", "been", "a", "challenging", "task", "in", "NLP", "."], "ner": [[5, 5, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [10, 10, "Other Scientific Term"], [11, 11, "Other Scientific Term"], [13, 13, "Task"], [20, 20, "Task"]], "relations": [[0, 2, "Synonymy-of"], [4, 5, "Hyponym-of"], [1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "approach", "leverages", "on", "a", "Cauchy", "-", "Uniform", "mixture", "model", "to", "simultaneously", "suppress", "outlier", "feature", "matches", "and", "loop", "-", "closures", "."], "ner": [[5, 9, "Method"], [13, 15, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [17, 19, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Additionally", "we", "expect", "a", "code", "that", "lies", "on", "a", "regularized", "smooth", "space", ",", "such", "as", "the", "code", "produced", "by", "the", "ARAE", ",", "to", "be", "more", "useful", "than", "a", "code", "that", "does", "not", "."], "ner": [[9, 11, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [20, 20, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "proposed", "a", "tree", "-", "based", "model", "to", "make", "full", "use", "of", "sentences", "'", "structural", "information", "."], "ner": [[7, 10, "Method"], [18, 19, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["These", "gradient", "based", "methods", "suffer", "from", "high", "computational", "complexity", "and", "slow", "recovery", "speed", "."], "ner": [[1, 1, "Other Scientific Term"], [1, 3, "Method"], [7, 8, "Metric"], [8, 8, "Metric"], [11, 12, "Metric"], [12, 12, "Metric"]], "relations": [[2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [2, 1, "Evaluate-for"], [4, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Video", "understanding", "tasks", ",", "such", "as", "video", "object", "detection", "and", "activity", "recognition", ",", "are", "important", "for", "many", "societal", "applications", "of", "computer", "vision", "including", "robot", "perception", ",", "smart", "cities", ",", "medical", "analysis", ",", "and", "more", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"], [7, 8, "Task"], [8, 8, "Task"], [10, 11, "Task"], [11, 11, "Task"], [20, 21, "Task"], [6, 8, "Task"], [6, 6, 10, 11, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [0, 6, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["However", ",", "the", "insufficiency", "of", "these", "metrics", "becomes", "apparent", ",", "when", "one", "applies", "them", "to", "the", "multilingual", "search", "."], "ner": [[16, 17, "Task"], [17, 17, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Over", "the", "last", "few", "years", ",", "speech", "synthesis", "research", "has", "moved", "from", "using", "unit", "selection", "speech", "synthesis", "technology", ",", "where", "subword", "instances", "of", "speech", "are", "selected", "from", "large", "databases", "of", "natural", "speech", ",", "to", "a", "new", "technology", "called", "Statistical", "Parametric", "Speech", "Synthesis", "(", "SPSS", "or", "HMM", "synthesis", ")", ",", "where", "generative", "models", "of", "speech", "are", "constructed", "."], "ner": [[6, 7, "Task"], [13, 16, "Method"], [15, 16, "Task"], [28, 28, "Other Scientific Term"], [38, 41, "Method"], [40, 41, "Task"], [43, 43, "Method"], [45, 46, "Method"], [45, 45, "Method"], [50, 51, "Method"]], "relations": [[0, 2, "Synonymy-of"], [0, 5, "Synonymy-of"], [2, 5, "Synonymy-of"], [1, 2, "Used-for"], [1, 0, "Used-for"], [1, 5, "Used-for"], [4, 5, "Used-for"], [4, 2, "Used-for"], [4, 0, "Used-for"], [4, 6, "Synonymy-of"], [6, 5, "Used-for"], [6, 2, "Used-for"], [6, 0, "Used-for"], [8, 7, "Used-for"], [7, 5, "Used-for"], [7, 2, "Used-for"], [7, 0, "Used-for"], [9, 4, "Part-for"], [9, 6, "Part-for"]], "discontinuous": false}
{"tokens": ["The", "experiments", "are", "restricted", "to", "only", "polysemous", "nouns", "."], "ner": [[6, 7, "Other Scientific Term"], [7, 7, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "these", "methods", "either", "rely", "on", "combinations", "of", "attention", "maps", "of", "one", "trained", "network", "for", "different", "erased", "steps", "or", "attentions", "of", "different", "networks", "."], "ner": [[9, 10, "Other Scientific Term"], [9, 9, "Method"], [20, 20, "Method"]], "relations": [[1, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["It", "is", "important", "to", "note", "that", "the", "training", "of", "the", "classifier", ",", "which", "uses", "the", "4000", "items", "mentioned", "above", ",", "is", "to", "be", "distinguished", "from", "the", "training", "of", "the", "sentence", "embedding", "methods", "."], "ner": [[10, 10, "Method"], [29, 30, "Method"], [30, 30, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "the", "future", ",", "we", "would", "like", "to", "explore", "our", "proposed", "loss", "to", "other", "retrieval", "tasks", "such", "as", "person", "re", "-", "identification", ",", "face", "recognition", "and", "content", "-", "based", "image", "retrieval", "."], "ner": [[14, 14, "Task"], [18, 21, "Task"], [19, 21, "Task"], [23, 24, "Task"], [24, 24, "Task"], [26, 30, "Task"], [29, 30, "Task"], [30, 30, "Task"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [6, 7, "Hyponym-of"], [1, 0, "Hyponym-of"], [3, 0, "Hyponym-of"], [5, 0, "Hyponym-of"], [1, 7, "Hyponym-of"], [3, 7, "Hyponym-of"], [5, 7, "Hyponym-of"], [0, 7, "Synonymy-of"], [6, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "development", "of", "deep", "learning", "models", "offers", "more", "possibilities", "to", "recommender", "system", "architectures", "."], "ner": [[3, 4, "Method"], [10, 11, "Task"], [10, 12, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Generally", "speaking", ",", "model", "compression", "techniques", "fall", "into", "four", "categories", "."], "ner": [[3, 5, "Method"], [3, 4, "Task"], [4, 4, "Task"], [4, 5, "Method"]], "relations": [[0, 3, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "problem", "with", "using", "articulated", "models", "is", "the", "high", "dimensionality", "of", "the", "configuration", "space", "and", "the", "exponentially", "increasing", "computational", "cost", "that", "results", "."], "ner": [[4, 5, "Method"], [12, 13, "Other Scientific Term"], [18, 19, "Metric"]], "relations": [[2, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["We", "described", "a", "deep", "learning", "approach", "to", "solve", "the", "problem", "of", "topic", "-", "specific", "sentiment", "analysis", "on", "twitter", "."], "ner": [[3, 4, "Method"], [11, 15, "Task"], [14, 15, "Task"], [15, 15, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "approach", "yielded", "95", "%", "accuracy", "for", "union", "tasks", ",", "and", "while", "intersection", "fusion", "accuracy", "was", "much", "lower", ",", "our", "analysis", "showed", "that", "workers", "sometimes", "provided", "unions", "instead", "of", "intersections", "and", "we", "suspect", "that", "an", "improved", "formulation", "of", "the", "question", "could", "lead", "to", "better", "results", "."], "ner": [[5, 5, "Metric"], [14, 14, "Metric"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "propose", "a", "context", "-", "relevant", "framework", "to", "unify", "the", "two", "kinds", "of", "anomaly", "detection", "."], "ner": [[7, 10, "Method"], [17, 18, "Task"], [18, 18, "Task"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "idea", "of", "using", "consecutive", "user", "queries", "from", "a", "stream", "of", "events", "to", "improve", "ranking", "of", "web", "search", "results", "was", "described", "in", "(", "Radlinski", "and", "Joachims", ",", "2005", ")", "."], "ner": [[5, 6, "Other Scientific Term"], [14, 14, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "goal", "of", "keyword", "extraction", "from", "texts", "is", "to", "provide", "a", "set", "of", "words", "that", "are", "representative", "of", "the", "semantic", "content", "of", "the", "texts", "."], "ner": [[3, 4, "Task"], [4, 4, "Task"], [19, 20, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Hypothesis", "mixture", "decoding", "(", "Duan", "et", "al", ".", ",", "2011", ")", "performs", "a", "second", "decoding", "process", "where", "the", "search", "space", "is", "enriched", "with", "new", "hypotheses", "composed", "out", "of", "existing", "hypotheses", "from", "multiple", "systems", "."], "ner": [[0, 2, "Method"], [1, 2, "Method"], [2, 2, "Task"], [14, 14, "Task"], [18, 19, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Used-for"], [1, 3, "Used-for"], [2, 3, "Synonymy-of"], [0, 2, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "unsigned", "synchrony", "measure", "removes", "such", "a", "distinction", "by", "using", "absolute", "values", ",", "and", "gives", "equal", "importance", "to", "entrainment", "and", "disentrainment", "."], "ner": [[1, 3, "Method"], [2, 3, "Method"], [10, 11, "Other Scientific Term"], [18, 18, "Other Scientific Term"], [20, 20, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "final", "piece", "of", "our", "generative", "model", "is", "a", "prior", "over", "rooted", "trees", "representing", "hierarchies", "."], "ner": [[5, 6, "Method"], [9, 9, "Other Scientific Term"], [11, 12, "Other Scientific Term"], [12, 12, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [1, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["Various", "techniques", "including", "signal", "processing", "and", "deep", "learning", "have", "been", "applied", "to", "speech", "enhancement", "."], "ner": [[3, 4, "Method"], [6, 7, "Method"], [12, 13, "Task"]], "relations": [[0, 2, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "then", "define", "a", "new", "category", "of", "summarization", "task", ",", "aspect", "-", "based", "summarization", ",", "that", "covers", "cases", "like", "the", "law", "example", "above", "."], "ner": [[7, 7, "Task"], [10, 13, "Task"], [13, 13, "Task"]], "relations": [[1, 2, "Hyponym-of"], [1, 0, "Hyponym-of"], [0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Our", "contribution", "is", "a", "novel", "solution", "to", "object", "tracking", "from", "multiple", "video", "cameras", "by", "explicitly", "fusing", "the", "information", "from", "the", "cameras", "into", "a", "joint", "3D", "motion", "calculation", "of", "the", "object", "."], "ner": [[7, 8, "Task"], [8, 8, "Task"], [23, 26, "Method"], [24, 25, "Other Scientific Term"], [24, 26, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 4, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "proposed", "method", "belongs", "to", "the", "supervised", "hashing", "framework", "."], "ner": [[6, 8, "Method"], [6, 7, "Task"], [7, 7, "Task"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Another", "method", "to", "incorporate", "semantic", "contextual", "information", "is", "to", "replace", "ASR", "hypotheses", "used", "in", "language", "adaptation", "with", "outputs", "from", "generative", "models", "for", "dialogue", "completion", "systems", ",", "which", "were", "recently", "proposed", "[", "31", ",", "32", "]", "."], "ner": [[4, 6, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [10, 10, "Task"], [14, 15, "Task"], [15, 15, "Task"], [19, 20, "Method"], [22, 24, "Method"], [22, 23, "Task"], [23, 23, "Task"]], "relations": [[3, 4, "Hyponym-of"], [6, 7, "Used-for"], [7, 8, "Hyponym-of"], [1, 3, "Used-for"], [0, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "have", "derived", "an", "efficient", "and", "scalable", "online", "variational", "inference", "for", "TMKGE", "."], "ner": [[7, 9, "Method"], [8, 9, "Method"], [9, 9, "Task"], [11, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Used-for"], [0, 3, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "presented", "the", "development", "of", "a", "multi", "-", "corpus", "SI", "system", "using", "different", "sets", "of", "articulatory", "trajectories", "provided", "by", "the", "three", "databases", ",", "XRMB", ",", "EMA", "-", "IEEE", ",", "and", "MOCHA", "-", "TIMIT", "."], "ner": [[7, 11, "Method"], [7, 10, "Task"], [10, 10, "Task"], [10, 11, "Method"], [16, 17, "Other Scientific Term"], [22, 22, "Other Scientific Term"], [24, 24, "Material"], [26, 28, "Material"], [31, 33, "Material"]], "relations": [[1, 2, "Hyponym-of"], [3, 2, "Used-for"], [0, 1, "Used-for"], [4, 0, "Used-for"], [0, 3, "Hyponym-of"], [6, 5, "Hyponym-of"], [7, 5, "Hyponym-of"], [8, 5, "Hyponym-of"], [6, 1, "Used-for"], [7, 1, "Used-for"], [8, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "presented", "a", "comparative", "analysis", "of", "classification", "algorithms", "for", "predicting", "the", "next", "type", "of", "resource", "requested", "by", "a", "web", "robot", "."], "ner": [[7, 8, "Method"], [7, 7, "Task"], [19, 20, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "presented", "a", "set", "of", "error", "correction", "methods", "to", "be", "considered", "for", "post", "-", "processing", "of", "the", "output", "of", "a", "lightly", "supervised", "alignment", "system", "."], "ner": [[6, 8, "Method"], [6, 7, "Task"], [21, 23, "Method"], [22, 23, "Method"]], "relations": [[0, 1, "Used-for"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "work", "aims", "to", "leverage", "semantic", "attributes", "in", "video", "captioning", "."], "ner": [[5, 6, "Other Scientific Term"], [8, 9, "Task"], [9, 9, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "propose", "and", "study", "a", "novel", "sparse", ",", "nonparametric", "approach", "exploiting", "the", "theory", "of", "Reproducing", "Kernel", "Hilbert", "Spaces", "for", "vector", "-", "valued", "functions", "."], "ner": [[12, 13, "Method"], [18, 21, "Other Scientific Term"], [19, 19, "Other Scientific Term"], [20, 21, "Other Scientific Term"], [23, 26, "Other Scientific Term"]], "relations": [[1, 3, "Hyponym-of"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "increase", "is", "observed", "relative", "to", "both", "using", "paraphrases", "produced", "by", "the", "same", "resource", "(", "WordNet", ")", "and", "using", "paraphrases", "produced", "from", "multilingual", "parallel", "corpora", "."], "ner": [[8, 8, "Other Scientific Term"], [15, 15, "Material"], [19, 19, "Other Scientific Term"], [22, 24, "Other Scientific Term"], [23, 24, "Other Scientific Term"]], "relations": [[3, 4, "Hyponym-of"], [0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Unlike", "machine", "translation", ",", "in", "the", "case", "of", "compression", "task", ",", "multiple", "input", "sentences", "and", "single", "output", "compression", "usually", "do", "not", "have", "semantic", "equivalence", ",", "which", "complicates", "the", "application", "of", "the", "back", "-", "translation", "technique", "."], "ner": [[1, 2, "Task"], [8, 8, "Task"], [15, 17, "Task"], [17, 17, "Task"], [22, 23, "Other Scientific Term"], [31, 33, "Method"]], "relations": [[2, 3, "Hyponym-of"], [1, 3, "Synonymy-of"], [2, 1, "Hyponym-of"], [5, 2, "Used-for"], [5, 0, "Used-for"], [5, 1, "Used-for"], [5, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "this", "is", "impractical", "due", "to", "the", "relatively", "low", "accuracy", "of", "existing", "denoising", "method", "(", "except", "when", "the", "noise", "level", "is", "extremely", "low", ")", "."], "ner": [[10, 10, "Metric"], [13, 14, "Method"]], "relations": [[0, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Contributions", "Our", "study", "provides", "a", "theoretical", "analysis", "of", "crosslingual", "transfer", "learning", "in", "topic", "models", "."], "ner": [[8, 10, "Task"], [9, 10, "Task"], [12, 13, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Here", "we", "propose", "an", "end", "-", "to", "-", "end", "system", "that", "combines", "open", "-", "domain", "information", "extraction", "(", "IE", ")", "with", "a", "quantitative", "model", "-", "building", "framework", ",", "transforming", "free", "text", "into", "executable", "probabilistic", "models", "that", "capture", "complex", "real", "-", "world", "systems", "."], "ner": [[4, 9, "Method"], [12, 16, "Task"], [15, 16, "Task"], [18, 18, "Task"], [22, 26, "Method"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Synonymy-of"], [1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["(", "The", "training", "/", "optimization", "of", "the", "first", "approach", "is", "often", "sensitive", "to", "the", "learning", "rate", "and", "parameter", "initialization", "scheme", "in", "the", "production", "mode", ")", "."], "ner": [[2, 2, "Task"], [4, 4, "Task"], [14, 15, "Other Scientific Term"], [17, 19, "Method"], [22, 23, "Other Scientific Term"]], "relations": [[2, 0, "Used-for"], [2, 1, "Used-for"], [3, 0, "Used-for"], [3, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Their", "approach", "does", "not", "involve", "any", "opinion", "analysis", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Most", "of", "these", "approaches", "minimize", "a", "binary", "pairwise", "energy", "function", "whose", "unary", "potentials", "are", "determined", "by", "appearance", "models", "estimated", "based", "on", "user", "input", "on", "the", "test", "image", "."], "ner": [[6, 9, "Other Scientific Term"], [7, 9, "Other Scientific Term"], [8, 9, "Other Scientific Term"], [11, 12, "Other Scientific Term"], [12, 12, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "method", "utilizes", "a", "generative", "adversarial", "network", ",", "where", "the", "generative", "network", "produces", "the", "attention", "map", "via", "an", "attentive", "-", "recurrent", "network", "and", "applies", "this", "map", "along", "with", "the", "input", "image", "to", "generate", "a", "raindrop", "-", "free", "image", "through", "a", "contextual", "autoencoder", "."], "ner": [[4, 6, "Method"], [10, 11, "Method"], [14, 15, "Other Scientific Term"], [14, 14, "Method"], [18, 21, "Method"], [40, 41, "Method"], [41, 41, "Method"]], "relations": [[5, 6, "Hyponym-of"], [4, 1, "Used-for"], [5, 1, "Used-for"], [1, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["We", "aim", "to", "do", "so", "by", "employing", "the", "Latent", "Words", "Language", "Model", "that", "learns", "latent", "words", "from", "a", "large", "unlabeled", "corpus", "."], "ner": [[8, 11, "Method"], [10, 11, "Method"], [14, 15, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "a", "phase", "-", "aware", "HPSS", "method", "through", "convex", "optimization", "was", "proposed", "."], "ner": [[5, 8, "Method"], [8, 8, "Method"], [11, 12, "Method"], [12, 12, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "adequacy", "of", "GI", "models", "for", "calculating", "linguistic", "complexity", "is", "based", "on", "the", "fact", "that", "algorithms", "proposed", "in", "this", "area", "are", "computational", "models", "of", "language", "acquisition", "that", "use", "real", "data", "in", "the", "learning", "process", "."], "ner": [[3, 4, "Method"], [3, 3, "Task"], [7, 8, "Metric"], [8, 8, "Metric"], [21, 22, "Method"], [24, 25, "Task"]], "relations": [[2, 3, "Hyponym-of"], [0, 1, "Used-for"], [4, 5, "Used-for"]], "discontinuous": false}
{"tokens": ["That", "is", ",", "a", "person", "can", "learn", "any", "heterogeneous", "commonsense", "knowledge", "and", "make", "inference", "of", "given", "information", "based", "on", "all", "knowledge", "in", "his", "mind", "."], "ner": [[8, 10, "Other Scientific Term"], [8, 9, "Other Scientific Term"], [9, 10, "Other Scientific Term"], [13, 13, "Task"]], "relations": [[0, 2, "Hyponym-of"], [0, 3, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "these", "experiments", ",", "we", "tested", "the", "impact", "of", "our", "different", "verb", "representations", "using", "different", "kernels", ",", "similarities", "and", "parameters", "."], "ner": [[11, 12, "Method"], [15, 15, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "derive", "sufficient", "conditions", "on", "the", "generating", "functions", "and", "the", "choice", "of", "sampling", "filters", "which", "guarantee", "unique", "recovery", "of", "the", "signal", "'s", "parameters", "."], "ner": [[6, 7, "Other Scientific Term"], [12, 13, "Method"], [12, 12, "Method"], [13, 13, "Method"]], "relations": [[1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "design", "a", "paraphrastic", "sentence", "fusion", "model", "which", "jointly", "performs", "sentence", "fusion", "and", "paraphrasing", "using", "skip", "-", "gram", "word", "embedding", "model", "at", "the", "sentence", "level", "."], "ner": [[3, 6, "Method"], [4, 6, "Method"], [4, 5, "Task"], [5, 6, "Method"], [10, 11, "Task"], [15, 19, "Method"], [15, 17, "Method"], [18, 19, "Method"], [19, 19, "Method"], [10, 10, 13, 13, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 3, "Hyponym-of"], [1, 2, "Used-for"], [0, 2, "Used-for"], [0, 9, "Used-for"], [5, 7, "Hyponym-of"], [7, 8, "Hyponym-of"], [6, 7, "Used-for"], [6, 5, "Used-for"], [2, 4, "Synonymy-of"], [1, 4, "Used-for"], [0, 4, "Used-for"]], "discontinuous": true}
{"tokens": ["In", "this", "work", ",", "we", "build", "a", "novel", "framework", "to", "associatively", "segment", "instances", "and", "semantics", "in", "point", "clouds", ",", "and", "demonstrate", "that", "it", "is", "effective", "and", "general", "on", "different", "backbone", "networks", "."], "ner": [[12, 12, "Other Scientific Term"], [14, 14, "Other Scientific Term"], [16, 17, "Other Scientific Term"], [29, 30, "Method"]], "relations": [[0, 3, "Used-for"], [1, 3, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["But", "personalization", "requires", "annotated", "data", "for", "each", "individual", "user", "-", "something", "that", "may", "be", "possible", "in", "interactive", "settings", "such", "as", "information", "retrieval", ",", "but", "is", "not", "typically", "feasible", "in", "natural", "language", "processing", "."], "ner": [[20, 21, "Task"], [21, 21, "Task"], [29, 31, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Replay", "attacks", "are", "mounted", "using", "recordings", "of", "a", "target", "speaker", "'s", "voice", "which", "are", "replayed", "to", "an", "ASV", "system", "in", "the", "place", "of", "genuine", "speech", "."], "ner": [[0, 1, "Other Scientific Term"], [17, 18, "Method"], [17, 17, "Task"]], "relations": [[1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "utterance", "representation", "is", "trained", "as", "a", "composition", "of", "word", "embeddings", "."], "ner": [[1, 2, "Other Scientific Term"], [9, 10, "Other Scientific Term"], [10, 10, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "believe", "that", "the", "RKD", "framework", "opens", "a", "door", "to", "a", "promising", "area", "of", "effective", "knowledge", "transfer", "with", "high", "-", "order", "relations", "."], "ner": [[4, 4, "Method"], [15, 16, "Task"], [18, 21, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "introduce", "two", "techniques", "for", "Open", "-", "DB", "NED", ",", "one", "based", "on", "distant", "supervision", "and", "the", "other", "based", "on", "domain", "adaptation", "."], "ner": [[5, 8, "Task"], [8, 8, "Task"], [13, 14, "Method"], [20, 21, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "proposes", "a", "functional", "-", "domain", "based", "method", "—", "GOASVM", "—", "by", "making", "full", "use", "of", "Gene", "Ontology", "Annotation", "(", "GOA", ")", "database", "to", "predict", "the", "subcellular", "locations", "of", "proteins", "."], "ner": [[4, 8, "Method"], [4, 6, "Other Scientific Term"], [10, 10, "Method"], [17, 19, "Material"], [21, 21, "Material"]], "relations": [[2, 0, "Hyponym-of"], [3, 4, "Synonymy-of"], [3, 2, "Used-for"], [4, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Unfortunately", ",", "this", "type", "of", "excitation", "models", "are", "limited", "due", "to", "the", "point", "-", "wise", "regression", "in", "the", "time", "domain", ",", "which", "results", "in", "smoothing", "and", "loss", "of", "high", "frequencies", "."], "ner": [[5, 6, "Method"], [12, 15, "Method"], [15, 15, "Method"], [18, 19, "Other Scientific Term"], [24, 24, "Problem"], [26, 26, "Other Scientific Term"], [28, 29, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["But", "they", "mainly", "focus", "on", "network", "visualization", "and", "can", "not", "handle", "large", "corpora", "such", "as", "the", "English", "Wikipedia", "."], "ner": [[5, 6, "Task"], [6, 6, "Task"], [16, 17, "Material"], [17, 17, "Material"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Part-for"]], "discontinuous": false}
{"tokens": ["Consequently", ",", "highly", "degraded", "performances", "have", "been", "reported", "when", "children", "'s", "speech", "is", "transcribed", "using", "an", "ASR", "system", "trained", "on", "speech", "data", "from", "adult", "speakers", "."], "ner": [[16, 17, "Method"], [16, 16, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "introduces", "a", "tree", "-", "based", "network", "to", "improve", "sentences", "'", "semantic", "representations", "over", "the", "constituency", "trees", "."], "ner": [[4, 7, "Method"], [12, 13, "Method"], [16, 17, "Other Scientific Term"], [17, 17, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Learning", "to", "rank", "is", "a", "supervised", "learning", "problem", "which", "objective", "is", "to", "estimate", "a", "scoring", "function", "from", "training", "examples", "."], "ner": [[0, 2, "Task"], [5, 7, "Task"], [5, 6, "Method"], [14, 15, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 1, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Furthermore", ",", "MMR", "that", "presents", "an", "extension", "of", "VSM", "performs", "on", "par", "with", "KLM", "for", "the", "text", "summarization", "task", "(", "TD", ")", "and", "exhibits", "superior", "performance", "over", "KLM", "for", "the", "speech", "summarization", "task", "(", "SD", ")", "."], "ner": [[2, 2, "Method"], [8, 8, "Method"], [13, 13, "Method"], [16, 17, "Task"], [17, 17, "Task"], [20, 20, "Task"], [27, 27, "Method"], [30, 31, "Task"], [31, 31, "Task"], [34, 34, "Task"]], "relations": [[2, 6, "Synonymy-of"], [4, 8, "Synonymy-of"], [3, 4, "Hyponym-of"], [3, 8, "Hyponym-of"], [3, 5, "Synonymy-of"], [5, 4, "Hyponym-of"], [5, 8, "Hyponym-of"], [7, 9, "Synonymy-of"], [7, 4, "Hyponym-of"], [7, 8, "Hyponym-of"], [9, 4, "Hyponym-of"], [9, 8, "Hyponym-of"], [0, 3, "Used-for"], [0, 5, "Used-for"], [2, 3, "Used-for"], [2, 5, "Used-for"], [6, 3, "Used-for"], [6, 5, "Used-for"], [0, 7, "Used-for"], [0, 9, "Used-for"], [2, 7, "Used-for"], [2, 9, "Used-for"], [6, 7, "Used-for"], [6, 9, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "proposes", "a", "Bayesian", "model", "selection", "algorithm", "for", "POMDPs", "with", "the", "DPSs", "."], "ner": [[4, 7, "Method"], [5, 7, "Method"], [5, 6, "Task"], [9, 9, "Method"], [12, 12, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 3, "Used-for"], [1, 2, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "introduce", "a", "new", "transfer", "learning", "technique", "based", "on", "pretraining", "of", "hidden", "-", "unit", "CRFs", "(", "HUCRFs", ")", "."], "ner": [[5, 6, "Method"], [10, 10, "Method"], [12, 15, "Method"], [17, 17, "Method"]], "relations": [[1, 0, "Used-for"], [2, 0, "Used-for"], [3, 0, "Used-for"], [2, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Attribute", "-", "based", "recognition", "models", ",", "due", "to", "their", "impressive", "performance", "and", "their", "ability", "to", "generalize", "well", "on", "novel", "categories", ",", "have", "been", "widely", "adopted", "for", "many", "computer", "vision", "applications", "."], "ner": [[0, 4, "Method"], [3, 3, "Task"], [3, 4, "Method"], [27, 28, "Task"]], "relations": [[0, 2, "Hyponym-of"], [2, 1, "Used-for"], [0, 1, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "is", "achieved", "by", "calculating", "separate", "batch", "statistics", "from", "source", "and", "target", "samples", "within", "a", "batch", ",", "but", "allowing", "for", "some", "cross", "-", "contamination", "between", "domains", "."], "ner": [[6, 7, "Other Scientific Term"], [6, 6, "Other Scientific Term"], [15, 15, "Other Scientific Term"], [21, 23, "Problem"]], "relations": [[1, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", "we", "present", "a", "novel", "way", "of", "assessing", "the", "relative", "readability", "of", "texts", "based", "on", "the", "latent", "variable", "of", "a", "Bayesian", "Probit", "model", "trained", "for", "classification", "."], "ner": [[18, 19, "Other Scientific Term"], [22, 24, "Method"], [27, 27, "Task"]], "relations": [[1, 2, "Used-for"], [0, 1, "Part-for"]], "discontinuous": false}
{"tokens": ["We", "propose", "to", "optimize", "the", "objective", "function", "based", "on", "a", "convex", "optimization", "technique", ",", "semidefinite", "programming", "."], "ner": [[5, 6, "Other Scientific Term"], [10, 12, "Method"], [10, 11, "Task"], [14, 15, "Method"]], "relations": [[1, 2, "Used-for"], [3, 1, "Hyponym-of"], [3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "formulated", "a", "generative", "model", "for", "dependency", "structure", "that", "models", "syntactic", "category", "refinement", "and", "biases", "inference", "to", "cohere", "with", "the", "provided", "constraints", "."], "ner": [[3, 4, "Method"], [6, 7, "Other Scientific Term"], [10, 12, "Task"], [10, 11, "Other Scientific Term"], [12, 12, "Task"], [14, 15, "Task"], [14, 14, "Other Scientific Term"], [15, 15, "Task"]], "relations": [[2, 4, "Hyponym-of"], [5, 7, "Hyponym-of"], [0, 2, "Used-for"], [0, 5, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "present", "an", "entirely", "contrary", "approach", "towards", "an", "improved", "AAM", "generalization", "ability", ":", "we", "explicitly", "increase", "the", "expressiveness", "of", "an", "AAM", "by", "adding", "new", "knowledge", "obtained", "from", "related", "but", "different", "training", "data", "."], "ner": [[13, 13, "Method"], [14, 15, "Metric"], [24, 24, "Method"]], "relations": [[1, 0, "Evaluate-for"], [1, 2, "Evaluate-for"], [0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Furthermore", ",", "we", "develop", "the", "dynamic", "hard", "-", "edge", "mask", "to", "handle", "the", "non", "-", "consistency", "in", "fast", "camera", "motion", "by", "blocking", "the", "boundary", "part", "and", "which", "generates", "more", "efficiency", "in", "the", "whole", "non", "-", "consistency", "mask", "."], "ner": [[5, 9, "Method"], [6, 9, "Method"], [9, 9, "Other Scientific Term"], [13, 15, "Problem"], [33, 36, "Method"], [36, 36, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [0, 3, "Used-for"], [2, 5, "Synonymy-of"], [0, 4, "Used-for"], [1, 2, "Hyponym-of"], [1, 5, "Hyponym-of"], [4, 2, "Hyponym-of"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Potential", "advantages", "of", "the", "IABS", "approach", "include", ":", "that", "participating", "market", "agents", "will", "react", "to", "the", "experimental", "strategy", "with", "different", "consequential", "orders", ";", "that", "the", "experimental", "strategy", "can", "be", "exposed", "to", "conditions", "and", "situations", "that", "may", "not", "have", "occurred", "historically", ";", "and", "that", "a", "much", "larger", "corpus", "of", "market", "data", "can", "be", "engaged", "for", "strategy", "evaluation", "."], "ner": [[4, 4, "Method"], [54, 55, "Task"], [55, 55, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "context", ",", "C2X", "communications", "is", "one", "of", "the", "important", "technologies", "for", "future", "road", "safety", "that", "can", "cope", "some", "of", "the", "automated", "driving", "challenges", "."], "ner": [[4, 5, "Task"], [22, 23, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["As", "mentioned", "in", "Section", "1", ",", "it", "is", "difficult", "to", "design", "high", "quality", "features", "using", "the", "existing", "NLP", "tools", "."], "ner": [[17, 18, "Method"], [17, 17, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "goal", "of", "our", "submission", "is", "to", "take", "advantage", "of", "the", "semantic", "overlap", "between", "hypothesis", "and", "reference", "translation", "for", "predicting", "MT", "output", "adequacy", "using", "language", "independent", "document", "embeddings", "."], "ner": [[11, 12, "Other Scientific Term"], [16, 17, "Other Scientific Term"], [20, 20, "Task"], [24, 27, "Method"], [26, 27, "Method"], [27, 27, "Method"]], "relations": [[3, 4, "Hyponym-of"], [4, 5, "Hyponym-of"], [3, 2, "Used-for"], [0, 2, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "future", "work", ",", "we", "plan", "to", "apply", "the", "SDM", "to", "other", "NLS", "in", "computer", "vision", "such", "as", "camera", "calibration", "and", "structure", "from", "motion", "."], "ner": [[9, 9, "Method"], [12, 12, "Other Scientific Term"], [14, 15, "Task"], [18, 19, "Task"], [19, 19, "Task"]], "relations": [[3, 4, "Hyponym-of"], [3, 1, "Hyponym-of"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "illustrated", "how", "decomposition", "and", "dynamic", "programming", "tools", "can", "be", "used", "to", "design", "optimal", "fetching", "-", "caching", "schemes", "for", "a", "network", "of", "caches", "."], "ner": [[4, 4, "Method"], [6, 7, "Method"], [14, 18, "Method"], [15, 18, "Method"], [21, 23, "Other Scientific Term"], [23, 23, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [0, 2, "Used-for"], [1, 2, "Used-for"], [0, 4, "Used-for"], [1, 4, "Used-for"], [2, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["Domain", "-", "independent", "planning", "is", "known", "to", "be", "challenging", "not", "only", "due", "to", "its", "computational", "complexity", "(", "Bylander", "1994", ")", ",", "but", "also", "due", "to", "the", "various", "and", "very", "different", "types", "of", "domains", "that", "planners", "are", "expected", "to", "solve", "."], "ner": [[0, 3, "Task"], [3, 3, "Task"], [14, 15, "Metric"], [15, 15, "Metric"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [2, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "consider", "matching", "problems", "that", "arise", "in", "signal", "processing", "applications", "and", "are", "amenable", "to", "a", "DNA", "-", "based", "solution", "."], "ner": [[6, 6, "Task"], [11, 12, "Task"], [19, 22, "Method"]], "relations": [[2, 0, "Used-for"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "propose", "to", "train", "neural", "document", "summarization", "models", "not", "just", "to", "pay", "attention", "to", "specific", "regions", "of", "input", "documents", "with", "attention", "models", ",", "but", "also", "distract", "the", "models", "to", "different", "content", "in", "order", "to", "better", "grasp", "the", "overall", "meaning", "of", "input", "documents", "."], "ner": [[4, 6, "Method"], [5, 6, "Task"], [6, 6, "Task"], [20, 21, "Method"], [20, 20, "Method"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"], [4, 0, "Used-for"], [3, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["We", "present", "a", "simple", "mathematical", "analysis", "of", "GY", "generation", "based", "on", "Lagrange", "multipliers", "."], "ner": [[7, 8, "Task"], [7, 7, "Other Scientific Term"], [11, 12, "Other Scientific Term"]], "relations": [[2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "inner", "perspective", "is", "important", "to", "teach", "the", "system", "itself", "about", "its", "failures", ",", "whereas", "the", "outer", "perspective", "helps", "users", "understand", "when", "to", "expect", "failures", "and", "can", "not", "be", "created", "without", "the", "input", "from", "human", "computation", "."], "ner": [[1, 2, "Other Scientific Term"], [2, 2, "Other Scientific Term"], [16, 17, "Other Scientific Term"], [17, 17, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 3, "Hyponym-of"], [2, 1, "Hyponym-of"], [1, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "Manawi", "system", "showed", "the", "potential", "of", "improving", "translation", "quality", "by", "incorporating", "multiple", "NLP", "tools", "within", "the", "MT", "pipeline", "."], "ner": [[1, 1, "Method"], [13, 14, "Method"], [13, 13, "Task"], [17, 17, "Task"]], "relations": [[1, 2, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["It", "is", "argued", "that", "objects", "within", "a", "semantic", "category", "are", "represented", "by", "another", ",", "more", "commonly", "used", "or", "much", "simpler", "member", "of", "the", "same", "semantic", "category", ",", "called", "a", "prototype", "."], "ner": [[7, 8, "Other Scientific Term"], [24, 25, "Other Scientific Term"], [29, 29, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "describe", "a", "CRF", "based", "system", "for", "word", "-", "level", "language", "identification", "of", "code", "-", "mixed", "text", "."], "ner": [[3, 3, "Method"], [7, 11, "Task"], [10, 11, "Task"], [11, 11, "Task"], [13, 16, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Scene", "understanding", "algorithms", "must", "understand", "both", "the", "geometry", "and", "semantics", "of", "the", "scene", "at", "the", "same", "time", "."], "ner": [[0, 2, "Method"], [0, 1, "Task"], [0, 0, "Other Scientific Term"], [7, 7, "Other Scientific Term"], [9, 9, "Other Scientific Term"], [12, 12, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [2, 5, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "also", "investigate", "whether", "the", "cross", "-", "lingually", "induced", "CCG", "lexicons", "correspond", "with", "linguistic", "insights", "about", "the", "target", "languages", "."], "ner": [[5, 10, "Other Scientific Term"], [9, 9, "Other Scientific Term"], [9, 10, "Other Scientific Term"], [13, 14, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "characterize", "the", "structure", "consistency", "by", "three", "features", "and", "integrate", "them", "into", "the", "standard", "SMT", "log", "-", "linear", "model", "to", "guide", "the", "translation", "process", "."], "ner": [[3, 4, "Other Scientific Term"], [14, 18, "Method"], [14, 14, "Method"], [15, 18, "Method"]], "relations": [[1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["To", "gain", "more", "insights", "in", "what", "is", "learned", "by", "the", "deployed", "convolutional", "neural", "network", ",", "we", "perform", "an", "analysis", "on", "the", "attention", "mechanism", "inside", "the", "network", "."], "ner": [[11, 13, "Method"], [12, 13, "Method"], [21, 22, "Method"], [21, 21, "Method"]], "relations": [[0, 1, "Hyponym-of"], [3, 2, "Synonymy-of"], [3, 0, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Recent", "works", "in", "affect", "recognition", "fields", "have", "started", "focusing", "on", "the", "analysis", "of", "spontaneous", "affect", "displayed", "by", "multiple", "people", "in", "more", "naturalistic", "settings", "."], "ner": [[3, 4, "Task"], [4, 4, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "focus", "on", "the", "unresolved", "problem", "of", "polysemous", "words", "revealed", "by", "the", "bilingual", "dictionary", "and", "introduce", "a", "use", "of", "a", "Word", "Sense", "Disambiguation", "process", "that", "aims", "at", "improving", "the", "adequacy", "of", "context", "vectors", "."], "ner": [[7, 8, "Other Scientific Term"], [20, 23, "Method"], [20, 22, "Task"], [22, 22, "Task"], [31, 32, "Other Scientific Term"]], "relations": [[1, 2, "Used-for"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Here", "we", "make", "three", "contributions", "to", "address", "the", "key", "modes", "of", "light", "propagation", ",", "under", "the", "common", "single", "scattering", "assumption", "for", "dilute", "media", "."], "ner": [[11, 12, "Other Scientific Term"], [16, 19, "Other Scientific Term"], [17, 19, "Other Scientific Term"], [17, 18, "Other Scientific Term"], [18, 18, "Other Scientific Term"], [21, 22, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["SUMMA", "hierarchically", "clusters", "the", "sentences", "by", "time", ",", "and", "then", "summarizes", "the", "clusters", "using", "an", "objective", "function", "that", "optimizes", "salience", "and", "coherence", "."], "ner": [[0, 0, "Method"], [12, 12, "Other Scientific Term"], [15, 16, "Other Scientific Term"], [19, 19, "Metric"], [21, 21, "Metric"]], "relations": [[2, 0, "Used-for"], [3, 0, "Evaluate-for"], [4, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Indoor", "scene", "understanding", "has", "been", "a", "popular", "topic", "and", "accumulated", "rich", "literature", "in", "the", "past", "decades", "."], "ner": [[0, 2, "Task"], [1, 2, "Task"], [1, 1, "Other Scientific Term"], [2, 2, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Moreover", ",", "this", "assumption", "offers", "a", "good", "trade", "-", "off", "between", "model", "realism", "and", "computational", "complexity", "."], "ner": [[14, 15, "Metric"], [15, 15, "Metric"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "new", "KvD", "-", "based", "abstractive", "summariser", "uses", "propositions", "not", "only", "for", "content", "selection", ",", "but", "also", "for", "generation", "."], "ner": [[2, 6, "Method"], [5, 6, "Method"], [6, 6, "Method"], [12, 13, "Task"], [13, 13, "Task"], [18, 18, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [0, 3, "Used-for"], [0, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["For", "future", "work", ",", "we", "plan", "to", "apply", "our", "proposed", "postfilter", "to", "other", "tasks", "such", "as", "voice", "conversion", "and", "speech", "enhancement", "."], "ner": [[10, 10, "Method"], [16, 17, "Task"], [19, 20, "Task"]], "relations": [[0, 1, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "present", "a", "sequence", "-", "to", "-", "sequence", "model", "for", "multilingual", "speech", "recognition", "which", "is", "able", "to", "recognize", "speech", "without", "any", "explicit", "language", "specification", "."], "ner": [[3, 8, "Method"], [10, 12, "Task"], [11, 12, "Task"], [12, 12, "Task"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["For", "readers", "who", "are", "not", "familiar", "with", "algebraic", "topology", "and", "homology", ",", "we", "give", "a", "brief", "summary", "in", "Supplementary", "material", "."], "ner": [[7, 8, "Other Scientific Term"], [8, 8, "Other Scientific Term"], [10, 10, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Future", "works", "will", "focus", "on", "the", "expansion", "of", "the", "multiple", "degraded", "image", "restoration", "tasks", "."], "ner": [[9, 12, "Task"], [9, 11, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [10, 12, "Task"], [11, 12, "Task"]], "relations": [[0, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Compared", "to", "the", "multi", "-", "stage", "pipeline", "of", "R", "-", "CNN", ",", "fast", "R", "-", "CNN", "incorporates", "object", "classifier", "in", "the", "network", "and", "trains", "object", "classifier", "and", "bounding", "box", "regressor", "simultaneously", "."], "ner": [[3, 6, "Method"], [8, 10, "Method"], [12, 15, "Method"], [13, 15, "Method"], [17, 18, "Method"], [18, 18, "Method"], [24, 25, "Method"], [25, 25, "Method"], [27, 29, "Method"], [27, 28, "Other Scientific Term"], [29, 29, "Method"]], "relations": [[4, 6, "Synonymy-of"], [5, 7, "Synonymy-of"], [1, 3, "Synonymy-of"], [4, 5, "Hyponym-of"], [4, 7, "Hyponym-of"], [6, 5, "Hyponym-of"], [6, 7, "Hyponym-of"], [8, 10, "Hyponym-of"], [4, 2, "Part-for"], [6, 2, "Part-for"], [8, 2, "Part-for"], [2, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Since", "the", "most", "robust", "ASR", "system", "is", "not", "necessarily", "the", "best", "model", "to", "predict", "SQ", ",", "we", "investigate", "the", "effect", "of", "the", "amount", "of", "training", "data", "on", "quality", "prediction", "."], "ner": [[4, 5, "Method"], [4, 4, "Task"], [14, 14, "Other Scientific Term"], [27, 28, "Task"], [28, 28, "Task"]], "relations": [[3, 4, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "due", "to", "the", "presence", "of", "the", "jamming", "pilot", "contamination", ",", "the", "optimal", "receive", "filter", "is", "an", "open", "problem", "that", "is", "left", "for", "future", "research", "."], "ner": [[8, 10, "Problem"], [13, 15, "Method"], [14, 15, "Method"], [15, 15, "Method"]], "relations": [[2, 3, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "system", "has", "two", "modules", ",", "one", "to", "identify", "chemical", "entities", ",", "and", "other", "to", "identify", "the", "pairs", "of", "entities", "that", "represent", "a", "chemical", "interaction", "in", "the", "same", "text", "."], "ner": [[9, 10, "Other Scientific Term"], [10, 10, "Other Scientific Term"], [19, 19, "Other Scientific Term"], [23, 24, "Other Scientific Term"]], "relations": [[1, 2, "Synonymy-of"], [0, 1, "Hyponym-of"], [0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Learning", "attention", "functions", "requires", "large", "volumes", "of", "data", ",", "but", "many", "NLP", "tasks", "simulate", "human", "behavior", ",", "and", "in", "this", "paper", ",", "we", "show", "that", "human", "attention", "really", "does", "provide", "a", "good", "inductive", "bias", "on", "many", "attention", "functions", "in", "NLP", "."], "ner": [[1, 1, "Method"], [1, 2, "Other Scientific Term"], [11, 11, "Task"], [32, 33, "Other Scientific Term"], [33, 33, "Other Scientific Term"], [36, 37, "Other Scientific Term"], [36, 36, "Method"], [39, 39, "Task"]], "relations": [[0, 6, "Synonymy-of"], [2, 7, "Synonymy-of"], [1, 5, "Synonymy-of"], [3, 4, "Hyponym-of"], [1, 2, "Used-for"], [1, 7, "Used-for"], [5, 2, "Used-for"], [5, 7, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "recent", "work", "of", "Faruqui", "and", "Kumar", "(", "2015", ")", "extracted", "relational", "phrases", "from", "Wikipedia", "in", "61", "languages", "using", "crosslingual", "projection", "."], "ner": [[11, 12, "Other Scientific Term"], [14, 14, "Material"], [19, 20, "Method"], [20, 20, "Method"]], "relations": [[2, 3, "Hyponym-of"], [0, 1, "Part-for"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "addition", "to", "the", "task", "of", "action", "recognition", ",", "we", "show", "that", "R", "*", "CNN", "can", "successfully", "be", "used", "for", "fine", "-", "grained", "tasks", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"], [12, 14, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Then", ",", "we", "compare", "the", "predictions", "of", "the", "DLM", "model", "to", "the", "predictions", "of", "a", "simpler", "heaviness", "account", ",", "and", "confirm", "that", "the", "complexity", "of", "DLM", "is", "needed", ",", "as", "a", "simpler", "model", "based", "on", "heaviness", "of", "the", "adjective", "does", "not", "yield", "the", "same", "effects", "."], "ner": [[8, 9, "Method"], [8, 8, "Other Scientific Term"], [23, 23, "Metric"], [25, 25, "Other Scientific Term"]], "relations": [[2, 3, "Evaluate-for"], [1, 3, "Synonymy-of"], [2, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Furthermore", ",", "we", "also", "utilize", "multiple", "techniques", "to", "improve", "the", "suggestion", "mining", "system", "."], "ner": [[10, 12, "Method"], [10, 11, "Task"], [11, 11, "Task"], [11, 12, "Method"]], "relations": [[0, 3, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Compared", "with", "3D", "CNNs", ",", "the", "proposed", "warp", "LSTM", "is", "able", "to", "model", "the", "long", "-", "term", "spatio", "-", "temporal", "information", "of", "moving", "objects", "for", "classification", "and", "localization", "tasks", "by", "explicitly", "modeling", "the", "movements", "in", "videos", "."], "ner": [[2, 3, "Method"], [3, 3, "Method"], [7, 8, "Method"], [8, 8, "Method"], [14, 20, "Other Scientific Term"], [17, 20, "Other Scientific Term"], [25, 25, "Task"], [27, 27, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [2, 6, "Used-for"], [2, 7, "Used-for"], [0, 6, "Used-for"], [0, 7, "Used-for"], [4, 6, "Used-for"], [4, 7, "Used-for"]], "discontinuous": false}
{"tokens": ["Belief", "propagation", "approaches", ",", "such", "as", "Max", "-", "Sum", "and", "its", "variants", ",", "are", "important", "methods", "to", "solve", "large", "-", "scale", "Distributed", "Constraint", "Optimization", "Problems", "(", "DCOPs", ")", "."], "ner": [[0, 1, "Method"], [6, 8, "Method"], [18, 24, "Task"], [21, 24, "Task"], [22, 24, "Task"], [23, 23, "Task"], [26, 26, "Task"]], "relations": [[2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [4, 5, "Hyponym-of"], [2, 6, "Synonymy-of"], [0, 2, "Used-for"], [1, 2, "Used-for"], [1, 0, "Hyponym-of"], [0, 6, "Used-for"], [1, 6, "Used-for"], [3, 6, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["As", "we", "use", "text", "-", "to", "-", "image", "models", "for", "evaluation", "purposes", ",", "we", "also", "discuss", "related", "research", "in", "that", "area", "."], "ner": [[3, 8, "Method"], [10, 10, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["These", "approaches", "treat", "matching", "at", "an", "abstract", "level", "and", "do", "not", "present", "a", "pipeline", "to", "solve", "a", "problem", "like", "optical", "flow", "estimation", "or", "3D", "reconstruction", ",", "although", "many", "of", "them", "use", "3D", "reconstruction", "datasets", "for", "evaluation", "."], "ner": [[3, 3, "Task"], [19, 21, "Task"], [19, 20, "Other Scientific Term"], [21, 21, "Task"], [23, 24, "Task"], [24, 24, "Task"], [31, 32, "Task"], [32, 32, "Task"], [35, 35, "Task"]], "relations": [[1, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [4, 7, "Hyponym-of"], [6, 5, "Hyponym-of"], [6, 7, "Hyponym-of"], [4, 6, "Synonymy-of"], [5, 7, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "have", "investigated", "the", "fairness", "issue", "of", "FD", "MIMO", "interference", "channels", "for", "asymmetric", "networks", "."], "ner": [[11, 14, "Other Scientific Term"], [12, 14, "Other Scientific Term"], [13, 14, "Other Scientific Term"], [16, 17, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Predicting", "pairs", "of", "anchor", "users", "plays", "an", "important", "role", "in", "the", "cross", "-", "network", "analysis", "."], "ner": [[11, 14, "Task"], [14, 14, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "key", "idea", "behind", "PTL", "is", "to", "transfer", "an", "HRTF", "generation", "model", "from", "other", "persons", "to", "a", "target", "individual", "."], "ner": [[4, 4, "Method"], [9, 11, "Method"], [9, 10, "Task"], [10, 10, "Task"]], "relations": [[2, 3, "Hyponym-of"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "system", "carries", "out", "unknown", "word", "processing", "using", "heuristic", "rules", "."], "ner": [[4, 6, "Task"], [8, 9, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "a", "better", "understanding", "of", "what", "properties", "induce", "a", "useful", "generic", "embedding", "remains", "illusive", "."], "ner": [[11, 12, "Method"], [12, 12, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "show", "that", "despite", "Urdu", "being", "a", "resource", "poor", "language", ",", "techniques", "like", "cotraining", "and", "statistical", "techniques", "based", "on", "tf", "-", "idf", "and", "word", "unigrams", "coupled", "with", "confidence", "measures", "help", "model", "the", "state", "-", "of", "-", "the", "-", "art", "subjectivity", "classifier", "."], "ner": [[13, 13, "Method"], [15, 16, "Method"], [19, 21, "Method"], [24, 24, "Method"], [27, 28, "Method"], [39, 40, "Method"], [40, 40, "Method"]], "relations": [[2, 0, "Used-for"], [2, 1, "Used-for"], [3, 0, "Used-for"], [3, 1, "Used-for"], [4, 5, "Used-for"], [0, 5, "Used-for"], [1, 5, "Used-for"], [5, 6, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "therefore", "propose", "to", "extend", "the", "wellknown", "multi", "-", "object", "tracking", "task", "to", "instance", "segmentation", "tracking", "."], "ner": [[11, 14, "Task"], [14, 14, "Task"], [17, 19, "Task"], [17, 18, "Task"], [19, 19, "Task"]], "relations": [[1, 4, "Synonymy-of"], [0, 1, "Hyponym-of"], [0, 4, "Hyponym-of"], [2, 4, "Hyponym-of"], [2, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["They", "also", "contain", "semi", "-", "structured", "knowledge", "such", "as", "handcrafted", "infoboxes", "."], "ner": [[3, 6, "Other Scientific Term"], [10, 10, "Other Scientific Term"]], "relations": [[1, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Statistical", "models", "of", "network", "structure", "are", "widely", "used", "in", "network", "science", "to", "reason", "about", "the", "properties", "of", "complex", "systems", "-", "where", "the", "nodes", "and", "edges", "represent", "entities", "and", "their", "relationships", "."], "ner": [[0, 1, "Method"], [3, 4, "Other Scientific Term"], [9, 10, "Task"], [22, 22, "Other Scientific Term"], [24, 24, "Other Scientific Term"], [26, 26, "Other Scientific Term"]], "relations": [[0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "proposed", "to", "solve", "the", "entity", "alignment", "by", "dually", "minimizing", "both", "the", "entity", "-", "level", "loss", "and", "the", "group", "-", "level", "loss", "via", "optimal", "transport", "theory", ",", "in", "order", "to", "model", "the", "whole", "picture", "of", "labeled", "and", "unlabeled", "entities", "in", "different", "language", "KGs", "."], "ner": [[5, 6, "Task"], [5, 5, "Other Scientific Term"], [6, 6, "Task"], [12, 15, "Other Scientific Term"], [15, 15, "Other Scientific Term"], [18, 21, "Other Scientific Term"], [21, 21, "Other Scientific Term"], [23, 25, "Method"], [37, 38, "Other Scientific Term"], [38, 38, "Other Scientific Term"], [42, 42, "Other Scientific Term"], [35, 35, 38, 38, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 6, "Hyponym-of"], [5, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [7, 0, "Used-for"], [1, 0, "Synonymy-of"], [4, 6, "Synonymy-of"]], "discontinuous": true}
{"tokens": ["Our", "lifespan", "model", "has", "been", "integrated", "into", "the", "latest", "version", "of", "the", "Stanford", "coreference", "resolution", "system", "."], "ner": [[1, 2, "Method"], [12, 15, "Method"], [13, 15, "Method"], [13, 14, "Task"], [14, 15, "Method"], [14, 14, "Task"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"], [2, 4, "Hyponym-of"], [3, 5, "Hyponym-of"], [2, 3, "Used-for"], [4, 5, "Used-for"], [1, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "other", "reason", "is", "that", "the", "lack", "of", "data", "for", "the", "unseen", "classes", "presents", "a", "unique", "challenge", "for", "model", "selection", "."], "ner": [[18, 19, "Task"], [19, 19, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "getting", "detailed", "disease", "localization", "annotation", "can", "be", "difficult", "and", "expensive", "."], "ner": [[4, 6, "Other Scientific Term"], [4, 5, "Task"], [5, 5, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "strengthen", "the", "self", "-", "attention", "network", "through", "graph", "neural", "network", "and", "meanwhile", "maintain", "the", "model", "'s", "simplicity", "and", "flexibility", "."], "ner": [[7, 10, "Method"], [7, 9, "Method"], [12, 14, "Method"], [13, 14, "Method"]], "relations": [[2, 3, "Hyponym-of"], [2, 0, "Used-for"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "learning", "approach", "we", "describe", "in", "Section", "4", "can", "be", "viewed", "as", "extending", "these", "failure", "-", "driven", "approaches", "to", "the", "particle", "filtering", "framework", "."], "ner": [[1, 2, "Method"], [14, 17, "Method"], [20, 21, "Method"], [21, 21, "Method"]], "relations": [[2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "is", "made", "possible", "by", "utilizing", "the", "paired", "-", "image", "information", "from", "the", "source", "domain", ",", "a", "weighted", "multi", "-", "kernel", "maximum", "mean", "discrepancy", "(", "weighted", "MK", "-", "MMD", ")", "method", "and", "an", "entropy", "loss", "."], "ner": [[17, 23, "Method"], [18, 23, "Method"], [25, 28, "Method"], [26, 28, "Method"], [33, 34, "Other Scientific Term"], [33, 33, "Other Scientific Term"], [34, 34, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [0, 3, "Hyponym-of"], [2, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [4, 6, "Hyponym-of"], [0, 2, "Synonymy-of"], [1, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["To", "address", "this", "issue", "and", "stabilize", "the", "GAN", "training", ",", "in", "this", "paper", ",", "we", "propose", "a", "novel", "Bidirectional", "Generative", "Adversarial", "Network", "for", "Neural", "Machine", "Translation", "(", "BGAN", "-", "NMT", ")", ",", "which", "aims", "to", "introduce", "a", "generator", "model", "to", "act", "as", "the", "discriminator", ",", "whereby", "the", "discriminator", "naturally", "considers", "the", "entire", "translation", "space", "so", "that", "the", "inadequate", "training", "problem", "can", "be", "alleviated", "."], "ner": [[7, 7, "Method"], [18, 21, "Method"], [18, 25, "Method"], [19, 21, "Method"], [23, 25, "Method"], [24, 25, "Task"], [27, 29, "Method"], [37, 37, "Method"], [43, 43, "Method"], [47, 47, "Method"], [52, 53, "Other Scientific Term"], [57, 58, "Problem"]], "relations": [[1, 3, "Hyponym-of"], [4, 5, "Used-for"], [2, 6, "Synonymy-of"], [0, 3, "Synonymy-of"], [1, 0, "Hyponym-of"], [6, 5, "Used-for"], [1, 5, "Used-for"], [2, 5, "Used-for"], [1, 2, "Used-for"], [1, 6, "Used-for"], [8, 9, "Synonymy-of"], [8, 11, "Used-for"], [9, 11, "Used-for"]], "discontinuous": false}
{"tokens": ["Entity", "extraction", "and", "linking", ",", "along", "with", "topic", "and", "event", "detection", ",", "are", "now", "widely", "available", "to", "journalists", "in", "order", "to", "describe", "content", "and", "help", "search", "pieces", "of", "information", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"], [3, 3, "Task"], [9, 10, "Task"], [10, 10, "Task"], [0, 0, 3, 3, "Task"], [7, 7, 10, 10, "Task"]], "relations": [[0, 1, "Hyponym-of"], [5, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [6, 4, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["We", "then", "use", "a", "fundamental", "property", "of", "the", "bounding", "edge", "representation", "to", "find", "a", "number", "of", "3D", "points", "on", "the", "surface", "of", "the", "object", "."], "ner": [[8, 10, "Method"], [8, 9, "Other Scientific Term"], [9, 9, "Other Scientific Term"], [16, 17, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "the", "context", "of", "frequency", "estimation", ",", "the", "technique", "proved", "to", "robustly", "track", "abrupt", "frequency", "variations", "."], "ner": [[4, 5, "Task"], [4, 4, "Other Scientific Term"], [5, 5, "Task"], [13, 15, "Other Scientific Term"], [14, 14, "Other Scientific Term"], [14, 15, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [1, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Recently", ",", "in", "algorithmic", "music", "generation", "field", ",", "there", "are", "two", "mainstreams", ":", "symbolic", "-", "domain", "and", "audio", "-", "domain", "."], "ner": [[3, 5, "Task"], [4, 5, "Task"], [5, 5, "Task"], [13, 15, "Other Scientific Term"], [17, 19, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "a", "naive", "combination", "of", "regression", "and", "the", "VAE", "is", "not", "particularly", "effective", "because", "the", "decoder", "and", "the", "latent", "space", "are", "not", "designed", "in", "a", "way", "that", "permits", "the", "result", "of", "the", "regressed", "response", "in", "latent", "space", ",", "and", "the", "corresponding", "response", "in", "data", "space", ",", "to", "coincide", "."], "ner": [[6, 6, "Method"], [9, 9, "Method"], [16, 16, "Method"], [19, 20, "Other Scientific Term"], [36, 37, "Other Scientific Term"], [44, 45, "Other Scientific Term"]], "relations": [[3, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "show", "example", "synthesis", "can", "be", "used", "for", "zero", "-", "shot", "learning", "and", "data", "augmentation", "with", "evaluations", "on", "two", "datasets", ":", "Something", "-", "Something", "and", "Jester", "."], "ner": [[3, 3, "Method"], [8, 11, "Task"], [13, 14, "Task"], [14, 14, "Task"], [16, 16, "Task"], [21, 23, "Material"], [25, 25, "Material"]], "relations": [[2, 3, "Hyponym-of"], [0, 1, "Used-for"], [0, 2, "Used-for"], [0, 5, "Used-for"], [0, 6, "Used-for"], [5, 1, "Used-for"], [5, 2, "Used-for"], [6, 1, "Used-for"], [6, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "proposed", "a", "Dynamic", "Re", "-", "read", "Network", "(", "DRr", "-", "Net", ")", "approach", "for", "sentence", "semantic", "matching", ",", "a", "novel", "architecture", "that", "was", "able", "to", "pay", "close", "attention", "to", "a", "small", "region", "of", "sentences", "at", "each", "time", "and", "re", "-", "read", "the", "important", "information", "for", "better", "sentence", "semantic", "matching", "."], "ner": [[7, 11, "Method"], [13, 15, "Method"], [19, 21, "Task"], [20, 21, "Task"], [21, 21, "Task"], [51, 53, "Task"], [52, 53, "Task"], [53, 53, "Task"]], "relations": [[0, 1, "Synonymy-of"], [2, 5, "Synonymy-of"], [3, 6, "Synonymy-of"], [4, 7, "Synonymy-of"], [0, 2, "Used-for"], [1, 2, "Used-for"], [0, 5, "Used-for"], [1, 5, "Used-for"], [2, 3, "Hyponym-of"], [2, 6, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 7, "Hyponym-of"], [5, 3, "Hyponym-of"], [5, 6, "Hyponym-of"], [6, 4, "Hyponym-of"], [6, 7, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "demonstrate", "the", "efficacy", "of", "the", "proposed", "method", "on", "real", "-", "world", "noisy", "labels", "using", "the", "Clothing1", "M", "dataset", "."], "ner": [[9, 13, "Other Scientific Term"], [12, 13, "Other Scientific Term"], [16, 17, "Material"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "LSTM", "beamforming", "network", "and", "the", "LSTM", "acoustic", "model", "are", "jointly", "trained", "using", "truncated", "back", "-", "propagation", "through", "time", "(", "BPTT", ")", "with", "a", "cross", "-", "entropy", "objective", "."], "ner": [[1, 3, "Method"], [1, 1, "Method"], [2, 3, "Method"], [2, 2, "Method"], [6, 8, "Method"], [6, 6, "Method"], [7, 8, "Method"], [13, 18, "Method"], [14, 18, "Method"], [20, 20, "Method"], [24, 26, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [1, 0, "Used-for"], [1, 2, "Used-for"], [1, 4, "Used-for"], [1, 6, "Used-for"], [5, 4, "Used-for"], [5, 6, "Used-for"], [5, 0, "Used-for"], [5, 2, "Used-for"], [1, 5, "Synonymy-of"], [4, 6, "Hyponym-of"], [7, 8, "Hyponym-of"], [7, 9, "Hyponym-of"], [8, 9, "Synonymy-of"], [7, 0, "Used-for"], [7, 4, "Used-for"], [10, 0, "Used-for"], [10, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "present", "the", "development", "of", "a", "clinical", "narratives", "dataset", "that", "can", "be", "used", "to", "implement", "data", "-", "driven", "methods", "for", "the", "automatic", "evaluation", "of", "MI", "sessions", "."], "ner": [[19, 22, "Method"], [25, 26, "Task"], [26, 26, "Task"], [28, 28, "Other Scientific Term"], [28, 29, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "topic", "represents", "an", "interesting", "new", "line", "of", "research", "with", "valuable", "applications", "in", "language", "learning", ",", "language", "generation", ",", "question", "-", "answering", ",", "summarization", ",", "and", "machine", "translation", ",", "among", "others", "."], "ner": [[13, 14, "Task"], [16, 17, "Task"], [17, 17, "Task"], [19, 21, "Task"], [23, 23, "Task"], [26, 27, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Further", ",", "our", "proposed", "method", "uses", "the", "regeneration", "technique", "in", "order", "to", "adapt", "the", "algorithm", "by", "identifying", "new", "modes", "and", "updating", "the", "network", "of", "wormholes", "without", "affecting", "the", "stationary", "distribution", "."], "ner": [[7, 7, "Task"], [7, 8, "Method"], [22, 24, "Method"], [24, 24, "Other Scientific Term"], [28, 29, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "first", "experiments", "concemed", "Spline", "ESA", "using", "exact", "splines", ",", "from", "fifth", "to", "seventh", "order", "."], "ner": [[4, 5, "Method"], [5, 5, "Method"], [8, 8, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "present", "an", "inference", "technique", "for", "handling", "a", "tree", "insertion", "that", "makes", "use", "of", "dynamic", "programming", "."], "ner": [[4, 5, "Method"], [4, 4, "Task"], [9, 10, "Task"], [9, 9, "Other Scientific Term"], [15, 16, "Method"]], "relations": [[0, 1, "Used-for"], [0, 2, "Used-for"], [4, 0, "Used-for"], [4, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Several", "datasets", "have", "been", "created", "to", "study", "visual", "reasoning", "and", "language", "."], "ner": [[7, 8, "Task"], [8, 8, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["To", "our", "knowledge", ",", "there", "are", "no", "prior", "works", "explicitly", "considering", "high", "-", "order", "contextual", "relationships", "between", "objects", "in", "the", "literature", "on", "semantic", "segmentation", "."], "ner": [[7, 7, "Other Scientific Term"], [22, 23, "Task"], [23, 23, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["To", "add", "to", "these", "efforts", ",", "we", "intend", "to", "propose", "a", "new", "perspective", "on", "using", "attention", "and", "to", "enhance", "it", "by", "using", "linguistic", "constituents", "as", "a", "linguistically", "motivated", "feature", "."], "ner": [[15, 15, "Method"], [22, 23, "Other Scientific Term"], [26, 28, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "relatively", "little", "work", "has", "been", "done", "on", "producing", "statistics", "of", "diffusion", "tensors", "."], "ner": [[12, 13, "Other Scientific Term"], [13, 13, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "method", "outperforms", "state", "-", "of", "-", "the", "-", "art", "softmax", "losses", "on", "all", "the", "three", "datasets", "."], "ner": [[10, 11, "Other Scientific Term"], [10, 10, "Method"], [11, 11, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Previous", "research", "on", "using", "SVMs", "for", "IE", "adopts", "the", "standard", "form", "of", "the", "SVM", ",", "which", "treats", "positive", "and", "negative", "examples", "equally", "."], "ner": [[4, 4, "Method"], [6, 6, "Task"], [13, 13, "Method"]], "relations": [[0, 1, "Used-for"], [2, 1, "Used-for"], [0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["For", "example", ",", "detectors", "of", "frequently", "occurring", "background", "patterns", "such", "as", "leaves", "of", "a", "tree", "would", "likely", "be", "selected", "by", "their", "algorithm", "."], "ner": [[3, 3, "Method"], [11, 11, "Other Scientific Term"], [14, 14, "Other Scientific Term"]], "relations": [[1, 2, "Part-for"]], "discontinuous": false}
{"tokens": ["To", "our", "knowledge", ",", "there", "is", "no", "previous", "attempt", "on", "the", "car", "model", "verification", "task", "."], "ner": [[11, 13, "Task"], [13, 13, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Based", "on", "a", "detailed", "model", "of", "noise", ",", "we", "show", "that", "optimal", "capture", "can", "be", "formulated", "as", "a", "mixed", "integer", "programming", "problem", "."], "ner": [[11, 12, "Other Scientific Term"], [18, 20, "Task"], [19, 20, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "theoretical", "analysis", "and", "understanding", "lag", "behind", "the", "very", "rapid", "evolution", "and", "empirical", "success", "of", "deep", "architectures", ",", "and", "more", "theoretical", "analysis", "is", "needed", "to", "better", "understand", "the", "state", "-", "of", "-", "the", "-", "art", "deep", "architectures", ",", "and", "possibly", "to", "improve", "them", "further", "."], "ner": [[2, 3, "Task"], [3, 3, "Task"], [16, 17, "Method"], [21, 22, "Task"], [22, 22, "Task"], [36, 37, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 4, "Hyponym-of"], [3, 1, "Hyponym-of"], [3, 4, "Hyponym-of"], [0, 3, "Synonymy-of"], [1, 4, "Synonymy-of"], [2, 5, "Synonymy-of"], [2, 0, "Used-for"], [2, 3, "Used-for"], [5, 0, "Used-for"], [5, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "'", "World", "-", "Wide", "Light", "Field", "(", "WWLF", ")", "'", "allows", "machines", "to", "discover", ",", "catalogue", "and", "monitor", "public", "objects", "in", "the", "real", "3D", "world", "."], "ner": [[2, 6, "Other Scientific Term"], [8, 8, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Not", "much", "research", "has", "been", "done", "in", "Morphological", "Analysis", "for", "Tamil", "."], "ner": [[7, 8, "Task"], [8, 8, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "also", "review", "the", "CNNs", "based", "SOD", "models", "."], "ner": [[4, 4, "Method"], [4, 7, "Method"], [6, 7, "Method"], [6, 6, "Task"]], "relations": [[0, 1, "Used-for"], [0, 2, "Used-for"], [1, 2, "Hyponym-of"], [2, 3, "Used-for"], [1, 3, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "observations", "have", "important", "implications", "for", "the", "design", "and", "evaluation", "of", "practical", "compression", "methods", "."], "ner": [[12, 13, "Method"], [12, 12, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Finally", ",", "to", "model", "the", "sequential", "context", "interaction", ",", "we", "develop", "a", "joint", "architecture", "that", "combines", "RNN", "with", "a", "sequential", "labeling", "model", "for", "aspect", "and", "opinion", "terms", "extraction", "."], "ner": [[16, 16, "Method"], [19, 21, "Method"], [19, 20, "Task"], [25, 27, "Task"], [26, 27, "Task"], [27, 27, "Task"], [23, 23, 26, 27, "Task"]], "relations": [[3, 4, "Hyponym-of"], [6, 4, "Hyponym-of"], [4, 5, "Hyponym-of"], [1, 2, "Used-for"], [0, 6, "Used-for"], [1, 6, "Used-for"], [0, 3, "Used-for"], [1, 3, "Used-for"]], "discontinuous": true}
{"tokens": ["We", "simulate", "hardware", "designs", "for", "inference", "on", "our", "model", ",", "the", "first", "hardware", "design", "targeted", "for", "efficient", "evaluation", "of", "ternary", "networks", "and", "end", "-", "to", "-", "end", "neural", "network", "-", "based", "speaker", "identification", "."], "ner": [[5, 5, "Task"], [17, 17, "Task"], [19, 20, "Method"], [22, 32, "Method"], [27, 32, "Method"], [31, 32, "Task"], [32, 32, "Task"]], "relations": [[3, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [4, 5, "Used-for"], [3, 5, "Used-for"]], "discontinuous": false}
{"tokens": ["For", "example", ",", "these", "datasets", "can", "not", "be", "used", "to", "evaluate", "whether", "competitive", "NLI", "models", "can", "determine", "if", "an", "event", "occurred", ",", "correctly", "differentiate", "between", "figurative", "and", "literal", "language", ",", "or", "accurately", "identify", "and", "categorize", "named", "entities", "."], "ner": [[13, 14, "Method"], [13, 13, "Task"], [35, 36, "Other Scientific Term"], [36, 36, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [3, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "evaluate", "our", "model", "against", "a", "standard", "Feed", "-", "Forward", "Autoencoder", "(", "FFA", ")", "and", "perform", "an", "analysis", "in", "regard", "to", "multimodal", "representation", ",", "feature", "extraction", ",", "and", "missing", "data", "generation", "."], "ner": [[7, 10, "Method"], [10, 10, "Method"], [12, 12, "Method"], [21, 22, "Task"], [24, 25, "Task"], [25, 25, "Task"], [28, 30, "Task"], [30, 30, "Task"]], "relations": [[0, 2, "Synonymy-of"], [0, 1, "Hyponym-of"], [2, 1, "Hyponym-of"], [4, 5, "Hyponym-of"], [6, 7, "Hyponym-of"], [0, 3, "Used-for"], [0, 4, "Used-for"], [0, 6, "Used-for"], [2, 3, "Used-for"], [2, 4, "Used-for"], [2, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["Factored", "representations", "have", "also", "been", "used", "to", "tackle", "the", "off", "-", "policy", "policy", "evaluation", "problem", "."], "ner": [[0, 1, "Method"], [9, 13, "Task"], [12, 13, "Task"], [13, 13, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Once", "we", "have", "a", "richer", "structure", "aware", "representation", "for", "the", "utterances", "and", "the", "entities", ",", "we", "use", "a", "sequential", "attention", "mechanism", "to", "compute", "an", "aggregated", "context", "representation", "from", "the", "GCN", "node", "vectors", "of", "the", "query", ",", "history", ",", "and", "entities", "."], "ner": [[5, 7, "Method"], [13, 13, "Other Scientific Term"], [18, 20, "Method"], [18, 19, "Method"], [19, 19, "Method"], [19, 20, "Method"], [24, 26, "Other Scientific Term"], [29, 31, "Other Scientific Term"], [29, 29, "Method"], [30, 30, "Other Scientific Term"], [30, 31, "Other Scientific Term"], [39, 39, "Other Scientific Term"]], "relations": [[1, 11, "Synonymy-of"], [5, 4, "Synonymy-of"], [2, 3, "Synonymy-of"], [2, 4, "Hyponym-of"], [2, 5, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 5, "Hyponym-of"], [7, 10, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "case", "the", "convolutional", "layers", "are", "trained", "to", "learn", "feature", "representations", "from", "constant", "-", "Q", "spectrograms", "of", "vocal", "imitations", "and", "the", "imitated", "sounds", "."], "ner": [[4, 5, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [13, 16, "Other Scientific Term"], [16, 16, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "focus", "on", "EE", "downlink", "transmission", "in", "CRANs", "."], "ner": [[7, 9, "Task"], [8, 9, "Task"], [11, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["To", "test", "if", "the", "proposed", "data", "augmentation", "method", "is", "effective", "in", "improving", "the", "performance", "of", "machine", "learning", "models", ",", "we", "designed", "a", "pilot", "experiment", "to", "distinguish", "between", "ALS", "speech", "and", "ataxic", "speech", "."], "ner": [[5, 6, "Method"], [15, 16, "Method"], [27, 28, "Other Scientific Term"], [30, 31, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "learn", "to", "improve", "the", "speed", "of", "deep", "trackers", "without", "losing", "accuracy", "."], "ner": [[9, 9, "Metric"], [11, 12, "Method"], [12, 12, "Method"], [15, 15, "Metric"]], "relations": [[0, 1, "Evaluate-for"], [3, 1, "Evaluate-for"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["OSDA", "methods", "often", "assume", "which", "classes", "are", "shared", "by", "the", "source", "and", "target", "domains", "are", "known", "at", "training", "."], "ner": [[0, 1, "Method"], [0, 0, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "then", "apply", "STFT", "spectrum", ",", "CQT", "spectrum", "and", "Gammatone", "spectrum", "to", "different", "end", "-", "to", "-", "end", "learning", "networks", "."], "ner": [[3, 3, "Method"], [3, 4, "Other Scientific Term"], [6, 7, "Other Scientific Term"], [6, 6, "Method"], [9, 10, "Other Scientific Term"], [9, 9, "Method"], [13, 19, "Method"], [18, 19, "Method"]], "relations": [[6, 7, "Hyponym-of"], [1, 6, "Used-for"], [2, 6, "Used-for"], [4, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["Attributing", "the", "pixels", "of", "an", "input", "image", "to", "a", "certain", "category", "is", "an", "important", "and", "well", "-", "studied", "problem", "in", "computer", "vision", ",", "with", "applications", "ranging", "from", "weakly", "supervised", "localisation", "to", "understanding", "hidden", "effects", "in", "the", "data", "."], "ner": [[20, 21, "Task"], [27, 29, "Task"], [28, 29, "Task"], [29, 29, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [1, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "then", "decode", "using", "a", "context", "gate", "(", "Tu", "et", "al", ".", ",", "2017", ")", "to", "control", "the", "generation", "of", "words", "that", "directly", "relate", "to", "the", "most", "topical", "words", "of", "the", "context", "and", "promote", "coherence", "."], "ner": [[5, 6, "Method"], [6, 6, "Other Scientific Term"], [18, 18, "Task"]], "relations": [[0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "of", "course", "also", "holds", "for", "logistic", "regression", "and", "SVMs", "."], "ner": [[6, 7, "Method"], [7, 7, "Task"], [9, 9, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "UNL", "-", "French", "deconverter", "under", "development", "first", "performs", "a", "\"", "localization", "\"", "operation", "within", "the", "UNL", "format", ",", "and", "then", "classical", "transfer", "and", "generation", "steps", ",", "using", "the", "Ariane", "-", "G5", "environment", "and", "some", "UNL", "-", "specifc", "tools", "."], "ner": [[1, 4, "Method"], [4, 4, "Method"], [16, 16, "Other Scientific Term"], [24, 24, "Task"], [29, 32, "Other Scientific Term"], [35, 38, "Method"]], "relations": [[0, 1, "Hyponym-of"], [4, 0, "Used-for"], [5, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Over", "the", "last", "decade", ",", "SOC", "based", "on", "exponential", "transformation", "of", "the", "value", "function", "has", "demonstrated", "remarkable", "applicability", "in", "solving", "real", "world", "control", "and", "planning", "problems", "."], "ner": [[5, 5, "Method"], [8, 9, "Method"], [12, 13, "Other Scientific Term"], [24, 24, "Task"]], "relations": [[1, 0, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "employ", "single", "column", "networks", ",", "but", "rather", "than", "focusing", "solely", "on", "density", "map", "estimation", ",", "we", "repurpose", "the", "point", "annotations", "in", "multiple", "ways", "to", "improve", "counting", "."], "ner": [[3, 5, "Method"], [13, 15, "Task"], [13, 14, "Other Scientific Term"], [15, 15, "Task"], [20, 21, "Other Scientific Term"]], "relations": [[1, 3, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Both", "the", "retrieval", "and", "reading", "steps", "can", "be", "slightly", "improved", "by", "incorporating", "sequence", "information", "."], "ner": [[2, 2, "Task"], [12, 13, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Then", ",", "we", "extend", "the", "experiments", "to", "the", "domain", "adaptation", "scenario", "."], "ner": [[8, 9, "Task"], [9, 9, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "have", "proposed", "a", "novel", "model", "-", "free", "approach", "to", "inverse", "reinforcement", "learning", "that", "relaxes", "constraining", "assumptions", "of", "existing", "methods", ",", "that", "the", "transition", "model", "is", "known", ",", "or", "that", "an", "additional", "set", "of", "non", "-", "expert", "trajectories", "is", "available", "."], "ner": [[5, 8, "Method"], [10, 12, "Task"], [11, 12, "Task"], [23, 24, "Method"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "proposed", "ALOQ", ",", "a", "novel", "approach", "to", "using", "BO", "and", "BQ", "to", "perform", "sample", "-", "efficient", "RL", "in", "a", "way", "that", "is", "robust", "to", "the", "presence", "of", "significant", "rare", "events", "."], "ner": [[3, 3, "Method"], [10, 10, "Method"], [12, 12, "Method"], [15, 18, "Method"], [18, 18, "Method"]], "relations": [[1, 0, "Used-for"], [2, 0, "Used-for"], [0, 3, "Used-for"], [3, 4, "Hyponym-of"], [1, 4, "Used-for"], [3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Bonferroni", "correction", "was", "used", "to", "control", "for", "multiple", "comparisons", "."], "ner": [[0, 1, "Method"], [1, 1, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "approach", "additionally", "leverages", "synthetic", "synthetic", "sentences", "targeting", "a", "range", "of", "plausibility", "issues", "and", "trains", "discriminators", "for", "reranking", "."], "ner": [[15, 15, "Method"], [17, 17, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["It", "is", "based", "on", "the", "combination", "of", "three", "classifiers", "exploiting", "the", "iris", "color", "and", "texture", "information", "."], "ner": [[8, 8, "Method"], [14, 15, "Other Scientific Term"], [11, 12, 15, 15, "Other Scientific Term"], [11, 11, 14, 15, "Other Scientific Term"]], "relations": [[2, 0, "Used-for"], [3, 0, "Used-for"], [1, 0, "Used-for"]], "discontinuous": true}
{"tokens": ["We", "demonstrate", "the", "applicability", "of", "our", "approach", "for", "trajectory", "computation", "for", "active", "navigation", "and", "dynamic", "intervention", "in", "simulated", "autonomous", "robot", "-", "human", "interaction", "scenarios", "."], "ner": [[8, 9, "Task"], [11, 12, "Task"], [14, 15, "Task"], [18, 22, "Task"], [19, 22, "Task"]], "relations": [[3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "combination", "between", "CTK", "and", "CNNs", "produces", "a", "further", "boost", ",", "achieving", "an", "MRR", "of", "75.52", "and", "an", "MAP", "of", "73.99", ",", "confirming", "that", "the", "research", "line", "of", "combining", "these", "two", "interesting", "machine", "learning", "methods", "is", "very", "promising", "."], "ner": [[3, 3, "Method"], [5, 5, "Method"], [13, 13, "Metric"], [18, 18, "Metric"], [32, 33, "Method"]], "relations": [[0, 4, "Hyponym-of"], [1, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Therefore", ",", "machine", "learning", "-", "based", "approaches", "are", "widely", "used", "in", "NLP", "for", "unsegmented", "languages", "."], "ner": [[2, 6, "Method"], [11, 11, "Task"], [13, 14, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "Section", "2", ",", "we", "describe", "the", "model", "definition", "and", "how", "to", "train", "the", "models", "with", "the", "fixed", "basis", "vectors", "."], "ner": [[17, 19, "Other Scientific Term"], [18, 19, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["A", "DA", "technique", "based", "on", "an", "eigen", "-", "domain", "transformation", "was", "proposed", "to", "make", "the", "distributions", "of", "gallery", "(", "as", "source", ")", "features", "identical", "to", "that", "of", "probe", "(", "as", "target", ")", "samples", "."], "ner": [[1, 2, "Method"], [1, 1, "Task"], [6, 9, "Method"]], "relations": [[0, 1, "Used-for"], [2, 0, "Used-for"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Moreover", ",", "AT", "can", "be", "applied", "to", "any", "end", "-", "to", "-", "end", "ASR", "model", "using", "any", "deep", "-", "learning", "-", "based", "language", "modeling", "frameworks", ",", "and", "compatible", "with", "any", "existing", "end", "-", "to", "-", "end", "decoding", "method", "."], "ner": [[2, 2, "Method"], [8, 13, "Method"], [13, 13, "Task"], [17, 23, "Method"], [22, 23, "Task"], [31, 36, "Method"], [36, 36, "Task"]], "relations": [[5, 6, "Used-for"], [3, 4, "Used-for"], [1, 2, "Used-for"], [0, 1, "Used-for"], [0, 2, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "work", "presented", "here", "lies", "within", "the", "scope", "of", "ongoing", "research", "activities", "of", "the", "eSPERTo", "project", "2", ",", "which", "aims", "to", "develop", "an", "automated", "paraphraser", "to", "assist", "writers", "and", "language", "learners", "in", "text", "production", "and", "revision", "."], "ner": [[23, 24, "Method"], [24, 24, "Method"], [32, 33, "Task"], [33, 33, "Task"], [32, 32, 35, 35, "Task"]], "relations": [[2, 3, "Hyponym-of"], [0, 1, "Hyponym-of"], [0, 2, "Used-for"], [0, 4, "Used-for"]], "discontinuous": true}
{"tokens": ["These", "platforms", "vary", "with", "respect", "to", "the", "3D", "scene", "data", "they", "use", ",", "the", "embodied", "agent", "tasks", "they", "address", ",", "and", "the", "evaluation", "protocols", "they", "implement", "."], "ner": [[7, 8, "Other Scientific Term"], [8, 8, "Other Scientific Term"], [14, 16, "Task"], [14, 15, "Other Scientific Term"], [15, 15, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [3, 4, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "are", "not", "the", "first", "to", "attempt", "to", "migrate", "SIMPLEQUESTIONS", "to", "another", "knowledge", "graph", "."], "ner": [[9, 9, "Material"], [12, 13, "Other Scientific Term"], [13, 13, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["More", "recent", "studies", "address", "the", "problem", "proposing", "methods", "for", "extending", "the", "capabilities", "of", "existing", "deep", "architectures", "by", "adding", "few", "task", "-", "specific", "parameters", "."], "ner": [[14, 15, "Method"], [19, 22, "Other Scientific Term"]], "relations": [[1, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["Extensive", "qualitative", "and", "quantitative", "evaluations", "validate", "the", "effectiveness", "of", "our", "model", "for", "font", "retrieval", "."], "ner": [[3, 4, "Task"], [4, 4, "Task"], [12, 13, "Task"], [13, 13, "Task"], [1, 1, 4, 4, "Task"]], "relations": [[0, 1, "Hyponym-of"], [4, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["We", "apply", "our", "methods", "to", "solving", "the", "problem", "of", "a", "multi", "-", "class", "document", "categorization", "."], "ner": [[10, 14, "Task"], [13, 14, "Task"], [14, 14, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["These", "methods", "do", "not", "respect", "self", "-", "shadowing", "and", "are", "therefore", "not", "suited", "to", "reconstruct", "details", "lit", "by", "self", "-", "shadowing", "."], "ner": [[5, 7, "Other Scientific Term"], [18, 20, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["To", "reduce", "the", "ambiguities", "associated", "with", "the", "surface", "geometry", "reconstruction", ",", "even", "for", "the", "reconstruction", "of", "invisible", "areas", ",", "we", "propose", "and", "leverage", "a", "dense", "semantic", "representation", "generated", "from", "SMPL", "model", "as", "an", "additional", "input", "."], "ner": [[3, 3, "Problem"], [7, 9, "Task"], [8, 9, "Task"], [9, 9, "Task"], [14, 14, "Task"], [24, 26, "Method"], [25, 26, "Method"], [29, 29, "Method"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [2, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [5, 1, "Used-for"], [3, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "the", "rest", "of", "this", "paper", ",", "we", "describe", "simultaneous", "object", "modeling", "and", "tracking", "in", "Section", "2", "."], "ner": [[9, 11, "Task"], [10, 11, "Task"], [9, 10, 13, 13, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["In", "all", "the", "automatic", "summarization", "conditions", ",", "both", "our", "previous", "one", "-", "stage", "method", "without", "sentence", "extraction", "and", "our", "new", "two", "-", "stage", "method", "including", "sentence", "extraction", "achieve", "better", "results", "than", "random", "word", "selection", "."], "ner": [[3, 4, "Task"], [4, 4, "Task"], [15, 16, "Task"], [16, 16, "Task"], [25, 26, "Task"], [26, 26, "Task"], [31, 33, "Method"]], "relations": [[0, 1, "Hyponym-of"], [6, 0, "Used-for"], [3, 5, "Synonymy-of"], [2, 3, "Hyponym-of"], [2, 5, "Hyponym-of"], [4, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [2, 4, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "annotated", "patterns", "can", "be", "used", "to", "create", "datasets", "that", "enable", "machine", "learning", "approaches", "to", "pattern", "quality", "estimation", "and", "relation", "extraction", "."], "ner": [[11, 12, "Method"], [15, 17, "Task"], [16, 17, "Task"], [17, 17, "Task"], [19, 20, "Task"], [20, 20, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [0, 1, "Used-for"], [0, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "experiments", "show", "that", ",", "when", "trained", "following", "certain", "sampling", "strategies", "and", "training", "curriculum", ",", "the", "synthetic", "CM", "sentences", "are", "indeed", "able", "to", "improve", "the", "perplexity", "of", "the", "trained", "LM", "over", "a", "baseline", "model", "that", "uses", "only", "monolingual", "and", "real", "CM", "data", "."], "ner": [[9, 9, "Method"], [17, 17, "Other Scientific Term"], [25, 25, "Metric"], [29, 29, "Method"], [32, 32, "Other Scientific Term"], [40, 40, "Other Scientific Term"]], "relations": [[1, 5, "Synonymy-of"], [2, 3, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Besides", "SDR", ",", "the", "literature", "does", "not", "offer", "many", "other", "numerical", "approaches", "to", "tackle", "UQP", "."], "ner": [[1, 1, "Method"], [10, 11, "Method"], [14, 14, "Task"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["On", "the", "contrary,the", "conventional", "SPSS", "methods", ",", "which", "have", "four", "pipelines", "including", "text", "analysis", ",", "prosody", "prediction", ",", "acoustic", "model", "and", "vocoder", ",", "are", "more", "robust", "and", "have", "small", "footprints", "."], "ner": [[4, 4, "Method"], [12, 13, "Method"], [15, 16, "Method"], [18, 19, "Method"], [21, 21, "Method"]], "relations": [[1, 0, "Part-for"], [2, 0, "Part-for"], [3, 0, "Part-for"], [4, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["Our", "experimental", "results", "show", "that", "the", "proposed", "ranking", "metric", "embedded", "dictionary", "learning", "method", "is", "effective", "for", "improving", "the", "person", "Re", "-", "Id", "performance", "."], "ner": [[7, 11, "Method"], [10, 11, "Method"], [18, 21, "Task"], [19, 21, "Task"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "focus", "on", "generating", "videos", "from", "text", ",", "namely", "text", "-", "to", "-", "video", "generation", "."], "ner": [[13, 18, "Task"], [18, 18, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "observe", "that", "whenever", "the", "precision", "is", "moderately", "large", ",", "the", "worse", "of", "the", "precision", "and", "recall", "is", "within", "a", "small", "constant", "factor", "of", "the", "accuracy", "weighted", "by", "the", "class", "imbalance", "."], "ner": [[5, 5, "Metric"], [14, 14, "Metric"], [16, 16, "Metric"], [25, 25, "Metric"], [29, 30, "Problem"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Furthermore", ",", "we", "also", "describe", "covariance", "recovery", "for", "VO", "estimates", "from", "our", "pipeline", ",", "using", "dropout", "[", "20", "]", "to", "perform", "approximate", "Bayesian", "inference", "[", "11", "]", "."], "ner": [[5, 6, "Task"], [8, 9, "Task"], [8, 8, "Other Scientific Term"], [15, 15, "Method"], [21, 23, "Method"], [22, 23, "Method"]], "relations": [[4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "also", "make", "a", "proof", "-", "of", "-", "concept", "simulation", "and", "an", "AB", "preference", "test", "which", "both", "show", "that", "P", "-", "VAST", "outperforms", "traditional", "sound", "zone", "control", "methods", "in", "terms", "of", "perceptually", "meaningful", "metrics", "such", "as", "STOI", "and", "PESQ", "in", "a", "fairly", "simple", "set", "-", "up", "."], "ner": [[4, 9, "Method"], [4, 8, "Method"], [12, 14, "Method"], [19, 21, "Method"], [24, 27, "Method"], [24, 26, "Task"], [36, 36, "Metric"], [38, 38, "Metric"]], "relations": [[4, 5, "Used-for"], [3, 5, "Used-for"], [6, 4, "Evaluate-for"], [7, 4, "Evaluate-for"], [6, 5, "Evaluate-for"], [7, 5, "Evaluate-for"], [6, 3, "Evaluate-for"], [7, 3, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "the", "case", "of", "anomaly", "detection", ",", "the", "hyperparameter", "search", "can", "not", "be", "formalized", ",", "since", "there", "are", "not", "enough", "anomalous", "data", "points", "available", "."], "ner": [[4, 5, "Task"], [4, 4, "Other Scientific Term"], [5, 5, "Task"], [8, 9, "Method"], [8, 8, "Other Scientific Term"], [20, 22, "Other Scientific Term"], [21, 22, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [5, 6, "Hyponym-of"], [3, 0, "Used-for"], [5, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Those", "document", "representations", "are", "directly", "used", "by", "the", "architecture", "to", "make", "classification", "decisions", "."], "ner": [[1, 2, "Method"], [11, 11, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["For", "this", "low", "-", "shot", "weakly", "supervised", "object", "detection", "task", ",", "we", "propose", "a", "novel", "box", "transfer", "method", "to", "correct", "the", "incomplete", "box", "predictions", "."], "ner": [[2, 8, "Task"], [5, 8, "Task"], [6, 8, "Task"], [7, 8, "Task"], [8, 8, "Task"], [15, 17, "Method"], [15, 15, "Other Scientific Term"], [22, 22, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [5, 0, "Used-for"], [6, 7, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Initially", "the", "author", "produced", "an", "index", "of", "the", "WT10", "G", "and", "performed", "retrieval", "on", "this", "unmodified", "collection", "in", "order", "to", "measure", "baseline", "retrieval", "effectiveness", "."], "ner": [[8, 9, "Material"], [12, 12, "Task"], [21, 21, "Other Scientific Term"], [22, 22, "Task"], [23, 23, "Metric"]], "relations": [[0, 1, "Used-for"], [1, 3, "Synonymy-of"], [0, 3, "Used-for"], [4, 3, "Evaluate-for"], [4, 1, "Evaluate-for"], [4, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "proposed", "to", "extend", "these", "approaches", "to", "the", "case", "of", "a", "multisymbol", "receiver", "including", "some", "memory", "in", "the", "decoding", "process", "."], "ner": [[15, 16, "Method"], [16, 16, "Method"], [22, 22, "Task"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "by", "taking", "the", "Faster", "-", "RCNN", "as", "backbone", ",", "we", "take", "into", "account", "the", "mind", "of", "domain", "transfer", "adaptation", "for", "exploring", "unrestricted", "object", "detection", "task", "across", "different", "domains", "."], "ner": [[7, 9, "Method"], [20, 22, "Method"], [21, 22, "Task"], [22, 22, "Task"], [25, 27, "Task"], [26, 27, "Task"], [27, 27, "Task"]], "relations": [[2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [5, 6, "Hyponym-of"], [1, 4, "Used-for"], [1, 0, "Used-for"], [0, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["Considering", "the", "dependencies", "among", "different", "levels", "of", "features", ",", "a", "bidirectional", "RNN", "model", "consisting", "of", "gated", "recurrent", "unit", "is", "proposed", "to", "capture", "this", "relationship", "and", "integrate", "different", "levels", "of", "features", "together", "."], "ner": [[10, 11, "Method"], [11, 11, "Method"], [15, 17, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["Our", "work", "is", "the", "first", "to", "consider", "multi", "-", "attribute", "fair", "representation", "learning", ",", "which", "we", "accomplish", "by", "using", "sensitive", "attributes", "as", "labels", "to", "induce", "a", "factorized", "structure", "in", "the", "aggregate", "latent", "code", "."], "ner": [[7, 12, "Task"], [10, 12, "Task"], [11, 12, "Task"], [26, 27, "Other Scientific Term"], [31, 32, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["After", "formalizing", "the", "problem", "setup", "in", "Section", "2", ",", "we", "analyze", "a", "simple", "GMS", "method", "in", "Section", "3", "."], "ner": [[13, 14, "Method"], [13, 13, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "NLP", ",", "word", "embeddings", "are", "often", "used", "as", "features", "for", "downstream", "tasks", "."], "ner": [[1, 1, "Task"], [3, 4, "Other Scientific Term"], [4, 4, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "addition", ",", "we", "compare", "using", "affine", "-", "invariant", "losses", "to", "using", "scale", "-", "invariant", "and", "ordinary", "losses", "and", "demonstrate", "that", "affine", "-", "invariant", "losses", "improve", "baseline", "methods", "for", "predicting", "depth", "from", "dual", "-", "pixel", "images", "."], "ner": [[6, 9, "Other Scientific Term"], [9, 9, "Other Scientific Term"], [17, 17, "Other Scientific Term"], [21, 24, "Other Scientific Term"], [24, 24, "Other Scientific Term"], [26, 26, "Other Scientific Term"], [32, 35, "Other Scientific Term"], [12, 14, 17, 17, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Hyponym-of"], [0, 4, "Hyponym-of"], [7, 1, "Hyponym-of"], [7, 2, "Hyponym-of"], [7, 4, "Hyponym-of"], [3, 1, "Hyponym-of"], [3, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [0, 3, "Synonymy-of"], [1, 2, "Synonymy-of"], [1, 4, "Synonymy-of"], [2, 4, "Synonymy-of"]], "discontinuous": true}
{"tokens": ["Other", "uncertainty", "sampling", "techniques", "will", "also", "be", "employed", "."], "ner": [[1, 2, "Method"], [2, 2, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "Section", "3", ",", "we", "describe", "the", "procedure", "of", "our", "proposed", "approach", "of", "multi", "-", "task", "ensemble", "creation", "(", "MTEC", ")", "."], "ner": [[13, 17, "Method"], [16, 17, "Method"], [19, 19, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 1, "Hyponym-of"], [0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "propose", "to", "use", "distributional", "RL", "methods", "to", "achieve", "this", "optimism", "."], "ner": [[8, 9, "Method"], [9, 9, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Experiment", "results", "demonstrate", "that", "our", "joint", "model", "outperforms", "methods", "addressing", "either", "component", "task", "in", "isolation", ",", "and", "that", "by", "leveraging", "the", "3D", "contextual", "information", "and", "the", "synthetic", "training", "data", ",", "we", "significantly", "outperform", "alternative", "approaches", "on", "the", "semantic", "scene", "completion", "task", "."], "ner": [[37, 39, "Task"], [37, 38, "Other Scientific Term"], [38, 38, "Other Scientific Term"], [38, 39, "Task"], [39, 39, "Task"]], "relations": [[0, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Additionally", ",", "through", "a", "case", "study", ",", "we", "also", "demonstrate", "the", "potential", "benefits", "of", "the", "proposed", "approach", "for", "non", "-", "native", "speech", "recognition", "."], "ner": [[18, 22, "Task"], [21, 22, "Task"], [22, 22, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Experiments", "on", "robust", "PCA", "and", "overlapping", "group", "lasso", "show", "that", "PDMM", "is", "faster", "than", "existing", "methods", "."], "ner": [[3, 3, "Method"], [5, 7, "Method"], [7, 7, "Method"], [10, 10, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Automatic", "deception", "detection", "is", "an", "important", "problem", "with", "far", "-", "reaching", "implications", "for", "many", "disciplines", "."], "ner": [[0, 2, "Task"], [1, 2, "Task"], [2, 2, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "proposed", "attention", "guided", "fusion", "mechanism", "further", "improves", "accuracy", "."], "ner": [[2, 5, "Method"], [2, 2, "Method"], [4, 5, "Method"], [8, 8, "Metric"]], "relations": [[1, 2, "Used-for"], [1, 0, "Used-for"], [0, 2, "Hyponym-of"], [3, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["We", "are", "currently", "developing", "an", "hybrid", "approach", "which", "simultaneously", "tackles", "the", "uncertainty", "and", "complexity", "of", "dialogue", "management", ",", "based", "on", "a", "POMDP", "framework", "."], "ner": [[5, 6, "Method"], [13, 13, "Metric"], [15, 16, "Task"], [15, 15, "Task"], [21, 21, "Method"]], "relations": [[0, 2, "Used-for"], [1, 2, "Evaluate-for"], [4, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "test", "our", "hypothesis", "and", "present", "our", "results", "for", "opinion", "mining", "from", "product", "reviews", "."], "ner": [[9, 10, "Task"], [10, 10, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Semantic", "knowledge", ",", "expressed", "in", "terms", "of", "concepts", "and", "relations", "holding", "among", "them", ",", "is", "an", "essential", "enabling", "component", "of", "NLP", "applications", "(", "Jurgens", "and", "Pilehvar", ",", "2015", ")", "."], "ner": [[0, 1, "Other Scientific Term"], [20, 20, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "treat", "this", "problem", "as", "a", "multi", "-", "task", "learning", "problem", "where", "the", "same", "embedding", "and", "LSTM", "layers", "are", "shared", "."], "ner": [[6, 9, "Task"], [14, 14, "Other Scientific Term"], [16, 16, "Method"], [16, 17, "Other Scientific Term"]], "relations": [[3, 2, "Part-for"], [1, 0, "Used-for"], [2, 0, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "provides", "the", "first", "practically", "applicable", "learning", "to", "search", "algorithm", "for", "learning", "from", "bandit", "feedback", "."], "ner": [[6, 9, "Method"], [6, 8, "Task"], [13, 14, "Other Scientific Term"], [13, 13, "Method"]], "relations": [[0, 1, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "OFS", "-", "CNN", "also", "beats", "the", "CNN", "using", "multiple", "filter", "sizes", "and", "more", "importantly", ",", "is", "much", "more", "efficient", "during", "testing", "with", "the", "proposed", "forward", "-", "backward", "propagation", "algorithm", "."], "ner": [[1, 3, "Method"], [7, 7, "Method"], [10, 10, "Method"], [25, 28, "Method"]], "relations": [[3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "the", "literature", ",", "the", "challenges", "of", "robot", "imitation", "and", "motion", "assessment", "by", "robot", "coaches", "are", "usually", "addressed", "separately", "."], "ner": [[10, 11, "Task"], [11, 11, "Task"], [7, 8, "Task"], [7, 7, 10, 11, "Task"]], "relations": [[0, 1, "Hyponym-of"], [3, 1, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["In", "this", "paper", "we", "investigate", "the", "use", "of", "variable", "word", "rate", "assumption", ",", "modelled", "by", "a", "Poisson", "distribution", "or", "a", "continuous", "mixture", "of", "Poissons", "."], "ner": [[8, 11, "Other Scientific Term"], [8, 10, "Other Scientific Term"], [9, 10, "Other Scientific Term"], [16, 17, "Method"], [20, 23, "Method"], [21, 23, "Method"]], "relations": [[1, 2, "Hyponym-of"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["A", "system", "like", "the", "one", "at", "Althingi", "is", "therefore", "a", "good", "example", "of", "a", "system", "where", "lattice", "re", "-", "scoring", "using", "search", "updates", "could", "be", "useful", "."], "ner": [[6, 6, "Method"], [16, 19, "Method"], [17, 19, "Method"], [21, 22, "Method"]], "relations": [[1, 2, "Hyponym-of"], [3, 1, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["To", "better", "understand", "the", "nature", "of", "sexism", ",", "sentiment", "analysis", "can", "be", "done", "."], "ner": [[8, 9, "Task"], [9, 9, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["By", "using", "timestamp", "contribution", "and", "information", "decay", "functions", ",", "our", "method", "can", "effectively", "utilize", "temporal", "information", "for", "both", "taxonomic", "relation", "identification", "and", "taxonomy", "update", "."], "ner": [[2, 3, "Other Scientific Term"], [5, 7, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [18, 20, "Task"], [19, 20, "Task"], [20, 20, "Task"], [22, 23, "Task"]], "relations": [[3, 4, "Hyponym-of"], [4, 5, "Hyponym-of"], [2, 3, "Used-for"], [2, 6, "Used-for"], [0, 3, "Used-for"], [0, 6, "Used-for"], [1, 3, "Used-for"], [1, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "addition", ",", "semantic", "structures", "are", "our", "basis", "for", "representing", "dialog", "phenomena", "such", "as", "multimodal", "references", "and", "user", "queries", "."], "ner": [[3, 4, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [17, 18, "Other Scientific Term"]], "relations": [[2, 1, "Hyponym-of"], [3, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "first", "one", "is", "that", "the", "ATE", "approaches", "may", "extract", "terms", "that", "are", "not", "actual", "terms", "(", "\"", "noise", "\"", ")", "or", "do", "not", "extract", "actual", "terms", "(", "\"", "silence", "\"", ")", "."], "ner": [[6, 7, "Method"], [6, 6, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "allow", "us", "to", "exploit", "global", "energy", "minimization", "methods", "in", "order", "to", "alleviate", "problems", "in", "texture", "-", "less", "regions", "and", "produce", "dense", "flow", "fields", "."], "ner": [[5, 7, "Method"], [6, 7, "Method"], [21, 23, "Other Scientific Term"], [21, 22, "Other Scientific Term"], [22, 23, "Other Scientific Term"]], "relations": [[2, 4, "Hyponym-of"], [0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Lack", "of", "explicit", "models", "to", "exploit", "the", "word", "reordering", "knowledge", "may", "lead", "to", "attention", "faults", "and", "generate", "fluent", "but", "inaccurate", "or", "inadequate", "translations", "."], "ner": [[7, 9, "Other Scientific Term"], [7, 8, "Task"], [8, 8, "Task"], [13, 14, "Problem"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "show", "over", "8", "%", "relative", "improvement", "in", "WER", "at", "10", "dB", "SNR", "for", "a", "real", "world", "Voice", "Search", "ASR", "system", "."], "ner": [[8, 8, "Metric"], [12, 12, "Metric"], [17, 20, "Method"], [17, 18, "Task"], [19, 19, "Task"], [19, 20, "Method"]], "relations": [[5, 4, "Used-for"], [0, 2, "Evaluate-for"], [2, 4, "Used-for"], [2, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["An", "analysis", "of", "the", "computational", "complexity", "and", "simulation", "examples", "are", "provided", "to", "support", "our", "study", "."], "ner": [[4, 5, "Metric"], [5, 5, "Metric"], [7, 7, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Hence", ",", "maxRPC", ",", "RPC", "and", "other", "domain", "filtering", "variants", "of", "PC", "have", "been", "proposed", "."], "ner": [[2, 2, "Method"], [4, 4, "Method"], [7, 8, "Method"], [11, 11, "Method"]], "relations": [[1, 3, "Hyponym-of"], [0, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "active", "approach", "is", "however", "equally", "applicable", "to", "passive", "cameras", "in", "any", "real", "-", "time", "system", ",", "encompassing", "wide", "fields", "such", "as", "tracking", ",", "robot", "guidance", "or", "SLAM", "/", "SFM", "."], "ner": [[1, 2, "Method"], [8, 9, "Other Scientific Term"], [12, 15, "Method"], [22, 22, "Task"], [24, 25, "Task"], [27, 27, "Task"], [29, 29, "Task"]], "relations": [[0, 3, "Used-for"], [0, 4, "Used-for"], [0, 5, "Used-for"], [0, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "evaluate", "the", "estimation", "accuracy", "of", "the", "contributing", "distributions", "to", "the", "detected", "anomalies", "by", "deep", "learning", "-", "based", "techniques", "with", "synthetic", "anomalies", "."], "ner": [[3, 4, "Metric"], [4, 4, "Metric"], [12, 12, "Other Scientific Term"], [14, 18, "Method"], [20, 21, "Other Scientific Term"], [21, 21, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 5, "Synonymy-of"], [4, 5, "Hyponym-of"], [4, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "summarization", "systems", "tend", "to", "appear", "as", "black", "boxes", "from", "the", "user", "'s", "perspective", "and", "the", "users", "can", "not", "specify", "what", "they", "would", "want", "in", "the", "summary", "."], "ner": [[2, 3, "Method"], [2, 2, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Therefore", ",", "we", "develop", "an", "alignment", "classifier", "that", "uses", "the", "compatibility", "of", "contexts", "in", "which", "the", "candidate", "arguments", "are", "embedded", "."], "ner": [[5, 6, "Method"], [5, 5, "Task"], [6, 6, "Method"], [10, 10, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["A", "set", "of", "500", "K", "classification", "problems", "provides", "a", "great", "experimental", "framework", "for", "testing", "text", "representation", "and", "classification", "algorithms", "."], "ner": [[5, 5, "Task"], [14, 15, "Task"], [14, 15, 18, 18, "Method"], [14, 14, 17, 18, "Method"], [14, 14, 17, 17, "Task"]], "relations": [[2, 1, "Used-for"], [3, 4, "Used-for"]], "discontinuous": true}
{"tokens": ["In", "this", "situation", "we", "might", "want", "to", "perform", "audio", "sensing", "tasks", ",", "e.g.", "diarization", ",", "and", "although", "we", "have", "access", "to", "a", "large", "number", "of", "recordings", "in", "the", "room", ",", "not", "all", "will", "be", "of", "use", "."], "ner": [[8, 9, "Task"], [13, 13, "Task"]], "relations": [[1, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "then", "introduce", "a", "K", "-", "way", "classifier", "that", "predicts", "the", "cluster", "or", "mode", "index", "of", "each", "patch", ",", "which", "can", "be", "supervised", "in", "the", "source", "domain", "but", "not", "in", "the", "target", "domain", "."], "ner": [[4, 7, "Method"], [7, 7, "Method"], [11, 11, "Other Scientific Term"], [13, 14, "Other Scientific Term"], [17, 17, "Other Scientific Term"], [25, 26, "Other Scientific Term"], [31, 32, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "model", "generates", "parameters", "of", "a", "3D", "affine", "transformation", ",", "but", "the", "transformation", "is", "applied", "analytically", "without", "warping", ",", "which", "is", "likely", "to", "be", "more", "stable", "."], "ner": [[6, 8, "Method"], [7, 8, "Method"], [17, 17, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "supervised", "paradigm", ",", "the", "task", "is", "considered", "as", "a", "multi", "-", "class", "classification", "problem", "but", "suffers", "from", "lack", "of", "large", "labeled", "training", "data", "."], "ner": [[1, 2, "Method"], [10, 13, "Task"], [13, 13, "Task"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "propose", "a", "neural", "-", "network", "based", "framework", "for", "visual", "question", "generation", "using", "interrogative", "words", "as", "question", "type", "to", "organize", "questions", "and", "enforce", "the", "diversification", "of", "the", "results", "."], "ner": [[7, 9, "Method"], [13, 15, "Task"], [14, 15, "Task"], [15, 15, "Task"], [17, 18, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 1, "Used-for"], [4, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "way", ",", "an", "inductive", "local", "representation", "with", "explicit", "reasoning", "about", "the", "spatial", "layout", "of", "points", "can", "be", "obtained", ",", "which", "leads", "to", "much", "shape", "awareness", "and", "robustness", "."], "ner": [[5, 7, "Method"], [6, 7, "Method"], [13, 14, "Other Scientific Term"], [25, 26, "Other Scientific Term"], [28, 28, "Metric"]], "relations": [[0, 1, "Hyponym-of"], [4, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["By", "incorporating", "the", "ideas", "used", "there", ",", "it", "seems", "possible", "to", "improve", "the", "approximation", "ratio", "for", "SGPP", "."], "ner": [[13, 14, "Metric"], [16, 16, "Task"]], "relations": [[0, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "contrast", "to", "instance", "agnostic", "semantic", "labelling", "that", "groups", "pixels", "by", "object", "class", ",", "instance", "segmentation", "groups", "pixels", "by", "object", "instance", "and", "ignores", "classes", "."], "ner": [[3, 6, "Task"], [5, 6, "Task"], [6, 6, "Task"], [14, 15, "Task"], [15, 15, "Task"], [17, 17, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "design", "a", "tracing", "mechanism", "that", "supports", "omniscient", "debugging", "for", "cognitive", "agents", ",", "a", "technique", "that", "facilitates", "debugging", "by", "moving", "backwards", "in", "time", "through", "a", "program", "'s", "execution", "."], "ner": [[3, 3, "Task"], [3, 4, "Method"], [7, 8, "Method"], [10, 11, "Method"], [11, 11, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"], [1, 2, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "aim", "in", "this", "paper", "was", "to", "shed", "light", "on", "how", "the", "intrinsic", "evaluation", "methodologies", "that", "dominate", "current", "comparative", "HLT", "evaluations", "correlate", "with", "human", "task", "-", "performance", "evaluations", "more", "in", "keeping", "with", "NLG", "traditions", "."], "ner": [[13, 14, "Method"], [13, 13, "Task"], [19, 20, "Task"], [19, 19, "Task"], [20, 20, "Task"], [23, 27, "Task"], [24, 27, "Task"], [27, 27, "Task"], [32, 32, "Task"]], "relations": [[5, 6, "Hyponym-of"], [6, 7, "Hyponym-of"], [2, 4, "Hyponym-of"], [0, 1, "Used-for"], [1, 4, "Synonymy-of"], [1, 7, "Synonymy-of"], [4, 7, "Synonymy-of"], [0, 1, "Used-for"], [0, 4, "Used-for"], [0, 7, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "proposed", "Max", "-", "Margin", "Loss", ",", "on", "the", "other", "hand", ",", "cover", "these", "problems", "by", "calculating", "inter", "-", "class", "separating", "hyperplanes", "and", "pushing", "all", "the", "samples", "to", "the", "correct", "side", "of", "the", "margin", "accordance", "with", "their", "proximity", "to", "the", "margin", "."], "ner": [[2, 5, "Method"], [5, 5, "Other Scientific Term"], [17, 21, "Other Scientific Term"], [20, 21, "Other Scientific Term"], [21, 21, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["To", "this", "end", ",", "we", "propose", "to", "use", "three", "basic", "operations", "on", "vectors", "in", "the", "latent", "space", ":", "linear", "interpolation", ",", "crossover", ",", "and", "adding", "a", "vector", "and", "a", "scaled", "difference", "vector", "."], "ner": [[15, 16, "Other Scientific Term"], [18, 19, "Method"], [19, 19, "Method"], [21, 21, "Method"], [29, 31, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["It", "is", "possible", "that", "a", "high", "precision", "model", "would", "be", "useful", "to", "practitioners", "in", "situations", "where", "classification", "precision", "is", "more", "important", "than", "recall", "."], "ner": [[6, 6, "Metric"], [16, 16, "Task"], [17, 17, "Metric"], [22, 22, "Metric"]], "relations": [[0, 2, "Synonymy-of"], [0, 1, "Evaluate-for"], [2, 1, "Evaluate-for"], [3, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["The", "experiments", "on", "translation", "direction", "identification", "suggest", "that", "translated", "texts", "have", "lower", "lexical", "richness", "and", "higher", "number", "of", "frequent", "words", "."], "ner": [[3, 5, "Task"], [3, 4, "Other Scientific Term"], [5, 5, "Task"], [12, 13, "Metric"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "report", "experimental", "results", "on", "two", "scene", "parsing", "benchmarks", "including", "ADE20", "K", "dataset", "[", "Zhou", "et", "al", ".", ",", "2016", "]", "and", "Cityscapes", "dataset", "[", "Cordts", "et", "al", ".", ",", "2016", "]", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"], [8, 8, "Other Scientific Term"], [10, 11, "Material"], [22, 22, "Material"]], "relations": [[0, 1, "Hyponym-of"], [3, 0, "Used-for"], [4, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", "we", "proposed", "a", "new", "and", "improved", "spectral", "method", ",", "a", "two", "-", "step", "alternative", "(", "TSCCA", ")", "to", "the", "standard", "CCA", "(", "OSCCA", ")", "which", "can", "be", "used", "in", "domains", "such", "as", "Text", "/", "NLP", "which", "contain", "word", "sequences", "and", "where", "one", "has", "three", "views", "(", "the", "left", "context", ",", "the", "right", "context", ",", "and", "the", "words", "of", "interest", "themselves", ")", "."], "ner": [[9, 10, "Method"], [18, 18, "Method"], [23, 23, "Method"], [25, 25, "Method"], [35, 35, "Task"], [37, 37, "Task"]], "relations": [[1, 0, "Hyponym-of"], [0, 4, "Used-for"], [0, 5, "Used-for"], [1, 4, "Used-for"], [1, 5, "Used-for"], [2, 0, "Hyponym-of"], [3, 0, "Hyponym-of"], [3, 2, "Synonymy-of"], [2, 4, "Used-for"], [2, 5, "Used-for"], [3, 4, "Used-for"], [3, 5, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "work", ",", "we", "find", "that", "the", "statistical", "correlations", "between", "object", "pairs", "and", "their", "relationships", "can", "effectively", "regularize", "semantic", "space", "and", "make", "prediction", "less", "ambiguous", ",", "and", "thus", "well", "address", "the", "unbalanced", "distribution", "issue", "."], "ner": [[8, 9, "Other Scientific Term"], [19, 20, "Other Scientific Term"], [32, 33, "Problem"]], "relations": [[0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "order", "to", "demonstrate", "the", "contribution", "of", "each", "part", "of", "the", "proposed", "architecture", ",", "we", "compare", "variants", "of", "the", "proposed", "algorithms", "by", "removing", "the", "social", "gate", "of", "SRGP", "(", "SRGP", "without", "social", "gate", ")", ",", "removing", "the", "module", "of", "Gaussian", "processes", "(", "SRGP", "without", "Gaussian", "processes", ")", ",", "and", "predicting", "the", "future", "paths", "with", "SRGP", "over", "trajectories", ",", "respectively", "."], "ner": [[24, 25, "Method"], [27, 27, "Method"], [29, 29, "Method"], [31, 32, "Method"], [39, 40, "Method"], [42, 42, "Method"], [44, 45, "Method"], [54, 54, "Method"]], "relations": [[1, 2, "Synonymy-of"], [1, 5, "Synonymy-of"], [1, 7, "Synonymy-of"], [2, 5, "Synonymy-of"], [2, 7, "Synonymy-of"], [5, 7, "Synonymy-of"], [0, 3, "Synonymy-of"], [0, 1, "Part-for"], [0, 2, "Part-for"], [0, 5, "Part-for"], [0, 7, "Part-for"], [3, 1, "Part-for"], [3, 2, "Part-for"], [3, 5, "Part-for"], [3, 7, "Part-for"], [4, 6, "Synonymy-of"], [4, 1, "Part-for"], [4, 2, "Part-for"], [4, 5, "Part-for"], [4, 7, "Part-for"], [6, 1, "Part-for"], [6, 2, "Part-for"], [6, 5, "Part-for"], [6, 7, "Part-for"]], "discontinuous": false}
{"tokens": ["The", "model", "can", "also", "learn", "to", "decline", "proper", "nouns", ",", "including", "OOVs", "."], "ner": [[8, 8, "Other Scientific Term"], [11, 11, "Other Scientific Term"]], "relations": [[1, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["A", "perspective", "work", "will", "be", "to", "integrate", "the", "proposed", "approach", "within", "underwater", "mosaicking", "[", "7", "]", "or", "Refractive", "Simultaneous", "Localization", "And", "Mapping", "pipeline", "."], "ner": [[11, 12, "Task"], [17, 19, "Method"], [19, 19, "Task"], [21, 22, "Method"], [21, 21, "Method"], [17, 18, 21, 21, "Method"]], "relations": [[1, 2, "Used-for"], [5, 4, "Used-for"]], "discontinuous": true}
{"tokens": ["Our", "greedy", "parser", "gets", "UF", "and", "LF", "of", "89.78", "%", "and", "83.27", "%", "respectively", ",", "the", "best", "reported", "results", "for", "a", "greedy", "CCG", "parser", ",", "and", "is", "more", "than", "three", "times", "faster", "."], "ner": [[1, 2, "Method"], [2, 2, "Method"], [21, 23, "Method"], [22, 23, "Method"], [22, 22, "Method"], [23, 23, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 5, "Hyponym-of"], [2, 3, "Hyponym-of"], [3, 1, "Hyponym-of"], [1, 5, "Synonymy-of"], [3, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "rather", "than", "performing", "de", "-", "occlusion", ",", "this", "method", "focuses", "on", "geometrical", "reconstruction", "by", "searching", "the", "reference", "dataset", "to", "reconstruct", "the", "bump", "map", "on", "the", "occluded", "region", "."], "ner": [[5, 7, "Other Scientific Term"], [13, 14, "Task"], [14, 14, "Task"], [23, 24, "Other Scientific Term"], [27, 28, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Finally", ",", "presented", "a", "bottom", "-", "up", "graph", "parser", "for", "HRGs", ",", "in", "which", "the", "representation", "and", "construction", "of", "items", "was", "worked", "out", "for", "the", "first", "time", "."], "ner": [[7, 8, "Method"], [8, 8, "Method"], [10, 10, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Many", "question", "taxonomies", "have", "been", "proposed", "in", "QA", "community", "."], "ner": [[1, 2, "Method"], [7, 7, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "section", "explains", "our", "experiments", "on", "the", "evaluation", "of", "our", "proposed", "model", "on", "POS", "tagging", "cross", "-", "lingual", "Weibo", "texts", "."], "ner": [[13, 19, "Task"], [13, 14, "Task"], [13, 13, "Other Scientific Term"], [15, 19, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [3, 0, "Used-for"], [3, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["When", "performing", "sentiment", "classification", "using", "pre", "-", "trained", "word", "embeddings", ",", "differences", "in", "domains", "of", "training", "and", "test", "data", "sets", "limit", "the", "applicability", "of", "the", "embedding", "algorithm", "."], "ner": [[2, 3, "Task"], [3, 3, "Task"], [5, 9, "Other Scientific Term"], [8, 9, "Other Scientific Term"], [9, 9, "Other Scientific Term"], [25, 25, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [2, 0, "Used-for"], [5, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "discuss", "techniques", "for", "improving", "query", "speed", "during", "decoding", ",", "including", "a", "simple", "but", "novel", "language", "model", "caching", "technique", "that", "improves", "the", "query", "speed", "of", "our", "language", "models", "(", "and", "SRILM", ")", "by", "up", "to", "300", "%", "."], "ner": [[6, 7, "Metric"], [7, 7, "Metric"], [9, 9, "Task"], [16, 19, "Method"], [16, 18, "Task"], [16, 17, "Method"], [18, 18, "Task"], [18, 19, "Method"], [23, 24, "Metric"], [24, 24, "Metric"], [27, 28, "Method"], [31, 31, "Method"]], "relations": [[0, 1, "Hyponym-of"], [8, 9, "Hyponym-of"], [0, 9, "Hyponym-of"], [8, 1, "Hyponym-of"], [0, 8, "Synonymy-of"], [1, 9, "Synonymy-of"], [3, 7, "Hyponym-of"], [4, 6, "Hyponym-of"], [3, 4, "Used-for"], [7, 6, "Used-for"], [0, 10, "Evaluate-for"], [8, 10, "Evaluate-for"], [0, 11, "Evaluate-for"], [8, 11, "Evaluate-for"], [5, 10, "Synonymy-of"], [0, 5, "Evaluate-for"], [8, 5, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["As", "was", "the", "case", "for", "ICSI", "meeting", "data", ",", "MMR", "using", "keyphrases", "significantly", "outperforms", "the", "document", "centroid", "in", "terms", "of", "ROUGE", "."], "ner": [[5, 5, "Material"], [9, 9, "Method"], [11, 11, "Other Scientific Term"], [15, 16, "Other Scientific Term"], [20, 20, "Metric"]], "relations": [[2, 1, "Used-for"], [4, 1, "Evaluate-for"], [4, 0, "Evaluate-for"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "demonstrate", "that", "this", "approach", "produces", "human", "-", "like", "scene", "descriptions", "which", "are", "both", "fluent", "and", "relevant", ",", "outperforming", "a", "number", "of", "competitive", "alternatives", "based", "on", "templates", ",", "sentence", "-", "based", "retrieval", ",", "and", "a", "multimodal", "neural", "language", "model", "."], "ner": [[9, 10, "Other Scientific Term"], [26, 26, "Other Scientific Term"], [28, 31, "Task"], [31, 31, "Task"], [35, 38, "Method"], [36, 38, "Method"], [37, 38, "Method"]], "relations": [[2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [5, 6, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "current", "model", "incorporates", "source", "-", "side", "syntactic", "information", ",", "to", "model", "the", "observations", "that", "the", "source", "syntactic", "constituent", "tends", "to", "move", "together", "during", "translations", "."], "ner": [[4, 8, "Other Scientific Term"], [7, 8, "Other Scientific Term"], [16, 18, "Other Scientific Term"], [17, 18, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "addition", ",", "since", "the", "predictions", "of", "post", "-", "ensemble", "can", "be", "regarded", "as", "a", "teacher", "model", ",", "these", "distillation", "techniques", "should", "be", "combined", "with", "a", "teacher", "model", "based", "on", "post", "-", "ensemble", "."], "ner": [[7, 9, "Method"], [15, 16, "Other Scientific Term"], [15, 15, "Other Scientific Term"], [19, 19, "Method"], [26, 27, "Other Scientific Term"], [26, 26, "Other Scientific Term"], [30, 32, "Method"]], "relations": [[0, 6, "Synonymy-of"], [1, 4, "Synonymy-of"], [2, 5, "Synonymy-of"], [1, 2, "Synonymy-of"], [4, 5, "Synonymy-of"], [1, 5, "Synonymy-of"], [4, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "proposed", "method", "features", "sentence", "filtering", "based", "on", "semantic", "-", "level", "similarity", "."], "ner": [[4, 5, "Task"], [5, 5, "Task"], [8, 11, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Proposed", "architecture", "uses", "specific", "domain", "knowledge", "about", "speech", "processing", "and", "incorporates", "it", "in", "the", "architecture", "of", "AE", "."], "ner": [[4, 5, "Other Scientific Term"], [7, 8, "Task"], [16, 16, "Method"]], "relations": [[0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Another", "commonly", "used", "alternative", "is", "to", "concatenate", "the", "guidance", "and", "the", "input", "information", "at", "the", "feature", "level", ",", "assuming", "that", "the", "guidance", "feature", "representation", "is", "required", "at", "a", "certain", "level", "within", "the", "model", "."], "ner": [[21, 23, "Method"], [21, 22, "Other Scientific Term"], [22, 23, "Method"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "introduce", "a", "multi", "-", "objective", "neural", "architecture", "search", "approach", "that", "optimizes", "both", "accuracy", "and", "realworld", "latency", "on", "mobile", "devices", "."], "ner": [[3, 8, "Method"], [6, 8, "Method"], [13, 13, "Metric"], [16, 16, "Metric"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Evaluate-for"], [3, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["We", "consider", "two", "measures", "of", "convergence", "speed", ",", "based", "on", "which", "we", "develop", "randomized", "greedy", "algorithms", "for", "robust", "interpolation", "of", "graph", "signals", "."], "ner": [[5, 6, "Metric"], [13, 15, "Method"], [14, 15, "Method"], [18, 18, "Task"], [20, 21, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [1, 3, "Used-for"], [0, 1, "Evaluate-for"], [0, 3, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "present", "a", "general", "mathematical", "model", "and", "address", "the", "bimodal", "multipath", "issue", "in", "a", "phase", "measuring", "profilometry", "scanner", "to", "measure", "the", "constructive", "and", "destructive", "interference", "between", "the", "two", "light", "paths", ",", "and", "by", "taking", "advantage", "of", "this", "interesting", "cue", ",", "separate", "the", "paths", "and", "make", "two", "separated", "depth", "measurements", "."], "ner": [[8, 9, "Method"], [13, 14, "Task"], [18, 21, "Method"], [20, 21, "Method"], [21, 21, "Method"], [27, 28, "Other Scientific Term"], [32, 33, "Other Scientific Term"], [25, 25, 28, 28, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": true}
{"tokens": ["This", "result", "points", "out", "that", "the", "extraction", "of", "features", "via", "deep", "learning", "processing", "is", "a", "successful", "approach", "that", "is", "helping", "in", "understanding", "the", "development", "of", "the", "narrative", "within", "the", "scene", "that", "has", "to", "do", "with", "attention", "prediction", "."], "ner": [[6, 6, "Task"], [10, 11, "Method"], [35, 36, "Task"], [35, 35, "Method"], [36, 36, "Task"]], "relations": [[1, 0, "Used-for"], [1, 2, "Used-for"], [2, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["They", "enabled", "prosody", "transfers", "using", "the", "prosody", "embedding", ",", "but", "they", "could", "not", "gain", "control", "of", "prosody", "at", "a", "specific", "point", "of", "time", "."], "ner": [[2, 3, "Task"], [2, 2, "Other Scientific Term"], [3, 3, "Task"], [6, 7, "Method"], [6, 6, "Other Scientific Term"], [7, 7, "Method"]], "relations": [[0, 2, "Hyponym-of"], [3, 5, "Hyponym-of"], [1, 4, "Synonymy-of"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "first", "is", "identifying", "relevant", "sentences", ",", "which", "is", "essentially", "a", "passage", "retrieval", "task", "."], "ner": [[11, 12, "Task"], [12, 12, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["During", "our", "experiments", "summation", "method", "of", "result", "combination", "proved", "to", "be", "superior", "to", "using", "stacked", "classifier", "."], "ner": [[3, 4, "Method"], [14, 15, "Method"], [15, 15, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Thus", ",", "there", "is", "an", "increasing", "demand", "for", "automatic", "image", "manipulation", "detection", "."], "ner": [[8, 11, "Task"], [9, 11, "Task"], [9, 10, "Task"], [11, 11, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "proposed", "framework", "contains", "two", "components", ":", "heterogeneous", "representation", "network", "and", "decorrelation", "representation", "learning", "."], "ner": [[7, 9, "Method"], [7, 8, "Method"], [11, 13, "Method"], [11, 12, "Method"], [12, 13, "Task"]], "relations": [[0, 1, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Linear", "predictors", "are", "then", "learnt", "to", "predict", "the", "occurrence", "of", "those", "pivots", ",", "and", "SVD", "is", "used", "to", "construct", "a", "lower", "dimensional", "representation", "in", "which", "a", "binary", "classifier", "is", "trained", "."], "ner": [[0, 1, "Method"], [1, 1, "Method"], [11, 11, "Other Scientific Term"], [14, 14, "Method"], [26, 27, "Method"], [27, 27, "Method"]], "relations": [[0, 1, "Hyponym-of"], [4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Over", "the", "years", ",", "we", "have", "collected", "many", "additional", "types", "of", "NSWs", "that", "one", "will", "encounter", "when", "building", "a", "general", "-", "purpose", "speech", "processing", "system", "that", "aims", "to", "be", "robust", "to", "different", "domains", "and", "registers", "."], "ner": [[11, 11, "Other Scientific Term"], [19, 24, "Method"], [19, 23, "Task"], [22, 23, "Task"], [22, 24, "Method"], [34, 34, "Other Scientific Term"]], "relations": [[1, 2, "Used-for"], [4, 3, "Used-for"], [2, 3, "Hyponym-of"], [1, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "propose", "a", "multi", "-", "task", "model", "to", "address", "the", "poor", "performance", ",", "that", "combines", "caption", "generation", "and", "image", "--", "sentence", "ranking", ",", "and", "uses", "a", "decoding", "mechanism", "that", "re", "-", "ranks", "the", "captions", "according", "their", "similarity", "to", "the", "image", "."], "ner": [[3, 6, "Method"], [15, 16, "Task"], [16, 16, "Task"], [18, 21, "Task"], [21, 21, "Task"], [26, 27, "Method"], [26, 26, "Task"], [29, 31, "Method"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [5, 6, "Used-for"], [5, 0, "Used-for"], [5, 7, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "their", "model", "is", "based", "on", "recursive", "neural", "network", "rather", "than", "LSTM", "."], "ner": [[7, 9, "Method"], [8, 9, "Method"], [12, 12, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "the", "envy", "-", "free", "pricing", "setting", ",", "Greedy", "computes", "an", "allocation", "and", "a", "pricing", "by", "dynamic", "programming", ",", "ignoring", "the", "past", "budget", "consumptions", "of", "advertisers", "."], "ner": [[2, 5, "Task"], [8, 8, "Method"], [11, 11, "Other Scientific Term"], [14, 14, "Other Scientific Term"], [16, 17, "Method"]], "relations": [[4, 1, "Used-for"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["An", "inference", "method", "must", "somehow", "deal", "with", "these", "high", "dimensional", ",", "highly", "structured", "latent", "variables", "."], "ner": [[1, 2, "Method"], [1, 1, "Task"], [13, 14, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "topic", "can", "have", "significant", "impact", "for", "the", "development", "of", "social", "chatbots", ",", "with", "the", "aim", "of", "creating", "an", "emotional", "connection", "between", "a", "user", "and", "a", "chatbot", "(", "Banchs", ",", "2017", ")", "."], "ner": [[10, 11, "Task"], [11, 11, "Other Scientific Term"], [26, 26, "Other Scientific Term"]], "relations": [[1, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Furthermore", ",", "we", "propose", "a", "succinct", "hierarchical", "attention", "based", "mechanism", "to", "fuse", "the", "information", "of", "targets", "and", "the", "contextual", "words", ",", "and", "achieve", "the", "final", "sentence", "representation", "."], "ner": [[6, 7, "Method"], [7, 7, "Method"], [25, 26, "Method"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "developed", "a", "new", "framework", "for", "minimizing", "human", "supervision", "for", "free", "-", "space", "segmentation", ",", "using", "assumptions", "of", "the", "the", "characteristics", "of", "free", "-", "space", "."], "ner": [[11, 12, "Other Scientific Term"], [12, 12, "Other Scientific Term"], [14, 17, "Task"], [17, 17, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "report", "accuracy", "of", "classification", "results", ",", "and", "precision", "and", "recall", "for", "the", "true", "entailment", "class", "."], "ner": [[2, 2, "Metric"], [4, 4, "Task"], [8, 8, "Metric"], [10, 10, "Metric"]], "relations": [[0, 1, "Evaluate-for"], [2, 1, "Evaluate-for"], [3, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["We", "further", "showed", "that", "attributes", "are", "implicitly", "induced", "when", "learning", "to", "map", "visual", "vectors", "of", "objects", "to", "their", "linguistic", "realizations", "as", "nouns", ",", "and", "that", "improvements", "in", "both", "attribute", "and", "noun", "retrieval", "are", "attained", "by", "treating", "images", "as", "visual", "phrases", ",", "whose", "linguistic", "representations", "must", "be", "decomposed", "into", "a", "coherent", "word", "sequence", "."], "ner": [[12, 13, "Other Scientific Term"], [21, 21, "Other Scientific Term"], [30, 31, "Task"], [31, 31, "Task"], [38, 39, "Other Scientific Term"], [42, 43, "Other Scientific Term"], [28, 28, 31, 31, "Task"]], "relations": [[2, 3, "Hyponym-of"], [6, 3, "Hyponym-of"], [4, 2, "Used-for"], [4, 6, "Used-for"]], "discontinuous": true}
{"tokens": ["We", "here", "present", "a", "method", "to", "probe", "the", "extent", "to", "which", "the", "hidden", "layers", "of", "an", "LSTM", "language", "trained", "on", "English", "data", "represent", "lexical", "and", "contextual", "information", "about", "words", ",", "in", "order", "to", "investigate", "how", "the", "model", "copes", "with", "lexical", "ambiguity", "."], "ner": [[12, 13, "Other Scientific Term"], [16, 16, "Method"], [25, 26, "Other Scientific Term"], [39, 40, "Problem"], [40, 40, "Problem"], [23, 23, 26, 26, "Other Scientific Term"]], "relations": [[3, 4, "Hyponym-of"], [0, 1, "Part-for"]], "discontinuous": true}
{"tokens": ["In", "this", "paper", ",", "we", "describe", "an", "unsupervised", "topic", "identification", "method", "integrating", "linguistic", "and", "visual", "information", "using", "HMMs", "."], "ner": [[7, 10, "Method"], [7, 9, "Task"], [8, 9, "Task"], [8, 10, "Method"], [9, 9, "Task"], [9, 10, "Method"], [17, 17, "Method"]], "relations": [[0, 3, "Hyponym-of"], [3, 5, "Hyponym-of"], [1, 2, "Hyponym-of"], [2, 4, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"], [5, 4, "Used-for"], [0, 2, "Used-for"], [6, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Differently", "from", "the", "original", "AlexNet", ",", "we", "do", "not", "perform", "dropout", "on", "the", "outputs", "of", "fc6", "and", "fc7", "."], "ner": [[4, 4, "Method"], [10, 10, "Method"], [15, 15, "Other Scientific Term"], [17, 17, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "ran", "two", "groups", "of", "evaluation", "experiments", "to", "see", "whether", "our", "transcription", "pipeline", "achieves", "its", "goal", "of", "producing", "high", "fidelity", ",", "unbiased", "lexical", "transcriptions", "."], "ner": [[11, 12, "Method"], [11, 11, "Task"], [23, 23, "Task"]], "relations": [[0, 1, "Used-for"], [1, 2, "Synonymy-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["More", "problems", "need", "to", "be", "studied", ",", "including", "data", "compression", "and", "3D", "modeling", "."], "ner": [[8, 9, "Task"], [9, 9, "Task"], [11, 12, "Task"], [12, 12, "Task"]], "relations": [[2, 3, "Hyponym-of"], [0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "demonstrate", "the", "strength", "of", "the", "framework", "for", "activity", "-", "based", "summarization", "of", "long", "videos", "and", "recognition", "of", "complex", "human", "actions", "on", "two", "datasets", "."], "ner": [[8, 11, "Task"], [11, 11, "Task"], [16, 16, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["A", "variety", "of", "approaches", "have", "been", "developed", "to", "utilize", "optical", "flow", "in", "video", "classification", "."], "ner": [[9, 10, "Other Scientific Term"], [12, 13, "Task"], [13, 13, "Task"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Over", "the", "years", ",", "natural", "language", "processing", "has", "increasingly", "focused", "on", "tasks", "that", "can", "be", "solved", "by", "statistical", "models", ",", "but", "ignored", "the", "social", "aspects", "of", "language", "."], "ner": [[4, 6, "Task"], [17, 18, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "noted", "that", "POLQA", "did", "not", "reflect", "informal", "listening", "impressions", ",", "where", "the", "bandwidth", "extension", "and", "absence", "of", "the", "distortions", "typical", "of", "a", "vocoder", "-", "based", "parametric", "coder", "was", "clearly", "heard", "."], "ner": [[3, 3, "Metric"], [8, 9, "Other Scientific Term"], [13, 13, "Other Scientific Term"], [13, 14, "Other Scientific Term"], [23, 27, "Method"], [26, 27, "Method"], [27, 27, "Method"]], "relations": [[4, 5, "Hyponym-of"], [5, 6, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "system", "is", "being", "developed", "to", "work", "within", "a", "pipeline", "annotation", "project", "where", "incremental", "clustering", "performs", "efficiently", "on", "large", "-", "scale", "data", "."], "ner": [[13, 14, "Method"], [14, 14, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Many", "such", "NLG", "-", "as", "-", "planning", "systems", "use", "a", "pipeline", "architecture", ",", "working", "from", "their", "communicative", "goal", "through", "discourse", "planning", "and", "sentence", "generation", "."], "ner": [[2, 7, "Method"], [19, 20, "Task"], [20, 20, "Task"], [22, 23, "Task"], [23, 23, "Task"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "use", "the", "classic", "ray", "-", "tracing", "algorithm", "to", "render", "the", "light", "reflected", "by", "the", "specular", "surface", "into", "the", "camera", "."], "ner": [[4, 7, "Method"], [4, 6, "Task"], [15, 16, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "introduces", "the", "real", "danger", "that", "training", "on", "data", "from", "Google", "Images", "amounts", "to", "replicating", "an", "existing", "black", "-", "box", "vision", "system", "."], "ner": [[17, 21, "Method"], [17, 19, "Other Scientific Term"], [20, 21, "Method"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "empty", "category", "(", "EC", ")", "is", "an", "important", "concept", "in", "linguistic", "theories", "."], "ner": [[1, 2, "Other Scientific Term"], [4, 4, "Other Scientific Term"], [11, 12, "Task"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Isola", "et", "al", ".", "[", "13", "]", "proposed", "the", "pix2pix", "framework", "which", "adopted", "a", "conditional", "GAN", "to", "model", "the", "generative", "function", "."], "ner": [[9, 9, "Method"], [14, 15, "Method"], [15, 15, "Method"], [19, 20, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "task", "could", "be", "seen", "as", "a", "ranking", "task", ":", "ranking", "model", "group", "comparable", "entities", "into", "queries", "by", "criteria", "and", "constructing", "a", "ranking", "model", "using", "training", "data", "with", "exemplars", "to", "predict", "a", "ranking", "score", "."], "ner": [[7, 7, "Task"], [10, 11, "Method"], [10, 10, "Task"], [14, 14, "Other Scientific Term"], [22, 23, "Method"], [22, 22, "Task"], [32, 32, "Task"]], "relations": [[0, 2, "Synonymy-of"], [0, 5, "Synonymy-of"], [0, 6, "Synonymy-of"], [2, 5, "Synonymy-of"], [2, 6, "Synonymy-of"], [5, 6, "Synonymy-of"], [1, 4, "Synonymy-of"], [1, 0, "Used-for"], [1, 2, "Used-for"], [1, 5, "Used-for"], [1, 6, "Used-for"], [4, 0, "Used-for"], [4, 2, "Used-for"], [4, 5, "Used-for"], [4, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["As", "a", "result", "of", "this", "diversity", "in", "event", "annotation", "within", "DEFT", ",", "the", "Event", "Working", "Group", "which", "is", "focusing", "on", "events", "within", "DEFT", "has", "initiated", "an", "experiment", "in", "which", "participating", "teams", "perform", "event", "annotations", "on", "the", "same", "set", "of", "data", "using", "all", "of", "the", "different", "annotation", "schemas", "."], "ner": [[7, 8, "Task"], [8, 8, "Task"], [10, 10, "Other Scientific Term"], [22, 22, "Other Scientific Term"], [32, 33, "Task"], [33, 33, "Task"], [45, 46, "Method"], [45, 45, "Task"]], "relations": [[0, 1, "Hyponym-of"], [0, 5, "Hyponym-of"], [0, 7, "Hyponym-of"], [4, 1, "Hyponym-of"], [4, 5, "Hyponym-of"], [4, 7, "Hyponym-of"], [1, 5, "Synonymy-of"], [1, 7, "Synonymy-of"], [5, 7, "Synonymy-of"], [6, 7, "Used-for"], [6, 5, "Used-for"], [6, 1, "Used-for"], [0, 4, "Synonymy-of"], [2, 3, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Once", "the", "mapping", "is", "learned", ",", "at", "test", "time", "a", "nearest", "neighbors", "method", "can", "be", "used", "for", "retrieval", "and", "classification", "for", "new", "categories", "that", "are", "unseen", "during", "training", "."], "ner": [[2, 2, "Other Scientific Term"], [10, 12, "Method"], [17, 17, "Task"], [19, 19, "Task"]], "relations": [[1, 2, "Used-for"], [1, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "variability", "makes", "the", "task", "of", "human", "motion", "analysis", "very", "challenging", "."], "ner": [[6, 8, "Task"], [7, 8, "Task"], [8, 8, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Text", "quality", ":", "Text", "quality", "and", "popularity", "evaluation", "has", "been", "studied", "in", "different", "domains", "in", "the", "past", "few", "years", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"], [3, 4, 7, 7, "Task"], [3, 3, 6, 7, "Task"], [4, 4, 7, 7, "Task"]], "relations": [[0, 1, "Hyponym-of"], [4, 1, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["In", "this", "paper", ",", "we", "address", "the", "need", "for", "this", "emerging", "3D", "content", "by", "proposing", "the", "first", "stereoscopic", "neural", "style", "transfer", "algorithm", "."], "ner": [[17, 20, "Method"], [18, 20, "Method"], [19, 20, "Task"], [19, 21, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 3, "Hyponym-of"], [1, 2, "Used-for"], [3, 2, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Online", "calibration", "performed", "by", "the", "system", "during", "scanning", "reduces", "drift", "and", "yields", "a", "qualitatively", "cleaner", "reconstruction", "."], "ner": [[0, 1, "Method"], [1, 1, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "there", "is", "a", "polynomial", "time", "to", "find", "a", "PSNE", "in", "symmetric", "network", "congestion", "games", "."], "ner": [[5, 6, "Other Scientific Term"], [10, 10, "Other Scientific Term"], [12, 15, "Task"], [12, 13, "Method"], [14, 15, "Task"]], "relations": [[2, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "drawback", "of", "this", "method", "is", "that", "each", "image", "has", "to", "be", "processed", "by", "the", "costly", "model", "fitting", "algorithm", "."], "ner": [[16, 18, "Method"], [16, 17, "Task"], [17, 17, "Task"], [17, 18, "Method"]], "relations": [[0, 3, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["As", "machine", "learning", "methods", "dominate", "the", "computer", "vision", "field", ",", "public", "datasets", "and", "benchmarks", "have", "started", "to", "play", "an", "important", "role", "for", "relative", "scalability", "and", "reliability", "of", "different", "approaches", "."], "ner": [[1, 2, "Method"], [6, 7, "Task"], [13, 13, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["One", "of", "the", "key", "limitations", "of", "distributed", "SGD", "is", "the", "need", "to", "regularly", "communicate", "the", "gradients", "between", "different", "computation", "nodes", "."], "ner": [[6, 7, "Method"], [7, 7, "Method"], [15, 15, "Other Scientific Term"], [18, 19, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "second", "challenge", "is", "native", "language", "identification", "using", "the", "transcriptions", "of", "spoken", "responses", "produced", "by", "test", "takers", "."], "ner": [[4, 6, "Task"], [6, 6, "Task"], [9, 9, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Miller", "and", "Vanni", "(", "2001", ")", "devise", "a", "human", "evaluation", "approach", "to", "measure", "the", "comprehensibility", "of", "a", "text", "as", "a", "whole", ",", "based", "on", "the", "Rhetorical", "Structure", "Theory", "(", "Mann", "and", "Thompson", ",", "1988", ")", ",", "a", "theory", "of", "text", "organization", "specifying", "coherence", "relations", "in", "an", "authentic", "text", "."], "ner": [[8, 10, "Method"], [9, 9, "Task"], [9, 10, "Method"], [14, 14, "Metric"], [25, 27, "Method"], [25, 26, "Other Scientific Term"], [39, 40, "Task"], [42, 43, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [2, 1, "Used-for"], [0, 1, "Used-for"], [4, 0, "Used-for"], [4, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "approach", "is", "based", "on", "the", "structured", "query", "formulation", "."], "ner": [[6, 8, "Method"], [7, 8, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "study", ",", "a", "convolution", "-", "based", "memory", "network", "was", "introduced", "to", "store", "the", "context", "information", "."], "ner": [[5, 9, "Method"], [8, 9, "Method"], [15, 16, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "third", "group", "embeds", "factorized", "representations", "of", "entities", "and", "relations", "into", "a", "nonparametric", "Bayesian", "clustering", "framework", ",", "so", "as", "to", "obtain", "more", "interpretable", "embeddings", "(", "Kemp", "et", "al", ".", ",", "2006", ";", "Sutskever", "et", "al", ".", ",", "2009", ")", "."], "ner": [[4, 5, "Other Scientific Term"], [7, 7, "Other Scientific Term"], [12, 14, "Method"], [13, 14, "Method"], [14, 14, "Method"], [23, 23, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "figure", "indicates", "our", "model", "and", "BTM", "can", "get", "higher", "topic", "coherence", "score", "than", "GK", "-", "LDA", "and", "DF", "-", "LDA", ",", "which", "means", "the", "self", "-", "defined", "knowledge", "and", "the", "mechanism", "of", "knowledge", "incorporation", "are", "effective", "to", "topic", "model", "."], "ner": [[6, 6, "Method"], [10, 11, "Metric"], [14, 16, "Method"], [18, 20, "Method"], [33, 34, "Task"], [38, 39, "Method"]], "relations": [[1, 0, "Evaluate-for"], [1, 2, "Evaluate-for"], [1, 3, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Extending", "the", "analysis", "to", "larger", "datasets", "will", "also", "shed", "more", "light", "on", "whether", "our", "gesture", "annotation", "categories", "are", "too", "fine", "-", "grained", "for", "automatic", "classification", "."], "ner": [[23, 24, "Task"], [24, 24, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "output", "similarity", "maps", "and", "template", "mask", "are", "fed", "into", "the", "RAM", "module", "to", "rank", "and", "select", "the", "foreground", "/", "background", "similarity", "maps", "."], "ner": [[2, 3, "Other Scientific Term"], [5, 6, "Other Scientific Term"], [6, 6, "Other Scientific Term"], [11, 11, "Method"], [21, 22, "Other Scientific Term"], [18, 18, 21, 22, "Other Scientific Term"], [20, 22, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [5, 4, "Hyponym-of"], [6, 4, "Hyponym-of"], [0, 3, "Used-for"], [1, 3, "Used-for"]], "discontinuous": true}
{"tokens": ["An", "advantage", "of", "the", "proposed", "approach", "is", "that", "the", "front", "-", "end", "network", "is", "derived", "from", "a", "multichannel", "signal", "generation", "model", "and", "thus", "can", "be", "efficiently", "described", "by", "a", "small", "number", "of", "parameters", "."], "ner": [[9, 12, "Method"], [17, 20, "Method"], [17, 19, "Task"], [18, 19, "Task"], [18, 20, "Method"], [19, 19, "Task"], [19, 20, "Method"]], "relations": [[2, 3, "Hyponym-of"], [3, 5, "Hyponym-of"], [1, 4, "Hyponym-of"], [4, 6, "Hyponym-of"], [1, 2, "Used-for"], [4, 3, "Used-for"], [6, 5, "Used-for"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Future", "work", "will", "investigate", "the", "effects", "of", "network", "interpolation", "on", "high", "-", "level", "tasks", "."], "ner": [[7, 8, "Method"], [8, 8, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "despite", "usually", "providing", "good", "camera", "localization", "accuracy", ",", "these", "methods", "can", "easily", "fail", "in", "case", "of", "texture", "-", "less", "surfaces", "and", "require", "efficient", "feature", "matching", "techniques", "to", "achieve", "reasonable", "computational", "times", "for", "camera", "re", "-", "localization", "applications", "."], "ner": [[6, 7, "Task"], [8, 8, "Metric"], [18, 21, "Other Scientific Term"], [25, 27, "Method"], [25, 26, "Task"], [26, 26, "Task"], [26, 27, "Method"], [31, 32, "Metric"], [34, 37, "Task"], [35, 37, "Task"]], "relations": [[8, 9, "Hyponym-of"], [4, 5, "Hyponym-of"], [3, 6, "Hyponym-of"], [3, 4, "Used-for"], [6, 5, "Used-for"], [7, 8, "Evaluate-for"], [1, 0, "Evaluate-for"], [3, 8, "Used-for"], [7, 3, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["This", "work", "studies", "an", "approach", "to", "the", "automatic", "construction", "of", "large", "fusion", "corpora", "using", "workers", "through", "Amazon", "'s", "Mechanical", "Turk", "service", "."], "ner": [[7, 8, "Task"], [8, 8, "Task"], [16, 19, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "experiments", "comparing", "different", "Grid", "-", "LSTM", "speed", "-", "ups", "are", "conducted", "on", "a", "12,500", "hour", "Voice", "Search", "task", "."], "ner": [[4, 6, "Method"], [16, 17, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "per", "-", "pixel", "predictions", "are", "then", "fed", "to", "a", "CRF", "for", "enforcing", "local", "consistency", "."], "ner": [[1, 4, "Other Scientific Term"], [10, 10, "Method"], [13, 14, "Other Scientific Term"], [14, 14, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Therefore", ",", "distributed", "DL", "is", "not", "only", "preferred", "but", "also", "necessary", "in", "DL", "ASR", "to", "guarantee", "fast", "turnaround", "time", "for", "model", "training", "."], "ner": [[2, 3, "Method"], [3, 3, "Method"], [12, 13, "Method"], [12, 12, "Method"], [13, 13, "Task"], [17, 18, "Metric"]], "relations": [[2, 4, "Used-for"], [3, 4, "Used-for"], [0, 1, "Hyponym-of"], [1, 4, "Used-for"], [5, 2, "Evaluate-for"], [1, 3, "Synonymy-of"], [0, 3, "Hyponym-of"], [3, 2, "Used-for"], [1, 2, "Used-for"], [5, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "the", "literature", ",", "kernel", "functions", "are", "typically", "used", "to", "achieve", "non", "-", "linearity", "in", "hashing", ",", "which", "achieve", "encouraging", "retrieval", "performance", "at", "the", "price", "of", "slow", "evaluation", "and", "training", "time", "."], "ner": [[4, 5, "Other Scientific Term"], [4, 4, "Other Scientific Term"], [11, 13, "Other Scientific Term"], [15, 15, "Method"], [20, 20, "Task"]], "relations": [[0, 1, "Synonymy-of"], [3, 4, "Used-for"], [0, 3, "Used-for"], [0, 4, "Used-for"], [1, 3, "Used-for"], [1, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "use", "our", "keywords", "for", "educational", "purpose", "like", "reading", "comprehension", "."], "ner": [[9, 10, "Task"], [10, 10, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "empirically", "demonstrate", "that", "the", "performance", "of", "CLE", "models", "largely", "depends", "on", "the", "task", "at", "hand", "and", "that", "optimizing", "CLE", "models", "for", "BLI", "can", "result", "in", "deteriorated", "downstream", "performance", "."], "ner": [[7, 7, "Method"], [19, 19, "Method"], [22, 22, "Task"]], "relations": [[0, 1, "Synonymy-of"], [0, 2, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "address", "this", "limitation", "by", "training", "a", "segmentation", "model", "on", "diverse", "realistic", "examples", ",", "making", "the", "segmenter", "more", "robust", "to", "such", "ambiguities", "."], "ner": [[7, 8, "Method"], [7, 7, "Task"], [21, 21, "Problem"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "formulate", "the", "problem", "as", "a", "semantic", "segmentation", "task", "with", "three", "classes", ":", "occupied", ",", "free", "and", "unobserved", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "notion", "of", "query", "answering", "considered", "in", "this", "paper", "is", "the", "one", "addressed", "by", "ASPRIN", "[", "Romero", "et", "al", ".", ",", "2016", "]", ",", "a", "system", "for", "knowledge", "bases", "subject", "to", "arbitrary", "preference", "relations", ",", "where", "knowledge", "bases", "and", "preference", "relations", "are", "expressed", "by", "means", "of", "answer", "set", "programs", "."], "ner": [[3, 4, "Task"], [14, 14, "Method"], [27, 28, "Other Scientific Term"], [32, 33, "Other Scientific Term"], [36, 37, "Other Scientific Term"], [39, 40, "Other Scientific Term"], [46, 48, "Method"]], "relations": [[1, 0, "Used-for"], [2, 4, "Synonymy-of"], [3, 5, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["As", "mentioned", "before", ",", "the", "performance", "of", "the", "estimator", "model", "is", "assessed", "by", "the", "difference", "between", "the", "input", "RGB", "and", "the", "RGB", "formed", "with", "the", "output", "sensitivity", "."], "ner": [[8, 8, "Method"], [18, 18, "Other Scientific Term"], [21, 21, "Other Scientific Term"]], "relations": [[1, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Finally", ",", "to", "build", "an", "universal", "parser", ",", "we", "should", "distinguish", "multiple", "embeddings", "."], "ner": [[6, 6, "Method"], [12, 12, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "their", "fusion", "technique", "was", "specific", "to", "a", "thermal", "and", "color", "camera", ",", "and", "required", "background", "modeling", "in", "both", "domains", "."], "ner": [[16, 17, "Task"], [17, 17, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["[", "13", "]", "and", "[", "14", "]", "attempted", "the", "learning", "of", "transferable", "features", "by", "embedding", "task", "-", "specific", "layers", "in", "a", "reproducing", "kernel", "Hilbert", "space", "where", "the", "mean", "embeddings", "of", "different", "domain", "distributions", "can", "be", "explicitly", "matched", "."], "ner": [[11, 12, "Other Scientific Term"], [14, 14, "Method"], [15, 18, "Other Scientific Term"], [21, 24, "Other Scientific Term"], [22, 22, "Other Scientific Term"], [23, 24, "Other Scientific Term"], [28, 28, "Other Scientific Term"], [31, 32, "Other Scientific Term"]], "relations": [[3, 5, "Hyponym-of"], [4, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "these", "meta", "-", "algorithms", "are", "not", "easily", "compatible", "with", "complex", "and", "accurate", "predictors", "like", "DNNs", ",", "because", "the", "anytime", "predictions", "without", "DNNs", "are", "inaccurate", ",", "and", "there", "are", "no", "intermediate", "results", "during", "the", "computation", "of", "the", "DNNs", "."], "ner": [[3, 5, "Method"], [14, 14, "Method"], [16, 16, "Method"], [23, 23, "Method"], [38, 38, "Method"]], "relations": [[2, 3, "Synonymy-of"], [2, 4, "Synonymy-of"], [3, 4, "Synonymy-of"], [2, 1, "Hyponym-of"], [3, 1, "Hyponym-of"], [4, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "a", "major", "limitation", "of", "these", "deep", "learning", "based", "approaches", "is", "that", "they", "only", "work", "for", "a", "set", "of", "known", "object", "classes", "that", "are", "used", "during", "supervised", "training", "."], "ner": [[7, 8, "Method"], [27, 28, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "contrast", ",", "in", "this", "paper", ",", "a", "novel", "multi", "-", "scale", "deep", "learning", "model", "is", "proposed", "."], "ner": [[9, 13, "Method"], [12, 13, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "consider", "a", "genre", "of", "topic", "ID", "tasks", "such", "as", "spam", "detection", ",", "document", "recommendation", ",", "and", "email", "prioritization", "."], "ner": [[5, 7, "Task"], [5, 6, "Other Scientific Term"], [10, 11, "Task"], [11, 11, "Task"], [13, 14, "Task"], [14, 14, "Task"], [17, 18, "Task"]], "relations": [[2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [2, 0, "Hyponym-of"], [4, 0, "Hyponym-of"], [6, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "combination", "of", "features", "with", "varying", "information", "lead", "to", "improved", "classification", "results", ",", "compared", "to", "using", "only", "one", "log", "likelihood", "ratio", "metric", "."], "ner": [[10, 10, "Task"], [18, 21, "Other Scientific Term"], [18, 19, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["OICSR", "is", "mainly", "compared", "with", "non", "-", "structured", "regularization", "and", "separated", "structured", "regularization", "to", "demonstrate", "its", "superiority", "."], "ner": [[0, 0, "Method"], [5, 8, "Method"], [8, 8, "Method"], [10, 12, "Method"], [11, 12, "Method"], [12, 12, "Method"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [4, 5, "Hyponym-of"], [2, 5, "Synonymy-of"], [1, 5, "Hyponym-of"], [4, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "problem", "is", "analogous", "to", "this", "work", "except", "we", "retarget", "full", "body", "motion", ",", "and", "the", "inputs", "to", "our", "model", "as", "2D", "pose", "stick", "figures", "as", "opposed", "to", "more", "detailed", "3D", "representations", "."], "ner": [[10, 12, "Other Scientific Term"], [21, 24, "Other Scientific Term"], [23, 24, "Other Scientific Term"], [30, 31, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Guided", "by", "studies", "in", "second", "language", "development", ",", "we", "design", "a", "measure", "of", "syntactic", "complexity", "that", "captures", "patterns", "indicative", "of", "proficient", "and", "non", "-", "proficient", "grammatical", "structures", "by", "a", "shallow", "-", "analysis", "of", "spoken", "language", ",", "as", "opposed", "to", "a", "deep", "syntactic", "analysis", ",", "and", "analyze", "the", "performance", "of", "the", "automatic", "scoring", "model", "with", "its", "inclusion", "."], "ner": [[13, 14, "Metric"], [25, 26, "Other Scientific Term"], [29, 31, "Method"], [40, 42, "Method"], [41, 42, "Method"], [50, 51, "Method"]], "relations": [[3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["For", "online", "detection", ",", "we", "will", "introduce", "the", "acoustic", "data", "processing", "method", "."], "ner": [[1, 2, "Task"], [2, 2, "Task"], [8, 11, "Method"], [8, 10, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Regression", "-", "based", "model", "-", "free", "tracking", ":", "The", "realisation", "that", "discriminatively", "-", "trained", "regressors", "could", "be", "effectively", "used", "for", "object", "localisation", "has", "been", "around", "for", "some", "time", "."], "ner": [[0, 6, "Method"], [3, 6, "Method"], [6, 6, "Task"], [14, 14, "Method"], [20, 21, "Task"], [21, 21, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Used-for"], [0, 2, "Used-for"], [4, 5, "Hyponym-of"], [3, 4, "Used-for"], [0, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["For", "example", ",", "ASP", "with", "three", "-", "source", "tasks", "achieves", "82.23", "%", "and", "66.92", "%", "accuracy", ",", "respectively", ",", "in", "SNLI", "and", "MNLI", ",", "which", "are", "lower", "than", "82.28", "%", "and", "67.39", "%", "accuracy", "with", "its", "best", "performance", "with", "two", "-", "source", "tasks", "."], "ner": [[3, 3, "Method"], [15, 15, "Metric"], [20, 20, "Material"], [22, 22, "Material"], [33, 33, "Metric"]], "relations": [[1, 4, "Synonymy-of"], [1, 0, "Evaluate-for"], [4, 0, "Evaluate-for"], [1, 2, "Evaluate-for"], [1, 3, "Evaluate-for"], [4, 2, "Evaluate-for"], [4, 3, "Evaluate-for"], [0, 2, "Used-for"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "show", "significant", "improvements", "over", "a", "strong", "baseline", "coming", "from", "a", "distributional", "thesaurus", "(", "DT", ")", "."], "ner": [[7, 7, "Other Scientific Term"], [11, 12, "Method"], [14, 14, "Method"]], "relations": [[1, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Hypercolumns", "In", "NLP", ",", "only", "recently", "have", "methods", "been", "proposed", "that", "go", "beyond", "transferring", "word", "embeddings", "."], "ner": [[0, 0, "Other Scientific Term"], [2, 2, "Task"], [14, 15, "Other Scientific Term"], [15, 15, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Considering", "practical", "aspects", ",", "we", "have", "modeled", "the", "range", "estimate", "using", "the", "sum", "of", "two", "distributions", ",", "uniform", "and", "Gaussian", "."], "ner": [[8, 9, "Task"], [17, 17, "Method"], [19, 19, "Method"]], "relations": [[1, 0, "Used-for"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "consider", "the", "extensions", "to", "the", "cases", "of", "imperfect", "gradient", "knowledge", "and", "when", "transmitted", "messages", "are", "corrupted", "by", "additive", "noise", "or", "are", "quantized", "."], "ner": [[9, 11, "Other Scientific Term"], [9, 10, "Other Scientific Term"], [10, 10, "Other Scientific Term"], [19, 20, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Thus", "it", "is", "important", "to", "have", "accurate", "NER", "systems", ",", "but", "these", "systems", "must", "be", "easy", "to", "port", "and", "robust", ",", "given", "the", "great", "variety", "of", "documents", "and", "languages", "for", "which", "it", "is", "desirable", "to", "have", "these", "tools", "available", "."], "ner": [[7, 8, "Method"], [7, 7, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["However", ",", "they", "use", "POS", "tags", "or", "word", "information", "in", "a", "BruteForce", "way", ",", "which", "may", "suffer", "from", "the", "problem", "of", "time", "complexity", "."], "ner": [[4, 5, "Other Scientific Term"], [4, 4, "Other Scientific Term"], [11, 11, "Method"], [21, 22, "Metric"], [22, 22, "Metric"]], "relations": [[3, 4, "Hyponym-of"], [3, 2, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Protein", "sequence", "classification", "and", "fold", "recognition", "is", "still", "a", "challenging", "task", "in", "the", "bioinformatics", "research", "community", "."], "ner": [[0, 2, "Task"], [2, 2, "Task"], [5, 5, "Task"], [0, 0, 4, 5, "Task"]], "relations": [[0, 1, "Hyponym-of"], [3, 2, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["A", "domain", "discriminator", "is", "leveraged", "to", "encourage", "the", "domain", "confusion", "by", "an", "adversarial", "objective", "."], "ner": [[1, 2, "Method"], [2, 2, "Method"], [8, 9, "Other Scientific Term"], [12, 13, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Furthermore", ",", "we", "improve", "our", "matching", "approach", "by", "employing", "both", "word", "-", "level", "and", "sentence", "-", "level", "attentions", "for", "solving", "the", "noisy", "problem", "in", "the", "informal", "text", "."], "ner": [[5, 6, "Method"], [5, 5, "Task"], [14, 17, "Method"], [17, 17, "Method"], [21, 22, "Problem"], [10, 12, 17, 17, "Method"]], "relations": [[0, 1, "Used-for"], [2, 3, "Part-for"], [5, 3, "Part-for"], [5, 0, "Used-for"], [2, 0, "Used-for"], [0, 4, "Used-for"], [5, 4, "Used-for"], [2, 4, "Used-for"], [5, 3, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["In", "sum", ",", "the", "proposed", "method", "is", "effective", "in", "exploiting", "the", "unlabeled", "data", "and", "reducing", "the", "annotation", "work", "load", "for", "one", "-", "shot", "video", "-", "based", "person", "re", "-", "ID", "."], "ner": [[20, 29, "Task"], [23, 29, "Task"], [26, 29, "Task"], [27, 29, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "Tuefact", "system", "follows", "this", "division", ",", "even", "going", "as", "far", "as", "using", "different", "pre", "-", "processing", "to", "accommodate", "for", "the", "different", "needs", "."], "ner": [[1, 1, "Method"], [14, 16, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Kummerfeld", "et", "al", ".", "(", "2010", ")", "proposed", "a", "self", "-", "training", "method", "focusing", "on", "increasing", "the", "speed", "of", "a", "CCG", "parser", "rather", "than", "its", "accuracy", "."], "ner": [[9, 12, "Method"], [17, 17, "Metric"], [20, 21, "Method"], [20, 20, "Other Scientific Term"], [21, 21, "Method"], [25, 25, "Metric"]], "relations": [[2, 4, "Hyponym-of"], [0, 2, "Used-for"], [1, 2, "Evaluate-for"], [5, 2, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["This", "model", "only", "achieves", "19.8", "%", "WER", "on", "the", "development", "data", "and", "25.7", "%", "WER", "on", "the", "test", "data", "."], "ner": [[6, 6, "Metric"], [14, 14, "Metric"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["This", "paper", "addresses", "the", "task", "of", "dense", "non", "-", "rigid", "structure", "-", "front", "-", "motion", "(", "NRSfM", ")", "using", "multiple", "images", "."], "ner": [[7, 14, "Task"], [16, 16, "Task"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "image", "-", "level", "supervision", "is", "introduced", "to", "overcome", "the", "aforementioned", "missing", "annotations", "by", "reconstructing", "the", "image", "from", "objects", "and", "enforcing", "the", "reconstructed", "image", "close", "to", "the", "original", "image", "."], "ner": [[1, 4, "Other Scientific Term"], [4, 4, "Other Scientific Term"], [11, 12, "Problem"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "conjecture", "that", "this", "happens", "because", "data", "augmentation", "is", "not", "effective", "in", "the", "case", "of", "Navajo", "due", "to", "the", "short", "average", "length", "of", "the", "longest", "common", "substrings", "(", "LCS", ")", "of", "Navajo", "lemmas", "and", "word", "forms", "."], "ner": [[6, 7, "Method"], [24, 26, "Other Scientific Term"], [28, 28, "Other Scientific Term"], [31, 32, "Other Scientific Term"]], "relations": [[1, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["This", "improvement", "is", "due", "to", "the", "use", "of", "two", "knowledge", "sources", "namely", "source", "sentence", "and", "target", "language", "to", "estimate", "the", "back", "-", "off", "model", ",", "instead", "of", "just", "using", "the", "target", "language", "."], "ner": [[12, 13, "Other Scientific Term"], [15, 16, "Other Scientific Term"], [20, 23, "Method"], [30, 31, "Other Scientific Term"]], "relations": [[1, 3, "Synonymy-of"], [0, 2, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "model", "comparison", "allows", "us", "to", "understand", "the", "impact", "of", "incorporating", "context", "during", "training", "for", "acceptability", "prediction", "."], "ner": [[15, 16, "Task"], [16, 16, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "corpus", "-", "based", "approaches", "(", "Lin", "1998", ";", "Lin", "and", "Pantel", "2001", ";", "Pantel", "and", "Lin", "2002", ";", "Pasca", "2004", ";", "Zhang", "et", "al", ".", ",", "2009", ")", ",", "semantic", "classes", "are", "obtained", "by", "the", "offline", "processing", "of", "a", "corpus", "which", "can", "be", "unstructured", "(", "e.g.", ",", "plain", "text", ")", "or", "semi", "-", "structured", "(", "e.g.", ",", "web", "pages", ")", "."], "ner": [[1, 4, "Method"], [36, 37, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "their", "Bayes", "net", ",", "morpheme", "underlying", "forms", "are", "latent", "variables", ",", "while", "word", "surface", "forms", "are", "observed", "variables", "."], "ner": [[2, 3, "Method"], [5, 5, "Other Scientific Term"], [9, 10, "Other Scientific Term"], [17, 18, "Other Scientific Term"]], "relations": [[2, 0, "Part-for"], [3, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["The", "principle", "behind", "our", "amortized", "RGS", "approach", "can", "be", "applied", "for", "ICM", "also", "."], "ner": [[4, 5, "Method"], [5, 5, "Method"], [11, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Numerous", "SC", "methods", "have", "been", "proposed", "during", "the", "last", "two", "decades", "."], "ner": [[1, 2, "Method"], [1, 1, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["For", "experimental", "evaluations", ",", "we", "apply", "the", "proposed", "method", "on", "INTERSPEECH", "2018", "computational", "paralinguistics", "challenge", "(", "ComParE", ")", ",", "crying", "sub", "-", "challenge", ",", "which", "is", "a", "three", "-", "class", "classification", "task", "using", "an", "annotated", "database", "(", "CRIED", ")", "."], "ner": [[10, 14, "Other Scientific Term"], [12, 13, "Task"], [16, 16, "Other Scientific Term"], [19, 22, "Task"], [30, 30, "Task"], [35, 35, "Other Scientific Term"], [37, 37, "Material"]], "relations": [[0, 2, "Synonymy-of"], [3, 4, "Hyponym-of"], [6, 3, "Used-for"], [1, 0, "Part-for"], [1, 2, "Part-for"]], "discontinuous": false}
{"tokens": ["Sentiment", "analysis", "(", "Pang", "and", "Lee", ",", "2008", ")", "is", "a", "task", "of", "predicting", "whether", "the", "text", "expresses", "a", "positive", ",", "negative", ",", "or", "neutral", "opinion", "in", "general", "or", "with", "respect", "to", "an", "entity", "of", "interest", "."], "ner": [[0, 1, "Task"], [1, 1, "Task"], [33, 33, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "specially", "look", "at", "the", "syntactic", "-", "semantic", "alignment", "of", "the", "Catalan", "and", "Spanish", "datasets", "."], "ner": [[5, 8, "Task"], [8, 8, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "propose", "to", "learn", "the", "reward", "function", "from", "labeled", "data", "and", "use", "the", "predicted", "reward", "as", "pseudo", "reward", "for", "unlabeled", "data", "so", "that", "we", "can", "learn", "from", "unlabeled", "data", "using", "the", "pseudo", "reward", "."], "ner": [[5, 6, "Other Scientific Term"], [5, 5, "Other Scientific Term"], [13, 14, "Other Scientific Term"], [14, 14, "Other Scientific Term"], [16, 17, "Other Scientific Term"], [17, 17, "Other Scientific Term"], [31, 32, "Other Scientific Term"], [32, 32, "Other Scientific Term"]], "relations": [[1, 3, "Synonymy-of"], [1, 5, "Synonymy-of"], [1, 7, "Synonymy-of"], [3, 5, "Synonymy-of"], [3, 7, "Synonymy-of"], [5, 7, "Synonymy-of"], [4, 6, "Synonymy-of"], [2, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [2, 5, "Hyponym-of"], [2, 7, "Hyponym-of"], [4, 1, "Hyponym-of"], [4, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [4, 7, "Hyponym-of"], [6, 1, "Hyponym-of"], [6, 3, "Hyponym-of"], [6, 5, "Hyponym-of"], [6, 7, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "RNN", "framework", "estimates", "the", "trajectories", "of", "behavior", "in", "conversational", "interactions", "using", "sequences", "of", "sentence", "embeddings", "."], "ner": [[1, 1, "Method"], [9, 10, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [15, 15, "Other Scientific Term"]], "relations": [[2, 0, "Used-for"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["As", "the", "field", "of", "argument", "mining", "continues", "its", "dramatic", "growth", ",", "there", "are", "an", "increasing", "number", "of", "strategies", "being", "explored", "for", "contributing", "to", "the", "task", "."], "ner": [[4, 5, "Task"], [5, 5, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "present", "a", "framework", "for", "human", "pose", "estimation", "using", "an", "articulated", "grammar", "model", ",", "as", "well", "as", "a", "simple", "approach", "to", "integrate", "a", "background", "model", "into", "the", "grammar", "that", "can", "improve", "localization", "performance", "in", "cluttered", "scenes", "."], "ner": [[5, 7, "Task"], [7, 7, "Task"], [10, 12, "Method"], [11, 12, "Method"], [23, 24, "Method"], [27, 27, "Other Scientific Term"], [31, 31, "Task"], [34, 35, "Other Scientific Term"], [35, 35, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [7, 8, "Hyponym-of"], [2, 0, "Used-for"], [4, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "addition", "to", "facial", "AU", "detection", ",", "some", "researchers", "have", "also", "focused", "on", "other", "related", "problems", "."], "ner": [[3, 5, "Task"], [4, 5, "Task"], [4, 4, "Other Scientific Term"], [5, 5, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "problem", "of", "overfitting", "to", "a", "limited", "set", "of", "test", "data", "has", "been", "of", "central", "interest", "to", "the", "body", "of", "work", "focusing", "on", "domain", "adaptation", "(", "Daume", "III", ",", "2007", ";", "Carpuat", "et", "al", ".", ",", "2013", ";", "Jiang", "and", "Zhai", ",", "2007", ")", "."], "ner": [[3, 3, "Problem"], [23, 24, "Task"], [24, 24, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "introduced", "Expert", "Stance", "Graphs", ",", "a", "novel", ",", "large", "scale", "knowledge", "resource", "that", "has", "many", "potential", "use", "cases", "in", "computational", "argumentation", "."], "ner": [[2, 4, "Material"], [20, 21, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Image", "captioning", "models", "are", "usually", "evaluated", "without", "explicitly", "considering", "their", "ability", "to", "generalize", "to", "unseen", "concepts", "."], "ner": [[0, 2, "Method"], [0, 1, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "introduced", "the", "task", "of", "zero", "-", "resource", "neural", "machine", "translation", "using", "pivot", "-", "language", "monolingual", "data", "."], "ner": [[6, 11, "Task"], [9, 11, "Task"], [10, 11, "Task"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Most", "of", "the", "development", "of", "natural", "language", "processing", "(", "NLP", ")", "applications", "has", "been", "focused", "on", "specific", "tasks", "such", "as", "Information", "Retrieval", "(", "IR", ")", "and", "Question", "Answering", "(", "QA", ")", ",", "largely", "ignoring", "the", "question", "of", "figurative", "use", "of", "language", "."], "ner": [[5, 7, "Task"], [9, 9, "Task"], [20, 21, "Task"], [23, 23, "Task"], [26, 27, "Task"], [29, 29, "Task"]], "relations": [[0, 1, "Synonymy-of"], [2, 3, "Synonymy-of"], [4, 5, "Synonymy-of"], [2, 0, "Hyponym-of"], [4, 0, "Hyponym-of"], [3, 0, "Hyponym-of"], [5, 0, "Hyponym-of"], [2, 1, "Hyponym-of"], [3, 1, "Hyponym-of"], [4, 1, "Hyponym-of"], [5, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Another", "way", "of", "integrating", "word", "compositions", "into", "CSLMs", "is", "to", "follow", "an", "additive", "approach", ",", "such", "that", ",", "a", "word", "can", "be", "represented", "as", "the", "sum", "of", "vectors", "representing", "its", "morphemes", "."], "ner": [[7, 7, "Method"], [12, 13, "Method"], [30, 30, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "fact", ",", "the", "proposed", "fusion", "algorithm", "is", "an", "alternative", "boosting", "approach", "for", "consolidating", "multiple", "decisions", "provided", "by", "different", "weak", "learners", "in", "a", "strong", "inference", "model", "."], "ner": [[10, 10, "Method"], [20, 20, "Method"], [24, 25, "Method"], [24, 24, "Task"]], "relations": [[2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "can", "potentially", "improve", "the", "performance", "of", "CREPE", "even", "further", "by", "enforcing", "temporal", "smoothness", "."], "ner": [[7, 7, "Method"], [12, 13, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "the", "second", "study", ",", "we", "apply", "the", "t", "-", "SNE", "[", "8", "]", "visualisation", "technique", "on", "the", "learned", "representations", "of", "each", "model", "and", "show", "that", "the", "LSTM", "model", "seems", "to", "cluster", "the", "data", "according", "to", "corpus", "rather", "than", "emotion", "."], "ner": [[8, 10, "Method"], [14, 15, "Method"], [14, 14, "Task"], [27, 27, "Method"]], "relations": [[1, 2, "Used-for"], [0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "study", "the", "influence", "of", "three", "types", "of", "lexical", "information", ":", "lemmas", ",", "morphological", "features", ",", "and", "word", "clusters", "."], "ner": [[9, 10, "Other Scientific Term"], [12, 12, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [18, 19, "Other Scientific Term"]], "relations": [[1, 0, "Hyponym-of"], [2, 0, "Hyponym-of"], [3, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "our", "work", "we", "aim", "to", "overcome", "the", "spatial", "resolution", "limit", "of", "SPAD", "arrays", "while", "preserving", "and", "even", "enhancing", "the", "time", "resolution", "by", "developing", "a", "compressive", "sensing", "SPAD", "camera", "."], "ner": [[8, 10, "Problem"], [8, 9, "Other Scientific Term"], [12, 13, "Method"], [12, 12, "Other Scientific Term"], [20, 21, "Metric"], [25, 28, "Method"], [27, 27, "Other Scientific Term"]], "relations": [[5, 0, "Used-for"], [3, 6, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "propose", "an", "Interaction", "-", "Aware", "Topic", "Model", "(", "IATM", ")", "for", "microblog", "conversations", "by", "integrating", "network", "embedding", "and", "user", "attention", "."], "ner": [[7, 11, "Method"], [10, 11, "Method"], [13, 13, "Method"], [20, 21, "Method"], [21, 21, "Method"], [23, 24, "Method"], [24, 24, "Method"]], "relations": [[0, 2, "Synonymy-of"], [0, 1, "Hyponym-of"], [2, 1, "Hyponym-of"], [3, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [3, 0, "Used-for"], [5, 0, "Used-for"], [3, 2, "Used-for"], [5, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "also", "test", "this", "technique", "on", "the", "recently", "published", "SITW", "database", "and", "show", "a", "significant", "gain", "compared", "to", "the", "baseline", "system", "performance", "."], "ner": [[9, 9, "Material"], [10, 10, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "train", "a", "maximum", "entropy", "classifier", ",", "and", "then", "use", "the", "classifier", "to", "predict", "argument", "relationships", "between", "any", "two", "candidate", "arguments", "in", "a", "sentence", "."], "ner": [[3, 5, "Method"], [3, 4, "Method"], [4, 4, "Other Scientific Term"], [5, 5, "Method"], [11, 11, "Method"]], "relations": [[1, 3, "Used-for"], [1, 0, "Used-for"], [0, 3, "Hyponym-of"], [3, 4, "Synonymy-of"], [1, 4, "Used-for"], [0, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "demonstrated", "a", "method", "of", "normatively", "calculating", "these", "probabilities", "from", "probabilistic", "Earley", "parses", "and", "used", "this", "implemented", "model", "to", "make", "predictions", "for", "the", "materials", "for", "the", "original", "experimental", "result", "of", "effects", "of", "local", "coherences", "."], "ner": [[10, 12, "Method"], [11, 12, "Method"], [32, 33, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Recently", ",", "Blei", "and", "McAuliffe", "(", "2008", ")", "proposed", "an", "approach", "for", "joint", "sentiment", "and", "topic", "modeling", "that", "can", "be", "viewed", "as", "a", "supervised", "LDA", "(", "sLDA", ")", "model", "that", "tries", "to", "infer", "topics", "appropriate", "for", "use", "in", "a", "given", "classification", "or", "regression", "problem", "."], "ner": [[15, 16, "Task"], [16, 16, "Task"], [23, 24, "Method"], [24, 24, "Method"], [26, 26, "Method"], [40, 40, "Task"], [42, 42, "Task"], [12, 16, "Task"], [13, 13, 16, 16, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [2, 4, "Synonymy-of"], [4, 3, "Hyponym-of"], [2, 7, "Used-for"], [4, 7, "Used-for"], [2, 5, "Used-for"], [2, 6, "Used-for"], [4, 5, "Used-for"], [4, 6, "Used-for"]], "discontinuous": true}
{"tokens": ["Despite", "gains", "from", "the", "Mem2Seq", "model", ",", "the", "performance", "difference", "between", "the", "non", "-", "OOV", "and", "OOV", "test", "sets", "remains", "large", "."], "ner": [[4, 4, "Method"], [16, 18, "Other Scientific Term"], [12, 14, 17, 18, "Other Scientific Term"]], "relations": [[2, 0, "Used-for"], [1, 0, "Used-for"]], "discontinuous": true}
{"tokens": ["We", "only", "focus", "on", "target", "classification", "after", "the", "targets", "have", "been", "extracted", "."], "ner": [[4, 5, "Task"], [5, 5, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "order", "to", "target", "on", "the", "large", "-", "scale", "problem", ",", "we", "employ", "FOMs", "in", "the", "optimization", "process", "to", "mitigate", "the", "computational", "complexity", "."], "ner": [[13, 13, "Method"], [16, 16, "Task"], [21, 22, "Metric"], [22, 22, "Metric"]], "relations": [[0, 1, "Used-for"], [2, 1, "Evaluate-for"], [2, 0, "Evaluate-for"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "general", ",", "however", ",", "the", "most", "critical", "parameter", "in", "wireless", "sensor", "networks", "is", "typically", "the", "energy", "consumption", ",", "which", "is", "directly", "proportional", "to", "the", "convergence", "time", "and", "to", "the", "transmit", "power", "."], "ner": [[10, 12, "Method"], [10, 11, "Other Scientific Term"], [11, 11, "Other Scientific Term"], [25, 26, "Other Scientific Term"], [30, 31, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["While", "OIE", "methods", "are", "targeted", "at", "being", "domain", "independent", ",", "they", "have", "been", "evaluated", "primarily", "on", "newspaper", ",", "encyclopedic", "or", "general", "web", "text", "."], "ner": [[1, 2, "Method"], [1, 1, "Task"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["It", "will", "facilitate", "deployment", "of", "large", "neural", "language", "models", "on", "memory", "-", "constrained", "devices", "."], "ner": [[6, 8, "Method"], [7, 8, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "kernels", "that", "fall", "in", "the", "same", "cluster", "share", "the", "same", "weight", "parameter", "."], "ner": [[1, 1, "Other Scientific Term"], [11, 12, "Other Scientific Term"]], "relations": [[1, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", "we", "investigated", "the", "usefulness", "of", "integrating", "word", "classes", "in", "phrase", "-", "based", "models", "and", "Operation", "Sequence", "N", "-", "gram", "models", "."], "ner": [[12, 15, "Method"], [17, 21, "Method"], [19, 21, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "then", "compare", "our", "complete", "model", "with", "the", "existing", "methods", "for", "semantic", "segmentation", "on", "these", "datasets", ",", "followed", "by", "ablation", "experiments", "to", "determine", "whether", "our", "depth", "-", "aware", "gating", "module", "improves", "semantic", "segmentation", ",", "validate", "the", "benefit", "of", "our", "recurrent", "module", ",", "and", "compare", "among", "using", "ground", "-", "truth", "depth", ",", "predicted", "depth", ",", "and", "unsupervised", "attentional", "gating", "."], "ner": [[11, 12, "Task"], [12, 12, "Task"], [25, 28, "Method"], [28, 28, "Method"], [31, 32, "Task"], [32, 32, "Task"], [39, 40, "Method"], [46, 49, "Other Scientific Term"], [51, 52, "Other Scientific Term"], [55, 57, "Method"], [56, 57, "Method"], [57, 57, "Method"]], "relations": [[0, 4, "Synonymy-of"], [1, 5, "Synonymy-of"], [0, 1, "Hyponym-of"], [0, 5, "Hyponym-of"], [4, 1, "Hyponym-of"], [4, 5, "Hyponym-of"], [2, 3, "Hyponym-of"], [9, 10, "Hyponym-of"], [10, 11, "Hyponym-of"], [2, 11, "Hyponym-of"], [10, 3, "Hyponym-of"], [2, 4, "Used-for"], [2, 0, "Used-for"], [6, 0, "Used-for"], [6, 0, "Used-for"], [3, 11, "Synonymy-of"], [6, 4, "Synonymy-of"], [2, 6, "Part-for"], [7, 0, "Used-for"], [7, 4, "Used-for"], [8, 0, "Used-for"], [8, 4, "Used-for"], [9, 0, "Used-for"], [9, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "particular", ",", "a", "strong", "assumption", "is", "imposed", ":", "odometry", "and", "inlier", "loop", "-", "closure", "constraints", "are", "free", "from", "outlier", "feature", "matches", "."], "ner": [[9, 9, "Other Scientific Term"], [11, 15, "Other Scientific Term"], [12, 15, "Other Scientific Term"], [19, 21, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "the", "GP", "optimization", "can", "also", "benefit", "from", "multiple", "cores", "by", "running", "each", "kernel", "computation", "inside", "the", "Gram", "matrix", "in", "parallel", "."], "ner": [[3, 3, "Method"], [3, 4, "Task"], [4, 4, "Task"], [14, 15, "Other Scientific Term"], [14, 14, "Other Scientific Term"], [18, 19, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "work", "extends", "THOR", "with", "a", "new", "set", "of", "actions", "and", "the", "integration", "of", "a", "planner", "."], "ner": [[3, 3, "Task"], [15, 15, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "mention", "-", "level", "embeddings", "are", "used", "to", "make", "coreference", "decisions", ",", "typically", "by", "scoring", "mention", "pairs", "and", "making", "links", "(", "Lee", "et", "al", ".", ",", "2017", ";", "Clark", "and", "Manning", ",", "2016a", ";", "Wiseman", "et", "al", ".", ",", "2016", ")", "."], "ner": [[1, 4, "Other Scientific Term"], [4, 4, "Other Scientific Term"], [9, 10, "Task"]], "relations": [[0, 2, "Used-for"], [0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["With", "the", "exploding", "text", "data", "on", "the", "Web", "and", "fast", "development", "of", "deep", "neural", "network", "technologies", ",", "distributed", "word", "embeddings", "have", "been", "effectively", "trained", "and", "widely", "used", "in", "a", "lot", "of", "text", "mining", "tasks", "(", "Bengio", "et", "al", ".", ",", "2003", ")", "(", "Morin", "and", "Bengio", ",", "2005", ")", "(", "Mnih", "and", "Hinton", ",", "2007", ")", "(", "Collobert", "et", "al", ".", ",", "2011", ")", "(", "Mikolov", "et", "al", ".", ",", "2010", ")", "(", "Mikolov", "et", "al", ".", ",", "2013b", ")", "."], "ner": [[12, 14, "Method"], [13, 14, "Method"], [17, 19, "Method"], [18, 19, "Method"], [19, 19, "Method"], [31, 32, "Task"], [32, 32, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [5, 6, "Hyponym-of"], [2, 5, "Used-for"]], "discontinuous": false}
{"tokens": ["Five", "classifiers", "are", "trained", "for", "each", "subtask", ",", "with", "the", "final", "predictions", "made", "through", "voting", "based", "on", "the", "corresponding", "predictions", "of", "the", "individual", "classifiers", "."], "ner": [[1, 1, "Method"], [14, 14, "Method"], [23, 23, "Method"]], "relations": [[0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "edit", "distance", ",", "or", "Levenshtein", "distance", ",", "is", "the", "minimum", "number", "of", "insert", ",", "substitute", "and", "delete", "operations", "necessary", "to", "transform", "one", "sentence", "into", "the", "other", "."], "ner": [[1, 2, "Other Scientific Term"], [5, 6, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["These", "methods", "are", "not", "only", "helpful", "in", "creating", "an", "acoustic", "knowledge", "base", "but", "in", "the", "future", "can", "also", "directly", "help", "acoustic", "event", "and", "scene", "detection", "research", "."], "ner": [[9, 11, "Other Scientific Term"], [10, 11, "Other Scientific Term"], [23, 24, "Task"], [24, 24, "Task"], [20, 21, 24, 24, "Task"], [20, 20, 23, 24, "Task"], [21, 21, 24, 24, "Task"]], "relations": [[2, 3, "Hyponym-of"], [6, 3, "Hyponym-of"], [0, 1, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["In", "this", "paper", ",", "we", "demonstrate", "that", "ADPSGD", "also", "achieves", "excellent", "runtime", "and", "convergence", "performance", "on", "the", "SWB2000", "speech", "recognition", "task", "with", "an", "LSTM", "model", "."], "ner": [[7, 7, "Method"], [11, 11, "Metric"], [13, 13, "Metric"], [17, 17, "Material"], [18, 19, "Task"], [19, 19, "Task"], [23, 23, "Method"]], "relations": [[1, 0, "Evaluate-for"], [2, 0, "Evaluate-for"], [4, 5, "Hyponym-of"], [0, 3, "Used-for"], [0, 4, "Used-for"], [3, 4, "Used-for"], [6, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Performing", "exact", "inference", "on", "these", "models", "is", "typically", "intractable", "and", "approximate", "methods", "at", "learning", "and", "test", "time", "need", "to", "be", "used", "."], "ner": [[1, 2, "Task"], [2, 2, "Task"], [10, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "many", "multi", "-", "label", "learning", "tasks", ",", "the", "labels", "can", "be", "organized", "into", "a", "hierarchical", "tree", "structure", "from", "coarse", "to", "fine", "."], "ner": [[2, 5, "Task"], [15, 16, "Other Scientific Term"], [16, 16, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Motivated", "by", "the", "need", "to", "provide", "accurate", "entitylinking", "systems", "that", "are", "able", "to", "incorporate", "multiple", "sources", "of", "information", ",", "and", "do", "not", "require", "domain", "-", "specific", "datasets", "or", "hand", "-", "crafted", "features", ",", "we", "presented", "a", "novel", "neural", "approach", "to", "linking", "."], "ner": [[7, 8, "Method"], [7, 7, "Task"], [28, 31, "Other Scientific Term"], [37, 38, "Method"], [40, 40, "Task"]], "relations": [[0, 1, "Used-for"], [3, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "tutorial", "discusses", "a", "framework", "for", "incremental", "left", "-", "to", "-", "right", "structured", "predication", ",", "which", "makes", "use", "of", "global", "discriminative", "learning", "and", "beam", "-", "search", "decoding", "."], "ner": [[12, 13, "Task"], [13, 13, "Task"], [19, 21, "Method"], [20, 21, "Method"], [23, 26, "Method"], [26, 26, "Method"]], "relations": [[2, 3, "Hyponym-of"], [4, 5, "Hyponym-of"], [0, 1, "Hyponym-of"], [2, 0, "Used-for"], [4, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "paper", "presents", "a", "method", "to", "perform", "ST", "training", "when", "the", "student", "and", "teachers", "use", "different", "sets", "of", "state", "clusters", "."], "ner": [[7, 8, "Method"], [18, 19, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Clinical", "TempEval", "2016", "continues", "with", "the", "task", "of", "temporal", "information", "extraction", "from", "clinical", "notes", "in", "similar", "lines", "to", "previously", "described", "works", "."], "ner": [[0, 2, "Other Scientific Term"], [8, 10, "Task"], [9, 10, "Task"], [10, 10, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [1, 0, "Part-for"]], "discontinuous": false}
{"tokens": ["Hence", ",", "previous", "work", "focuses", "on", "developing", "heuristics", "to", "locally", "disambiguate", "the", "surface", "normals", "."], "ner": [[7, 7, "Method"], [12, 13, "Other Scientific Term"], [13, 13, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "show", "that", "using", "such", "concepts", "can", "lead", "to", "significant", "improvements", "in", "text", "summarization", "performance", "outside", "of", "the", "newswire", "domain", "."], "ner": [[12, 13, "Task"], [13, 13, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "the", "real", "world", "datasets", "which", "contain", "shapes", "that", "are", "deformed", "by", "articulation", "and", "non", "-", "rigid", "body", "transformations", ",", "the", "algorithms", "need", "to", "model", "higher", "variance", "of", "the", "geometric", "patterns", "distributed", "among", "different", "measurements", ",", "objects", "and", "classes", "."], "ner": [[12, 12, "Other Scientific Term"], [14, 18, "Other Scientific Term"], [17, 18, "Other Scientific Term"], [26, 26, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["LD", "scores", "can", "be", "used", "not", "only", "for", "evaluation", ",", "but", "also", "for", "model", "development", "and", "optimization", "."], "ner": [[0, 1, "Metric"], [0, 0, "Other Scientific Term"], [8, 8, "Task"], [13, 14, "Task"], [16, 16, "Task"], [13, 13, 16, 16, "Task"]], "relations": [[0, 2, "Evaluate-for"], [0, 5, "Evaluate-for"], [0, 3, "Evaluate-for"]], "discontinuous": true}
{"tokens": ["The", "mathematical", "analysis", "of", "such", "implicit", "regularisation", "is", "a", "fascinating", "direction", "of", "future", "work", "."], "ner": [[5, 6, "Method"], [6, 6, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["By", "comparing", "the", "induced", "senses", "for", "each", "time", "slice", "and", "observing", "intercluster", "differences", ",", "their", "method", "can", "detect", "whether", "senses", "emerge", "or", "disappear", "."], "ner": [[3, 4, "Other Scientific Term"], [4, 4, "Other Scientific Term"], [7, 8, "Other Scientific Term"], [11, 12, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 4, "Synonymy-of"], [0, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "represents", "a", "fundamental", "problem", "in", "computer", "vision", "and", "appears", "in", "e.g.", "object", "detection", "."], "ner": [[6, 7, "Task"], [12, 13, "Task"], [13, 13, "Task"]], "relations": [[1, 2, "Hyponym-of"], [1, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "take", "a", "different", "approach", "to", "active", "learning", "in", "the", "hopes", "of", "improving", "performance", "and", "improving", "the", "flexibility", "of", "the", "active", "learning", "approach", "."], "ner": [[6, 7, "Method"], [20, 21, "Method"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["The", "credibility", "of", "the", "news", "was", "assessed", "by", "applying", "the", "loopy", "belief", "propagation", "algorithm", "to", "perform", "semi", "-", "supervised", "learning", "on", "this", "graph", "."], "ner": [[10, 12, "Method"], [11, 12, "Method"], [16, 19, "Method"], [22, 22, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "the", "context", "of", "impact", "assessment", ",", "expert", "critics", "(", "short", "experts", "in", "this", "paper", ")", "can", "be", "conceptualized", "as", "people", "with", "high", "standards", "of", "integrity", "and", "an", "extrinsic", "motivation", "for", "this", "task", ",", "such", "as", "writing", "reviews", "as", "part", "of", "their", "jobs", "as", "journalists", "."], "ner": [[4, 5, "Task"], [5, 5, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["However", ",", "traditional", "pipeline", "method", "not", "only", "excises", "the", "error", "propagation", "problem", ",", "but", "also", "ca", "n't", "detect", "some", "complicated", "semantic", "information", "such", "as", "hyponymy", "or", "synonymy", "."], "ner": [[9, 10, "Problem"], [20, 21, "Other Scientific Term"], [24, 24, "Other Scientific Term"], [26, 26, "Other Scientific Term"]], "relations": [[2, 1, "Hyponym-of"], [3, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "entire", "why", "-", "QA", "model", "can", "be", "seen", "as", "an", "extension", "of", "the", "state", "-", "of", "-", "the", "-", "art", "why", "-", "QA", "method", "."], "ner": [[2, 5, "Method"], [2, 4, "Task"], [21, 24, "Method"], [21, 23, "Task"]], "relations": [[0, 2, "Synonymy-of"], [1, 3, "Synonymy-of"], [0, 1, "Used-for"], [0, 3, "Used-for"], [2, 1, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "insights", "into", "the", "global", "geometry", "and", "the", "two", "stage", "algorithm", "extend", "to", "the", "convolutional", "dictionary", "learning", "problem", ",", "where", "a", "superposition", "of", "multiple", "convolution", "signals", "is", "observed", "."], "ner": [[4, 5, "Other Scientific Term"], [14, 16, "Task"], [15, 16, "Task"], [24, 25, "Other Scientific Term"], [24, 24, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "Word", "heuristic", "measures", "the", "relative", "closeness", "of", "each", "word", "in", "the", "sentence", "to", "every", "relation", "class", "."], "ner": [[1, 2, "Method"], [2, 2, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Segmenting", "objects", "in", "videos", "is", "a", "fundamental", "task", "in", "computer", "vision", "because", "of", "its", "wide", "applications", "such", "as", "video", "surveillance", ",", "video", "editing", ",", "and", "autonomous", "driving", "."], "ner": [[9, 10, "Task"], [18, 19, "Task"], [21, 22, "Task"], [25, 26, "Task"]], "relations": [[1, 0, "Hyponym-of"], [2, 0, "Hyponym-of"], [3, 0, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "describe", "the", "annotation", "guidelines", "and", "process", ",", "including", "the", "use", "of", "named", "entity", "data", "to", "improve", "annotation", "quality", "."], "ner": [[12, 13, "Other Scientific Term"], [13, 13, "Other Scientific Term"]], "relations": [[1, 0, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "the", "decentralized", "consensus", "optimization", "problem", ",", "a", "network", "of", "agents", "minimizes", "the", "summation", "of", "their", "local", "objective", "functions", "on", "a", "common", "set", "of", "variables", ",", "allowing", "only", "information", "exchange", "among", "neighbors", "."], "ner": [[2, 4, "Task"], [2, 3, "Method"], [4, 4, "Task"], [16, 18, "Other Scientific Term"], [17, 18, "Other Scientific Term"]], "relations": [[0, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "performance", "of", "the", "SPM", "method", "based", "on", "the", "phonological", "posteriors", "has", "been", "evaluated", "on", "mono", "-", "lingual", "and", "cross", "-", "lingual", "tests", "."], "ner": [[4, 4, "Method"], [9, 10, "Other Scientific Term"], [10, 10, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "particular", ",", "we", "utilize", "the", "pointing", "mechanism", "to", "elegantly", "point", "when", "to", "copy", "the", "novel", "objects", "to", "target", "sentence", ",", "targeting", "for", "balancing", "the", "influence", "between", "copying", "mechanism", "and", "standard", "word", "-", "by", "-", "word", "sentence", "generation", "conditioned", "on", "the", "contexts", "."], "ner": [[6, 7, "Method"], [27, 28, "Method"], [31, 37, "Method"], [36, 37, "Task"], [37, 37, "Task"]], "relations": [[3, 4, "Hyponym-of"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "question", "rephrased", "in", "more", "technical", "terminology", "is", ":", "how", "should", "a", "deep", "ConvNet", "representation", "be", "learned", "and", "adjusted", "to", "allow", "better", "transfer", "learning", "from", "a", "source", "task", "producing", "a", "generic", "representation", "to", "a", "specific", "target", "task", "?"], "ner": [[12, 14, "Method"], [12, 13, "Method"], [13, 13, "Method"], [22, 23, "Method"], [30, 31, "Method"]], "relations": [[1, 2, "Hyponym-of"], [0, 3, "Used-for"], [1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["It", "shows", "that", "our", "temporal", "structure", "filters", "are", "able", "to", "capture", "the", "relations", "that", "the", "frames", "of", "a", "sitting", "action", "come", "before", "the", "frames", "of", "standing", "up", ",", "regardless", "of", "the", "other", "actions", "that", "may", "occur", "in", "the", "video", "."], "ner": [[4, 6, "Method"], [4, 5, "Other Scientific Term"], [6, 6, "Method"]], "relations": [[0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "difficulties", "of", "unsupervised", "abstractive", "summarization", "are", "two", "-", "fold", ":", "obtaining", "the", "representation", "of", "the", "summaries", ",", "and", "learning", "a", "language", "model", "to", "decode", "them", "."], "ner": [[3, 5, "Task"], [4, 5, "Task"], [5, 5, "Task"], [21, 22, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Our", "work", "can", "be", "used", "for", "collecting", "large", "-", "scale", "datasets", "with", "minimal", "supervision", "to", "improve", "the", "current", "state", "-", "of", "-", "the", "-", "art", "object", "detectors", ";", "in", "turn", ",", "the", "improved", "models", "will", "make", "our", "system", "more", "effective", "."], "ner": [[25, 26, "Method"], [26, 26, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Specifically", ",", "we", "define", "the", "word", "-", "level", "difficulty", "from", "three", "perspectives", ",", "and", "use", "the", "extracted", "knowledge", "to", "construct", "a", "knowledge", "graph", "."], "ner": [[21, 22, "Other Scientific Term"], [22, 22, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "the", "literature", ",", "there", "are", "many", "methods", "based", "on", "various", "forms", "of", "transformations", "and", "thresholding", ",", "which", "require", "predetermined", "or", "fine", "-", "tuned", "thresholds", "."], "ner": [[13, 13, "Method"], [15, 15, "Method"], [21, 24, "Other Scientific Term"], [24, 24, "Other Scientific Term"], [19, 19, 24, 24, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [4, 3, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["The", "model", "can", "be", "applied", "to", "other", "emotional", "and", "sentiment", "classification", "problems", "and", "can", "be", "modified", "to", "accept", "external", "attention", "signals", "and", "emotional", "specific", "word", "embedding", "."], "ner": [[9, 10, "Task"], [10, 10, "Task"], [24, 25, "Other Scientific Term"], [25, 25, "Other Scientific Term"], [7, 7, 10, 10, "Task"]], "relations": [[0, 1, "Hyponym-of"], [4, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [2, 4, "Used-for"], [2, 0, "Used-for"]], "discontinuous": true}
{"tokens": ["This", "paper", "re", "-", "examines", "the", "basic", "set", "of", "equations", "of", "photometric", "stereo", ",", "under", "an", "assumption", "of", "perspective", "projection", "."], "ner": [[11, 12, "Method"], [18, 19, "Other Scientific Term"], [19, 19, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Further", ",", "unlike", "them", "we", "develop", "an", "algorithm", "to", "compute", "these", "conditional", "decompositions", "(", "contextual", "symmetries", "in", "our", "case", ")", "and", "show", "how", "they", "can", "be", "used", "in", "practice", "for", "efficient", "probabilistic", "inference", "."], "ner": [[11, 12, "Other Scientific Term"], [14, 15, "Other Scientific Term"], [31, 32, "Task"], [32, 32, "Task"]], "relations": [[2, 3, "Hyponym-of"], [0, 2, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["To", "the", "best", "of", "our", "knowledge", ",", "this", "is", "the", "first", "approach", "for", "predicting", "domain", "-", "specific", "senses", "based", "on", "a", "transformer", "that", "is", "trained", "with", "multi", "-", "task", "learning", "."], "ner": [[14, 17, "Other Scientific Term"], [17, 17, "Other Scientific Term"], [21, 21, "Method"], [26, 29, "Method"]], "relations": [[0, 1, "Hyponym-of"], [3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "is", "true", "even", "when", "the", "approximate", "inference", "itself", "is", "restricted", "to", "be", "something", "as", "simple", "as", "a", "convex", "minimization", "."], "ner": [[6, 7, "Method"], [7, 7, "Task"], [18, 19, "Method"], [19, 19, "Task"]], "relations": [[0, 1, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "a", "syntactically", "constrained", "bidirectional", "-", "asynchronous", "approach", "for", "emotional", "conversation", "generation", "(", "E", "-", "SCBA", ")", "is", "proposed", "to", "address", "this", "issue", "."], "ner": [[5, 10, "Method"], [7, 10, "Method"], [12, 14, "Task"], [13, 14, "Task"], [14, 14, "Task"], [16, 18, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"], [3, 4, "Hyponym-of"], [2, 5, "Synonymy-of"], [0, 2, "Used-for"], [0, 5, "Used-for"], [5, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "effectiveness", "of", "our", "rescoring", "method", "suggests", "that", "the", "reranking", "approach", "of", "(", "Kahn", "et", "al", ".", ",", "2005", ")", "was", "successful", "not", "only", "because", "of", "their", "prosodic", "feature", "design", ",", "but", "also", "because", "they", "restrict", "the", "search", "space", "for", "reranking", "to", "n", "-", "best", "lists", "generated", "by", "a", "syntactic", "model", "alone", "."], "ner": [[4, 5, "Method"], [4, 4, "Task"], [9, 10, "Method"], [9, 9, "Task"], [27, 28, "Other Scientific Term"], [37, 38, "Other Scientific Term"], [40, 40, "Task"], [49, 50, "Method"]], "relations": [[0, 1, "Used-for"], [2, 3, "Used-for"], [3, 6, "Synonymy-of"], [2, 6, "Used-for"], [4, 2, "Used-for"], [4, 3, "Used-for"], [4, 6, "Used-for"], [4, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "scanline", "correspondence", "of", "these", "images", "benefits", "real", "-", "time", "stereo", "by", "avoiding", "the", "computational", "cost", "and", "image", "degradation", "due", "to", "resampling", "when", "rectification", "is", "performed", "after", "image", "capture", "."], "ner": [[1, 2, "Other Scientific Term"], [7, 10, "Task"], [14, 15, "Metric"], [17, 18, "Problem"], [21, 21, "Method"], [23, 23, "Method"], [27, 28, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [4, 1, "Used-for"], [5, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Secondly", ",", "there", "is", "no", "mechanism", "to", "incorporate", "prior", "information", ",", "which", "can", "be", "advantageous", ",", "as", "seen", "even", "with", "weak", "priors", "."], "ner": [[8, 9, "Other Scientific Term"], [8, 8, "Other Scientific Term"], [20, 21, "Other Scientific Term"], [21, 21, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [1, 3, "Synonymy-of"], [2, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "allows", "different", "composition", "functions", "when", "combining", "different", "types", "of", "phrases", "and", "is", "shown", "to", "result", "in", "a", "large", "improvement", "in", "parsing", "accuracy", "."], "ner": [[3, 4, "Other Scientific Term"], [21, 21, "Task"], [22, 22, "Metric"]], "relations": [[2, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Our", "smaller", "task", "of", "role", "identification", "addressed", "here", "can", "be", "considered", "a", "subproblem", "of", "appraisal", "analysis", "."], "ner": [[4, 5, "Task"], [5, 5, "Task"], [14, 15, "Task"], [14, 14, "Other Scientific Term"], [15, 15, "Task"]], "relations": [[0, 1, "Hyponym-of"], [2, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Many", "dependency", "parsers", "treat", "attachment", "decisions", "and", "syntactic", "relation", "labeling", "as", "two", "independent", "tasks", ",", "despite", "the", "fact", "that", "relation", "labels", "carry", "important", "subcategorization", "information", "."], "ner": [[1, 2, "Method"], [2, 2, "Method"], [4, 5, "Task"], [5, 5, "Task"], [7, 9, "Task"], [7, 8, "Other Scientific Term"], [8, 9, "Task"], [9, 9, "Task"], [23, 24, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"], [4, 6, "Hyponym-of"], [6, 7, "Hyponym-of"], [0, 2, "Used-for"], [0, 4, "Used-for"], [0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "transfer", "a", "fully", "supervised", "segmentation", "model", "from", "the", "source", "set", "to", "help", "WSOL", "on", "the", "target", "set", "."], "ner": [[8, 10, "Method"], [8, 9, "Task"], [9, 9, "Task"], [9, 10, "Method"], [17, 17, "Task"]], "relations": [[0, 3, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"], [0, 2, "Used-for"], [0, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "simulated", "a", "diverse", "range", "of", "annotator", "types", "on", "MNIST", "and", "CIFAR10", "data", "sets", "while", "we", "used", "a", "ultrasound", "dataset", "for", "cardiac", "view", "classification", "to", "test", "the", "efficacy", "in", "a", "real", "-", "world", "application", "."], "ner": [[9, 9, "Material"], [11, 11, "Material"], [21, 23, "Task"], [23, 23, "Task"]], "relations": [[2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "results", "show", "that", "this", "method", "could", "achieve", "better", "classification", "in", "the", "task", "of", "targeted", "sentiment", "analysis", "."], "ner": [[9, 9, "Task"], [14, 16, "Task"], [15, 16, "Task"], [16, 16, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "identifying", "constraints", "solely", "by", "their", "extensional", "violation", "profiles", ",", "this", "method", "does", "not", "directly", "identify", "the", "intensional", "definitions", "of", "the", "identified", "constraints", ",", "but", "to", "the", "extent", "that", "the", "resulting", "violation", "profiles", "are", "phonologically", "interpretable", ",", "we", "may", "conclude", "that", "the", "data", "themselves", "guide", "constraint", "identification", "."], "ner": [[45, 46, "Task"], [46, 46, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Different", "with", "the", "CMVD", "-", "Depth", "method", "that", "renders", "depth", "images", ",", "CMVDBinary", "renders", "binary", "masks", "of", "the", "model", "to", "achieve", "computational", "efficiency", "and", "robustness", "against", "model", "noise", "."], "ner": [[3, 5, "Method"], [9, 10, "Other Scientific Term"], [12, 12, "Method"], [14, 15, "Other Scientific Term"], [15, 15, "Other Scientific Term"], [21, 22, "Metric"], [22, 22, "Metric"], [24, 24, "Metric"]], "relations": [[5, 6, "Hyponym-of"], [3, 4, "Hyponym-of"], [5, 2, "Evaluate-for"], [7, 2, "Evaluate-for"], [5, 0, "Evaluate-for"], [7, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["This", "is", "achieved", "by", "the", "proposed", "Text2Gist", "component", "in", "the", "Context", "Encoder", "."], "ner": [[6, 6, "Method"], [10, 11, "Method"], [11, 11, "Method"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Part-for"]], "discontinuous": false}
{"tokens": ["This", "improvement", "is", "further", "extended", "by", "the", "choice", "of", "the", "median", "over", "the", "mean", "as", "the", "central", "tendency", ",", "with", "the", "WMFD", "system", "showing", "a", "further", "improvement", "of", "WLDA", "for", "a", "total", "of", "over", "10", "%", "relative", "improvement", "in", "EER", "over", "the", "baseline", "LDA", "system", "on", "mismatched", "and", "interview", "-", "interview", "conditions", "."], "ner": [[10, 10, "Other Scientific Term"], [13, 13, "Other Scientific Term"], [16, 17, "Other Scientific Term"], [21, 21, "Method"], [28, 28, "Method"], [39, 39, "Metric"], [43, 43, "Method"]], "relations": [[5, 3, "Evaluate-for"], [5, 4, "Evaluate-for"], [5, 6, "Evaluate-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "compared", "between", "three", "stemming", "algorithms", ";", "Shereen", "Khoja", "'s", "stemmer", ",", "Tim", "Buckwalter", "'s", "morphological", "analyzer", "and", "the", "Tri", "-", "literal", "root", "extraction", "algorithm", "."], "ner": [[8, 9, "Method"], [8, 8, "Task"], [11, 14, "Method"], [14, 14, "Method"], [16, 20, "Method"], [19, 20, "Method"], [23, 28, "Method"], [26, 27, "Task"], [26, 28, "Method"]], "relations": [[0, 1, "Used-for"], [8, 7, "Used-for"], [6, 7, "Used-for"], [2, 3, "Hyponym-of"], [6, 8, "Hyponym-of"], [4, 5, "Hyponym-of"], [2, 0, "Hyponym-of"], [4, 0, "Hyponym-of"], [6, 0, "Hyponym-of"], [2, 1, "Used-for"], [4, 1, "Used-for"], [6, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "show", "that", "our", "proposed", "architecture", "benefits", "this", "problem", "with", "better", "performance", ",", "and", "we", "outperform", "the", "current", "state", "-", "of", "-", "the", "-", "art", "semantic", "edge", "detection", "methods", "by", "a", "large", "margin", "on", "standard", "data", "sets", "such", "as", "SBD", "and", "Cityscapes", "."], "ner": [[25, 28, "Method"], [25, 27, "Task"], [25, 26, "Other Scientific Term"], [26, 27, "Task"], [26, 28, "Method"], [27, 27, "Task"], [27, 28, "Method"], [39, 39, "Material"], [41, 41, "Material"]], "relations": [[0, 7, "Used-for"], [0, 8, "Used-for"], [0, 1, "Used-for"], [0, 4, "Hyponym-of"], [4, 6, "Hyponym-of"], [4, 3, "Used-for"], [6, 5, "Used-for"], [1, 3, "Hyponym-of"], [3, 5, "Hyponym-of"], [7, 1, "Used-for"], [8, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Computationally", ",", "the", "method", "retains", "the", "advantages", "of", "the", "techniques", "we", "augment", "by", "having", "a", "closed", "form", "solution", "for", "the", "optimization", "and", "represents", "a", "general", "purpose", "method", "for", "combining", "MDS", "-", "derived", "and", "PCA", "-", "derived", "embedding", "methods", "."], "ner": [[15, 17, "Other Scientific Term"], [20, 20, "Task"], [33, 36, "Method"], [36, 36, "Method"], [29, 31, 36, 36, "Method"]], "relations": [[2, 3, "Hyponym-of"], [4, 3, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["In", "particular", ",", "the", "constituent", "parser", "for", "UCCA", "is", "also", "graph", "-", "based", "."], "ner": [[4, 5, "Method"], [5, 5, "Method"], [7, 7, "Task"]], "relations": [[0, 1, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "second", "method", "is", "entirely", "novel", "and", "does", "not", "require", "expert", "trees", "."], "ner": [[10, 11, "Other Scientific Term"], [11, 11, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Since", "summary", "sentences", "generally", "come", "from", "different", "sources", "in", "multi", "-", "document", "summarization", ",", "an", "optimal", "ordering", "is", "crucial", "to", "make", "summaries", "coherent", "and", "readable", "."], "ner": [[9, 12, "Task"], [12, 12, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Nonetheless", ",", "this", "representation", "does", "not", "make", "explicit", "the", "relation", "between", "geometry", "precision", "and", "view", "synthesis", "accuracy", "."], "ner": [[12, 12, "Metric"], [14, 15, "Task"], [14, 14, "Other Scientific Term"], [15, 15, "Task"], [16, 16, "Metric"]], "relations": [[1, 3, "Hyponym-of"], [4, 1, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Our", "second", "type", "of", "experimental", "results", "uses", "BEBFs", "within", "the", "context", "of", "Least", "Squares", "Policy", "Iteration", "(", "LSPI", ")", "(", "Lagoudakis", "&", "Parr", ",", "2003", ")", "."], "ner": [[7, 7, "Other Scientific Term"], [12, 15, "Method"], [17, 17, "Method"]], "relations": [[1, 2, "Synonymy-of"], [0, 1, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "present", "the", "first", "provably", "optimal", "polynomial", "time", "dynamic", "programming", "(", "DP", ")", "algorithm", "for", "best", "-", "first", "shift", "-", "reduce", "parsing", ",", "which", "applies", "the", "DP", "idea", "of", "Huang", "and", "Sagae", "(", "2010", ")", "to", "the", "best", "-", "first", "parser", "of", "Sagae", "and", "Lavie", "(", "2006", ")", "in", "a", "non", "-", "trivial", "way", ",", "reducing", "the", "complexity", "of", "the", "latter", "from", "exponential", "to", "polynomial", "."], "ner": [[6, 7, "Other Scientific Term"], [6, 9, "Method"], [8, 9, "Method"], [11, 11, "Method"], [15, 21, "Task"], [18, 21, "Task"], [21, 21, "Task"], [26, 26, "Method"], [37, 40, "Method"], [40, 40, "Method"], [57, 57, "Metric"]], "relations": [[1, 2, "Hyponym-of"], [1, 3, "Hyponym-of"], [1, 7, "Hyponym-of"], [2, 3, "Synonymy-of"], [2, 7, "Synonymy-of"], [3, 7, "Synonymy-of"], [8, 9, "Hyponym-of"], [2, 8, "Used-for"], [3, 8, "Used-for"], [7, 8, "Used-for"], [1, 4, "Used-for"], [4, 5, "Hyponym-of"], [5, 6, "Hyponym-of"], [10, 8, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "propose", "a", "new", "scheme", "to", "remedy", "the", "above", "problems", ":", "firstly", ",", "the", "designed", "model", "is", "pretrained", "on", "the", "large", "-", "scale", "GCC", "Dataset", ";", "then", "the", "model", "pre", "-", "trained", "on", "GCC", "is", "finetuned", "using", "the", "real", "dataset", "."], "ner": [[27, 27, "Method"], [37, 37, "Method"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Our", "experiments", "on", "the", "CUB-200", "-", "2011", ",", "CARS196", ",", "and", "Online", "Products", "datasets", "demonstrate", "significant", "improvement", "over", "existing", "deep", "feature", "embedding", "methods", "on", "all", "experimented", "embedding", "sizes", "with", "the", "GoogLeNet", "network", "."], "ner": [[4, 6, "Material"], [8, 8, "Material"], [11, 12, "Material"], [19, 21, "Method"], [20, 21, "Method"], [21, 21, "Method"], [26, 26, "Other Scientific Term"], [30, 30, "Method"]], "relations": [[3, 4, "Hyponym-of"], [4, 5, "Hyponym-of"], [3, 0, "Used-for"], [3, 1, "Used-for"], [3, 2, "Used-for"], [7, 0, "Used-for"], [7, 1, "Used-for"], [7, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Besides", ",", "we", "show", "potential", "applications", "of", "our", "proposed", "method", ",", "such", "as", "foveated", "depth", "inference", "."], "ner": [[13, 15, "Task"], [13, 14, "Other Scientific Term"], [14, 15, "Task"], [15, 15, "Task"]], "relations": [[0, 2, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "Section", "2", "we", "describe", "the", "EEG", "dataset", ",", "review", "relevant", "EEG", "features", ",", "and", "explain", "how", "we", "designed", "the", "cascade", "of", "thresholding", "steps", "."], "ner": [[6, 6, "Other Scientific Term"], [11, 12, "Other Scientific Term"], [11, 11, "Other Scientific Term"]], "relations": [[0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Most", "autonomous", "driving", "systems", "from", "industry", "today", "are", "based", "on", "mediated", "perception", "approaches", "."], "ner": [[1, 3, "Method"], [1, 2, "Task"], [10, 11, "Method"]], "relations": [[0, 1, "Used-for"], [2, 0, "Used-for"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["In", "practice", ",", "an", "appropriate", "search", "range", "of", "a", "scene", "is", "needed", "to", "facilitate", "the", "use", "of", "any", "stereo", "matching", "algorithm", "."], "ner": [[9, 9, "Other Scientific Term"], [18, 20, "Method"], [18, 19, "Task"], [19, 19, "Task"], [19, 20, "Method"]], "relations": [[1, 4, "Hyponym-of"], [2, 3, "Hyponym-of"], [1, 2, "Used-for"], [4, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Given", "a", "plain", "tweet", "message", "without", "emoji", ",", "systems", "are", "required", "to", "predict", "which", "emoji", "is", "evoked", "by", "this", "message", "."], "ner": [[6, 6, "Other Scientific Term"], [14, 14, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["We", "conduct", "experiments", "on", "Czech", "-", "English", "and", "English", "-", "Czech", "hierarchical", "phrase", "-", "based", "translation", "systems", "built", "using", "Moses", "with", "default", "configurations", "and", "default", "feature", "functions", "."], "ner": [[12, 16, "Method"], [19, 19, "Method"], [25, 26, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Moreover", ",", "it", "may", "be", "possible", "to", "combine", "neuro", "-", "evolution", "with", "other", "automatic", "architecture", "discovery", "methods", "."], "ner": [[8, 10, "Method"], [13, 16, "Method"], [13, 14, "Method"], [14, 15, "Task"], [14, 16, "Method"]], "relations": [[1, 4, "Hyponym-of"], [4, 3, "Used-for"], [1, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["Antonova", "and", "Misyurev", "(", "2011", ")", "design", "a", "phrase", "-", "based", "decoder", "for", "detecting", "machine", "-", "translated", "documents", "in", "Russian", "-", "English", "Web", "data", "."], "ner": [[8, 11, "Method"], [11, 11, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Two", "representative", "approaches", "of", "SA", "are", "IIS", "-", "LDL", "and", "BFGS", "-", "LDL", ",", "which", "apply", "the", "maximum", "entropy", "model", "to", "learn", "the", "label", "distribution", "."], "ner": [[4, 4, "Method"], [6, 8, "Method"], [10, 12, "Method"], [17, 18, "Method"], [18, 18, "Other Scientific Term"], [23, 24, "Other Scientific Term"]], "relations": [[3, 1, "Used-for"], [3, 2, "Used-for"], [1, 0, "Hyponym-of"], [2, 0, "Hyponym-of"], [3, 1, "Used-for"], [3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["Similar", "to", "these", "approaches", ",", "we", "use", "a", "rank", "based", "re", "-", "scoring", "scheme", "to", "address", "calibration", "issues", "and", "update", "models", "using", "the", "most", "confident", "detections", "to", "adapt", "to", "new", "domains", "."], "ner": [[8, 8, "Method"], [8, 12, "Method"], [10, 12, "Method"], [16, 16, "Task"], [24, 25, "Other Scientific Term"]], "relations": [[0, 2, "Used-for"], [0, 1, "Used-for"], [1, 2, "Hyponym-of"], [1, 3, "Used-for"], [4, 3, "Used-for"], [4, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Furthermore", ",", "we", "are", "experimenting", "with", "language", "adaptation", "and", "plan", "to", "extend", "the", "tool", "to", "the", "German", "language", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Our", "future", "work", "will", "focus", "on", "a", "general", "quantization", "principle", "that", "should", "also", "work", "for", "other", "DNN", "frameworks", "."], "ner": [[8, 9, "Method"], [8, 8, "Task"], [16, 16, "Method"]], "relations": [[0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Since", "this", "model", "requires", "rather", "large", "training", "data", ",", "it", "is", "expected", "to", "be", "more", "useful", "for", "long", "queries", ",", "where", "there", "is", "enough", "information", "about", "the", "user", "intention", "."], "ner": [[27, 28, "Other Scientific Term"], [28, 28, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "present", "several", "approaches", "to", "implementing", "TMNs", "and", "experimentally", "evaluate", "their", "effectiveness", "."], "ner": [[6, 6, "Method"], [11, 11, "Metric"]], "relations": [[1, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Unsupervised", "Relation", "Extraction", "(", "URE", ")", "is", "the", "task", "of", "extracting", "relations", "of", "a", "priori", "unknown", "semantic", "types", "using", "clustering", "methods", "on", "a", "vector", "space", "model", "of", "entity", "pairs", "and", "patterns", "."], "ner": [[0, 2, "Task"], [1, 2, "Task"], [2, 2, "Task"], [4, 4, "Task"], [14, 14, "Other Scientific Term"], [19, 19, "Method"], [23, 25, "Method"], [23, 24, "Other Scientific Term"], [27, 27, "Other Scientific Term"], [27, 27, 30, 30, "Other Scientific Term"], [27, 28, "Other Scientific Term"]], "relations": [[0, 3, "Synonymy-of"], [0, 1, "Hyponym-of"], [3, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [5, 0, "Used-for"], [5, 3, "Used-for"]], "discontinuous": true}
{"tokens": ["In", "order", "to", "combine", "the", "power", "of", "multi", "-", "resolution", "spatial", "matching", "from", "the", "former", "and", "multi", "-", "layer", "vocabulary", "fusion", "from", "the", "latter", ",", "we", "explore", "such", "combined", "method", "to", "generate", "multiple", "vocabularies", "/", "kernels", "for", "each", "concept", ",", "which", "are", "further", "aggregated", "and", "shared", "by", "all", "concepts", "."], "ner": [[7, 11, "Method"], [10, 11, "Task"], [11, 11, "Task"], [16, 20, "Method"], [19, 20, "Method"], [35, 35, "Other Scientific Term"]], "relations": [[0, 1, "Used-for"], [1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["First", ",", "we", "outline", "the", "experiment", "setup", ",", "where", "we", "conduct", "two", "sets", "of", "experiments", ":", "i", ")", "monolingual", ",", "where", "lexicalized", "parsers", "are", "trained", "on", "treebanks", "for", "their", "respective", "languages", ",", "and", "ii", ")", "cross", "-", "lingual", ",", "that", "features", "SINGLE", "-", "best", "and", "MULTI", "-", "source", "delexicalized", "parsers", "."], "ner": [[21, 22, "Method"], [22, 22, "Method"], [26, 26, "Material"], [45, 49, "Method"], [49, 49, "Method"], [41, 43, 48, 49, "Method"]], "relations": [[1, 4, "Synonymy-of"], [0, 1, "Hyponym-of"], [0, 4, "Hyponym-of"], [0, 2, "Used-for"], [5, 4, "Hyponym-of"], [5, 1, "Hyponym-of"], [3, 4, "Hyponym-of"], [3, 1, "Hyponym-of"]], "discontinuous": true}
{"tokens": ["We", "followed", "the", "technique", "of", "[", "40", "]", "to", "modify", "an", "ordinary", "CNN", "to", "a", "disentangled", "CNN", ",", "which", "changed", "the", "top", "conv", "-", "layer", "of", "the", "CNN", "to", "a", "disentangled", "conv", "-", "layer", "and", "further", "added", "a", "disentangled", "conv", "-", "layer", "on", "the", "top", "conv", "-", "layer", "."], "ner": [[12, 12, "Method"], [15, 16, "Method"], [16, 16, "Method"], [22, 24, "Other Scientific Term"], [27, 27, "Method"], [30, 33, "Other Scientific Term"], [31, 33, "Other Scientific Term"], [38, 41, "Other Scientific Term"], [39, 41, "Other Scientific Term"], [45, 47, "Other Scientific Term"]], "relations": [[0, 2, "Synonymy-of"], [0, 4, "Synonymy-of"], [2, 4, "Synonymy-of"], [5, 7, "Synonymy-of"], [1, 2, "Hyponym-of"], [1, 0, "Hyponym-of"], [1, 4, "Hyponym-of"], [3, 0, "Part-for"], [3, 2, "Part-for"], [3, 4, "Part-for"], [6, 0, "Part-for"], [6, 2, "Part-for"], [6, 4, "Part-for"], [8, 0, "Part-for"], [8, 2, "Part-for"], [8, 4, "Part-for"], [9, 0, "Part-for"], [9, 2, "Part-for"], [9, 4, "Part-for"], [5, 1, "Part-for"], [7, 1, "Part-for"], [3, 6, "Synonymy-of"], [3, 8, "Synonymy-of"], [3, 9, "Synonymy-of"], [6, 8, "Synonymy-of"], [6, 9, "Synonymy-of"], [8, 9, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["This", "allows", "us", "to", "pick", "a", "common", "reward", "metric", "determined", "by", "proposed", "CNN", "candidate", "accuracies", "."], "ner": [[12, 12, "Method"], [14, 14, "Metric"]], "relations": [[1, 0, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["The", "difficulty", "arises", "due", "to", "the", "restrictions", "enforced", "in", "the", "translation", "models", "used", "by", "the", "existing", "semantic", "parsers", "."], "ner": [[10, 11, "Method"], [16, 17, "Method"], [17, 17, "Method"]], "relations": [[1, 2, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["Furthermore", ",", "although", "symbolic", "language", "processing", "in", "this", "domain", "is", "easy", "due", "to", "limited", "use", "of", "vocabulary", ",", "grounded", "language", "understanding", "is", "particularly", "challenging", "."], "ner": [[3, 5, "Task"], [18, 20, "Task"], [19, 20, "Task"], [20, 20, "Task"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "propose", "an", "unsupervised", "label", "propagation", "algorithm", "to", "address", "the", "problem", "."], "ner": [[3, 5, "Method"], [4, 5, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "paper", "proposes", "a", "method", "to", "create", "a", "robust", "acoustic", "model", "by", "directly", "fusing", "multiple", "neural", "networks", "that", "have", "dissimilar", "characteristics", "without", "any", "additional", "layers", "/", "nodes", "involving", "retraining", "procedures", "."], "ner": [[9, 10, "Method"], [15, 16, "Method"], [28, 28, "Method"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["Consequently", ",", "we", "investigate", "here", "the", "following", "question", ":", "how", "can", "we", "use", "OSM", "data", "to", "improve", "sensorbased", "semantic", "labeling", "of", "remote", "sensing", "data", "?"], "ner": [[13, 13, "Material"], [17, 19, "Task"], [18, 19, "Task"], [19, 19, "Task"], [21, 23, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [2, 3, "Hyponym-of"], [0, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "recently", "proposed", "curve", "text", "detection", "methods", "turn", "to", "predict", "horizontal", "rectangles", "in", "the", "first", "stage", ",", "which", "is", "inevitably", "affected", "non", "-", "targeted", "texts", "in", "the", "sampled", "regions", "."], "ner": [[3, 6, "Method"], [3, 5, "Task"], [4, 5, "Task"], [4, 6, "Method"], [5, 5, "Task"], [5, 6, "Method"]], "relations": [[0, 3, "Hyponym-of"], [3, 5, "Hyponym-of"], [1, 2, "Hyponym-of"], [2, 4, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"], [5, 4, "Used-for"]], "discontinuous": false}
{"tokens": ["As", "such", ",", "we", "performed", "transfer", "learning", "by", "fine", "-", "tuning", "the", "pre", "-", "trained", "CNN", "."], "ner": [[5, 6, "Method"], [8, 10, "Method"], [15, 15, "Method"]], "relations": [[1, 0, "Used-for"], [1, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "allows", "our", "network", "to", "generate", "reports", "of", "closeby", "objects", "on", "-", "demand", ",", "which", "can", "be", "crucial", "for", "real", "-", "time", "navigation", "at", "speed", "."], "ner": [[19, 22, "Task"], [22, 22, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["For", "each", "node", ",", "to", "learn", "its", "distinct", "property", "on", "different", "layers", "with", "small", "memory", "occupation", ",", "we", "also", "propose", "a", "low", "-", "dimensional", "additional", "vector", "for", "each", "type", "of", "relation", "."], "ner": [[2, 2, "Other Scientific Term"], [14, 15, "Metric"], [21, 25, "Other Scientific Term"], [24, 25, "Other Scientific Term"]], "relations": [[2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["A", "cost", "function", ",", "based", "on", "phonetic", "context", "and", "smoothness", "of", "concatenation", ",", "is", "then", "minimised", "to", "find", "the", "set", "of", "units", "which", "form", "the", "animation", "."], "ner": [[1, 2, "Other Scientific Term"], [6, 7, "Other Scientific Term"]], "relations": [[1, 0, "Used-for"]], "discontinuous": false}
{"tokens": ["The", "proposed", "method", "takes", "advantage", "of", "dual", "Jacobian", "scheme", "converging", "to", "more", "accurate", "results", "."], "ner": [[6, 8, "Method"], [7, 8, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Explanations", "of", "the", "decisions", "made", "by", "a", "deep", "neural", "network", "are", "important", "for", "human", "end", "-", "users", "to", "be", "able", "to", "understand", "and", "diagnose", "the", "trustworthiness", "of", "the", "system", "."], "ner": [[7, 9, "Method"], [8, 9, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "suggest", "an", "alternative", "simple", "method", "for", "exploring", "and", "optimizing", "the", "relationship", "between", "precision", "and", "recall", "for", "NER", "systems", "."], "ner": [[17, 17, "Metric"], [19, 19, "Metric"], [21, 22, "Method"], [21, 21, "Task"]], "relations": [[2, 3, "Used-for"], [0, 2, "Evaluate-for"], [0, 3, "Evaluate-for"], [1, 2, "Evaluate-for"], [1, 3, "Evaluate-for"]], "discontinuous": false}
{"tokens": ["Meanwhile", ",", "document", "clustering", "and", "document", "classification", "results", "show", "that", "our", "models", "improve", "the", "document", "-", "topic", "assignments", "compared", "to", "the", "baseline", "models", ",", "especially", "on", "datasets", "with", "few", "or", "short", "documents", "."], "ner": [[2, 3, "Task"], [3, 3, "Task"], [5, 6, "Task"], [6, 6, "Task"], [14, 17, "Other Scientific Term"], [21, 21, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", ",", "we", "introduce", "Invariant", "Information", "Clustering", "(", "IIC", ")", ",", "a", "method", "that", "addresses", "this", "issue", "in", "a", "more", "principled", "manner", "."], "ner": [[6, 8, "Method"], [8, 8, "Method"], [10, 10, "Method"]], "relations": [[0, 1, "Hyponym-of"], [2, 1, "Hyponym-of"], [0, 2, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["A", "number", "of", "approaches", "are", "available", "in", "the", "literature", "to", "introduce", "prior", "information", "to", "graphical", "lasso", "."], "ner": [[11, 12, "Other Scientific Term"], [11, 11, "Other Scientific Term"], [14, 15, "Method"], [15, 15, "Method"]], "relations": [[2, 3, "Hyponym-of"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "focus", "on", "entity", "extraction", ",", "as", "it", "is", "a", "classical", "IE", "task", ",", "and", "most", "industrial", "IE", "systems", "offer", "this", "feature", "."], "ner": [[3, 4, "Task"], [3, 3, "Other Scientific Term"], [4, 4, "Task"], [11, 11, "Task"], [17, 18, "Method"], [17, 17, "Task"]], "relations": [[0, 2, "Hyponym-of"], [0, 3, "Hyponym-of"], [0, 5, "Hyponym-of"], [4, 3, "Used-for"], [4, 5, "Used-for"], [3, 5, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "this", "work", "we", "analyze", "the", "representation", "of", "states", "learned", "by", "DRL", "agents", "."], "ner": [[11, 11, "Method"], [11, 12, "Other Scientific Term"], [12, 12, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "further", "conduct", "two", "experiments", "to", "study", "the", "effects", "of", "different", "kernels", "and", "size", "of", "kernels", "in", "Sec", "."], "ner": [[11, 11, "Other Scientific Term"], [15, 15, "Other Scientific Term"], [17, 17, "Other Scientific Term"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["Although", "our", "research", "does", "not", "involve", "extracting", "facts", ",", "event", "extraction", "systems", "can", "also", "be", "used", "to", "identify", "stories", "about", "a", "specific", "type", "of", "event", "."], "ner": [[9, 11, "Method"], [9, 10, "Task"], [10, 10, "Task"], [10, 11, "Method"]], "relations": [[0, 3, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 1, "Used-for"], [3, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["There", "has", "been", "significant", "work", "on", "evaluation", "methods", "for", "task", "-", "oriented", "dialogue", "systems", ",", "which", "attempt", "to", "solve", "a", "user", "'s", "task", "such", "as", "finding", "a", "restaurant", "."], "ner": [[6, 7, "Method"], [6, 6, "Task"], [9, 13, "Task"], [12, 13, "Task"]], "relations": [[2, 3, "Hyponym-of"], [0, 1, "Used-for"], [0, 2, "Used-for"]], "discontinuous": false}
{"tokens": ["A", "common", "characteristic", "of", "all", "these", "feature", "extraction", "and", "selection", "methods", "is", "that", "they", "do", "not", "directly", "optimize", "a", "discrimination", "function", "."], "ner": [[6, 7, "Task"], [7, 7, "Task"], [9, 9, "Task"], [19, 20, "Other Scientific Term"], [6, 6, 9, 9, "Task"], [6, 7, 10, 10, "Method"], [6, 6, 9, 10, "Method"]], "relations": [[0, 1, "Hyponym-of"], [4, 2, "Hyponym-of"], [5, 0, "Used-for"], [6, 4, "Used-for"]], "discontinuous": true}
{"tokens": ["Manually", "labeled", "data", "is", "used", "to", "train", "a", "recurrent", "neural", "network", "that", "can", "model", "the", "dynamic", "temporal", "behavior", "of", "the", "input", "signal", ",", "and", "outputs", "the", "events", "'", "onset", "and", "duration", "."], "ner": [[8, 10, "Method"], [9, 10, "Method"], [15, 17, "Other Scientific Term"], [16, 17, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [2, 3, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Concretely", ",", "our", "model", "consists", "of", "an", "autoencoder", "and", "an", "autoregressive", "prior", "."], "ner": [[7, 7, "Method"], [10, 11, "Method"], [11, 11, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "used", "a", "tri", "-", "gram", "language", "model", "with", "65,000", "words", "."], "ner": [[3, 5, "Method"], [3, 7, "Method"], [6, 7, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Subsequently", ",", "we", "perform", "model", "evaluations", "based", "on", "the", "memory", "recall", "data", "reported", "by", "Berntsen", "and", "Rubin", "(", "2002", ")", "."], "ner": [[4, 5, "Task"], [5, 5, "Task"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["This", "shared", "task", "provided", "a", "general", "language", "domain", "vocabulary", "and", "two", "specialised", "domain", "vocabularies", "in", "English", ":", "medical", "and", "music", "industry", "."], "ner": [[5, 8, "Other Scientific Term"], [6, 8, "Other Scientific Term"], [7, 8, "Other Scientific Term"], [11, 13, "Other Scientific Term"], [12, 13, "Other Scientific Term"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["The", "Choice", "of", "Plausible", "Alternative", "(", "COPA", ")", "task", "(", "Roemmele", "et", "al", ".", ",", "2011", ")", "was", "a", "reaction", "to", "RTE", ",", "similarly", "motivated", "to", "probe", "a", "system", "'s", "ability", "to", "understand", "inferences", "that", "are", "not", "strictly", "entailed", "."], "ner": [[1, 4, "Task"], [6, 6, "Task"], [21, 21, "Task"]], "relations": [[0, 1, "Synonymy-of"]], "discontinuous": false}
{"tokens": ["In", "entity", "typing", ",", "however", ",", "label", "noise", "comes", "from", "the", "assignment", "of", "types", "to", "entity", "mentions", "without", "considering", "their", "contexts", "."], "ner": [[1, 2, "Task"], [1, 1, "Other Scientific Term"], [6, 7, "Problem"], [15, 16, "Other Scientific Term"], [15, 15, "Other Scientific Term"], [16, 16, "Other Scientific Term"]], "relations": [[1, 4, "Synonymy-of"], [3, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["On", "the", "datasets", "of", "eight", "additional", "languages", ",", "our", "approach", "is", "able", "to", "achieve", "better", "performance", "than", "the", "baseline", "methods", "without", "any", "parameter", "tuning", "."], "ner": [[18, 18, "Other Scientific Term"], [22, 23, "Method"], [23, 23, "Method"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["Finally", ",", "there", "has", "been", "some", "study", "on", "the", "use", "of", "multiple", "word", "embeddings", "in", "the", "context", "of", "deep", "learning", "models", "."], "ner": [[11, 13, "Method"], [12, 13, "Method"], [13, 13, "Method"], [18, 19, "Method"]], "relations": [[0, 1, "Hyponym-of"], [1, 2, "Hyponym-of"], [0, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["To", "the", "best", "of", "our", "knowledge", ",", "existing", "work", "on", "learning", "multilingual", "representations", "for", "a", "large", "number", "of", "languages", "is", "limited", "to", "word", "embeddings", "(", "Ammar", "et", "al", ".", ",", "2016", ";", "Dufter", "et", "al", ".", ",", "2018", ")", "specific", "applications", "like", "typology", "prediction", "(", "Malaviya", "et", "al", ".", ",", "2017", ")", "or", "machine", "translation", "(", "Neubig", "and", "Hu", ",", "2018)-ours", "being", "the", "first", "paper", "exploring", "general", "purpose", "massively", "multilingual", "sentence", "representations", "."], "ner": [[11, 12, "Method"], [22, 23, "Method"], [23, 23, "Method"], [42, 43, "Task"], [43, 43, "Task"], [53, 54, "Task"], [69, 71, "Task"], [70, 71, "Task"]], "relations": [[1, 2, "Hyponym-of"], [3, 4, "Hyponym-of"], [6, 7, "Hyponym-of"], [1, 3, "Used-for"], [1, 5, "Used-for"], [1, 0, "Used-for"], [0, 6, "Used-for"]], "discontinuous": false}
{"tokens": ["This", "holds", "in", "particular", "for", "the", "discriminative", "deterministic", "transition", "-", "based", "systems", "where", "the", "representable", "discontinuity", "is", "not", "restricted", "by", "grammar", "constants", ",", "non", "-", "local", "features", "may", "be", "considered", ",", "and", "the", "parsing", "is", "much", "faster", "."], "ner": [[6, 11, "Method"], [20, 21, "Other Scientific Term"], [23, 26, "Other Scientific Term"], [33, 33, "Task"]], "relations": [[0, 3, "Used-for"], [2, 3, "Used-for"]], "discontinuous": false}
{"tokens": ["For", "each", "of", "these", "particular", "cases", ",", "translation", "quality", "improved", "by", "augmenting", "the", "SMT", "translation", "lexicon", "with", "the", "learned", "bilingual", "MWEs", "either", "directly", "or", "through", "improved", "word", "alignments", "."], "ner": [[13, 15, "Other Scientific Term"], [13, 13, "Method"], [14, 15, "Other Scientific Term"], [19, 20, "Other Scientific Term"], [20, 20, "Other Scientific Term"], [26, 27, "Other Scientific Term"]], "relations": [[3, 4, "Hyponym-of"], [0, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["In", "this", "paper", "we", "mainly", "work", "on", "standard", "multi", "-", "instance", "learning", "(", "Dietterich", "et", "al", ".", ",", "1997", ")", "and", "will", "show", "that", "our", "methods", "are", "also", "applicable", "to", "multi", "-", "instance", "regression", "."], "ner": [[8, 11, "Task"], [30, 33, "Task"], [33, 33, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["We", "also", "present", "experiments", "on", "additional", "languages", ",", "analyses", "based", "on", "precision", "and", "recall", ",", "an", "upperbound", "oracle", "analysis", ",", "and", "MT", "evaluations", "."], "ner": [[11, 11, "Metric"], [13, 13, "Metric"], [16, 18, "Method"], [21, 21, "Task"], [21, 22, "Task"], [22, 22, "Task"]], "relations": [[4, 5, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["During", "the", "past", "three", "decades", ",", "there", "are", "many", "successful", "attempts", "for", "reconstructing", "the", "signal", "from", "its", "magnitude", "spectrum", ",", "which", "is", "referred", "to", "as", "Phase", "Retrieval", "problem", "."], "ner": [[17, 18, "Other Scientific Term"], [25, 26, "Task"], [26, 26, "Task"]], "relations": [[1, 2, "Hyponym-of"]], "discontinuous": false}
{"tokens": ["They", "take", "a", "supervised", "approach", "using", "decision", "trees", "."], "ner": [[3, 4, "Method"], [6, 7, "Method"], [7, 7, "Other Scientific Term"]], "relations": [[1, 2, "Hyponym-of"], [1, 0, "Used-for"], [2, 1, "Used-for"]], "discontinuous": false}
{"tokens": ["We", "proceed", "by", "proving", "a", "result", "about", "the", "potential", "benefit", "of", "using", "the", "optimal", "active", "search", "policy", "with", "increasingly", "long", "horizons", "."], "ner": [[13, 15, "Method"], [14, 15, "Method"]], "relations": [[0, 1, "Hyponym-of"]], "discontinuous": false}