forked from ericwhyne/darpa_open_catalog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BOLT-pubs.json
2407 lines (2407 loc) · 73.5 KB
/
BOLT-pubs.json
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
[
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Trait-Based Hypothesis Selection For Machine Translation",
"Authors":[
"Jacob Devlin and Spyros Matsoukas"
],
"Link":"http://aclweb.org/anthology//N/N12/N12-1059.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN",
"Microsoft Research",
"JHU"
],
"Title":"Machine Translation of Arabic Dialects",
"Authors":[
"Rabih Zbib",
"Erika Malchiodi",
"Jacob Devlin",
"Michael Kayser",
"David Stallard",
"Spyros Matsoukas",
"Richard Schwartz",
"John Makhoul",
"Omar F. Zaidan",
"and Chris Callison-Burch"
],
"Link":"http://aclweb.org/anthology//N/N12/N12-1006.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Systematic Comparison of Professional and Crowdsourced Reference Translations for Machine Translation",
"Authors":[
"Rabih Zbib",
"Gretchen Markiewicz",
"Spyros Matsoukas",
"Richard Schwartz and John Makhoul"
],
"Link":"http://aclweb.org/anthology/N/N13/N13-1069.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Factored Soft Source Syntactic Constraints for Hierarchical Machine Translation",
"Authors":[
"Zhongqiang Huang",
"Jacob Devlin and Rabih Zbib"
],
"Link":"http://www.aclweb.org/anthology/D/D13/D13-1053.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Semi-Supervised Word Sense Disambiguation for Mixed-Initiative Conversational Spoken Language Translation",
"Authors":[
"S. Ananthakrishnan",
"S. Hewavitharana",
"R. Kumar",
"E. Kan",
"R. Prasad",
"and P. Natarajan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Variable-Span Out-of-Vocabulary Named Entity Detection",
"Authors":[
"W. Chen",
"S. Ananthakrishnan",
"R. Prasad",
"and P. Natarajan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Interactive Error Resolution Strategies for Speech-to-Speech Translation Systems",
"Authors":[
"R. Kumar",
"M. Roy",
"S. Ananthakrishnan",
"S. Hewavitharana",
"and F. Choi"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Incremental Topic-Based Translation Model Adaptation for Conversational Spoken Language Translation",
"Authors":[
"S. Hewavitharana",
"D. Mehay",
"S. Ananthakrishnan",
"and P. Natarajan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"ASR Error Detection in a Conversational Spoken Language Translation System",
"Authors":[
"W. Chen",
"S. Ananthakrishnan",
"R. Kumar",
"R. Prasad",
"and P. Natarajan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Batch-mode Semi-supervised Active Learning for Statistical Machine Translation",
"Authors":[
"S. Ananthakrishnan",
"R. Prasad",
"D. Stallard",
"and P. Natarajan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Active Error Detection and Resolution for Speech-to-Speech Translation",
"Authors":[
"R. Prasad",
"R. Kumar",
"S. Ananthakrishnan",
"W. Chen",
"S. Hewavitharana",
"M. Roy",
"F. Choi",
"A. Challenner",
"E. Kan",
"A. Neelakantan",
"and P. Natarajan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Detecting OOV Named Entities in Conversational Speech",
"Authors":[
"R. Kumar",
"R. Prasad",
"S. Ananthakrishnan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Automatic Pronunciation Prediction for Text-to-Speech Synthesis of Dialectal Arabic in a Speech-to-Speech Translation System",
"Authors":[
"S. Ananthakrishnan",
"A. N. Vembu",
"S. Tsakalidis",
"R. Prasad",
"and P. Natarajan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"Speech paralinguistic event detection using probabilistic time-series smoothing and masking",
"Authors":[
"R. Gupta",
"K. Audhkhasi",
"S. Lee and S. Narayanan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN"
],
"Title":"A study on the effect of prosodic emphasis on overall speech translation quality",
"Authors":[
"A. Tsiartas",
"P. Georgiou and S. Narayanan"
],
"Link":"Not Yet Published",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"BBN",
"USC",
"University of Cambridge",
"Columbia University",
"University of Oxford",
"University of Edinburgh",
"University of Southern California"
],
"Title":"Semantics-Based Machine Translation with Hyperedge Replacement Grammars",
"Authors":[
"B. Jones",
"J. Andreas",
"D. Bauer",
"K-M. Hermann",
"and K. Knight"
],
"Link":"http://www.isi.edu/~chiang/papers/hrg-parsing.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University",
"Nuance Communications"
],
"Title":"Dependency Parsing of Modern Standard Arabic with Lexical and Inflectional Features",
"Authors":[
"Yuval Marton",
"Nizar Habash and Owen Rambow"
],
"Link":"http://www.aclweb.org/anthology/J/J13/J13-1008.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Automatic Extraction of Morphological Lexicons from Morphologically Annotated Corpora",
"Authors":[
"Ramy Eskander",
"Nizar Habash and Owen Rambow"
],
"Link":"http://www.aclweb.org/anthology/D/D13/D13-1105.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Aix-Marseille University",
"Information Systems and Advanced Computing Laboratory",
"Columbia University"
],
"Title":"The Effects of Factorizing Root and Pattern Mapping in Translating between Tunisian Arabic and Standard Arabic",
"Authors":[
"Ahmed Hamdi",
"Rahma Boujelbane",
"Nizar Habash and Alexis Nasr"
],
"Link":"http://www.mtsummit2013.info/files/proceedings/main/mt-summit-2013-hamdi-et-al.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Morphological Analysis and Disambiguation for Dialectal Arabic",
"Authors":[
"Nizar Habash",
"Ryan Roth",
"Owen Rambow",
"Ramy Eskander and Nadi Tomeh"
],
"Link":"http://www.newdesign.aclweb.org/anthology-new/N/N13/N13-1044.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Automatic Morphological Enrichment of a Morphologically Underspecified Treebank",
"Authors":[
"Sarah Alkuhlani",
"Nizar Habash and Ryan Roth"
],
"Link":"http://www.newdesign.aclweb.org/anthology-new/N/N13/N13-1049.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Dialectal Arabic to English Machine Translation: Pivoting through Modern Standard Arabic",
"Authors":[
"Wael Salloum and Nizar Habash"
],
"Link":"https://www.aclweb.org/anthology/N/N13/N13-1036.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Processing Spontaneous Orthography",
"Authors":[
"Ramy Eskander",
"Nizar Habash",
"Owen Rambow and Nadi Tomeh"
],
"Link":"http://www.newdesign.aclweb.org/anthology-new/N/N13/N13-1066.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Automatic Correction and Extension of Morphological Annotations",
"Authors":[
"Ramy Eskander and Nizar Habash"
],
"Link":"https://www.aclweb.org/anthology/W/W13/W13-23.pdf#page=17",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Elissa: A Dialectal to Standard Arabic Machine Translation System",
"Authors":[
"Wael Salloum and Nizar Habash"
],
"Link":"http://www.aclweb.org/anthology-new/C/C12/C12-3048.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Lost and Found in Translation: The Impact of Machine Translated Results on Translingual Information Retrieval",
"Authors":[
"Kristen Parton",
"Nizar Habash",
"and Kathleen McKeown"
],
"Link":"http://www.mt-archive.info/AMTA-2012-Parton.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Can Automatic Post-Editing Make MT More Meaningful?",
"Authors":[
"Kristen Parton",
"Nizar Habash",
"Kathleen McKeown",
"Gonzalo Iglesias",
"Adri de Gispert"
],
"Link":"http://www.mt-archive.info/EAMT-2012-Parton.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Identifying Broken Plurals, Irregular Gender, and Rationality in Arabic Text",
"Authors":[
"Sarah Alkuhlani and Nizar Habash"
],
"Link":"http://www.newdesign.aclweb.org/anthology/E/E12/E12-1069.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"ASMA: A system for Automatic Segmentation and Morpho-syntactic Disambiguation of Modern Standard Arabic",
"Authors":[
"AbdelMageed",
"Muhammad",
"Mona Diab",
"Sandra Kubler"
],
"Link":"http://www.seas.gwu.edu/~mtdiab/files/publications/refereed/3.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University",
"The George Washington University"
],
"Title":"Sentence-Level Dialect Identification in Arabic.",
"Authors":[
"Elfardy",
"Heba",
"and Mona Diab"
],
"Link":"http://www.aclweb.org/anthology/P/P13/P13-2081.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Code-Switch Point Detection in Arabic",
"Authors":[
"Elfardy",
"Heba",
"Mohamed Al-Badrashiny",
"Mona Diab"
],
"Link":"http://link.springer.com/chapter/10.1007/978-3-642-38824-8_51",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Multiword Expressions in the context of Statistical Machine Translation.",
"Authors":[
"Ghoneim",
"Mahmoud and Mona Diab."
],
"Link":"https://www.aclweb.org/anthology/I/I13/I13-1168.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"ANEAR: Automatic Named Entity Aliasing Resolution.",
"Authors":[
"Zirikly",
"Ayah and Mona Diab."
],
"Link":"http://link.springer.com/chapter/10.1007/978-3-642-38824-8_18",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Building a Lexical Semantic Resource for Arabic Morphological Patterns.",
"Authors":[
"Hawwari",
"Abdelati",
"Wajdi Zaghouani",
"Tim O'Gorman",
"Mona Diab",
"and Ahmed Badran."
],
"Link":"http://ieeexplore.ieee.org/xpl/login.jsp?tp=&arnumber=6487254&url=http%3A%2F%2Fieeexplore.ieee.org%2Fxpls%2Fabs_all.jsp%3Farnumber%3D6487254",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Token Level Identification of Linguistic Code Switching.",
"Authors":[
"Elfardy",
"Heba",
"and Mona Diab"
],
"Link":"http://www1.ccls.columbia.edu/~heba/files/LCS.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Simplified guidelines for the creation of Large Scale Dialectal Arabic Annotations.",
"Authors":[
"Elfardy",
"Heba and Mona Diab"
],
"Link":"http://www.lrec-conf.org/proceedings/lrec2012/pdf/815_Paper.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"Building an Arabic Multiword Expressions Repository.",
"Authors":[
"Hawwari",
"Abdelati",
"Kfir Bar",
"Mona Diab"
],
"Link":"http://aclweb.org/anthology/W/W12/W12-3403.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Columbia University"
],
"Title":"A Pilot PropBank Annotation for Quranic Arabic.",
"Authors":[
"Zaghouani",
"Wajdi",
"Abdelati Hawwari and Mona Diab."
],
"Link":"http://aclweb.org/anthology//W/W12/W12-2511.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) University of California, Berkeley"
],
"Title":"Easy Victories and Uphill Battles in Coreference Resolution",
"Authors":[
"Greg Durrett and Dan Klein"
],
"Link":"http://www.eecs.berkeley.edu/~gdurrett/papers/durrett-klein-emnlp2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) University of California, Berkeley"
],
"Title":"Error-Driven Analysis of Challenges in Coreference Resolution",
"Authors":[
"Jonathan Kummerfeld and Dan Klein"
],
"Link":"http://nlp.cs.berkeley.edu/pubs/Kummerfeld-Klein_2013_Analysis_paper.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) University of California, Berkeley"
],
"Title":"Decentralized Entity-Level Modeling for Coreference Resolution",
"Authors":[
"Greg Durrett and Dan Klein"
],
"Link":"http://aclweb.org/anthology//P/P13/P13-1012.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) University of California, Berkeley"
],
"Title":"Training Factored PCFGs with Expectation Propagation",
"Authors":[
"David Hall and Dan Klein"
],
"Link":"http://www.cs.berkeley.edu/~dlwh/papers/hall12epic.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) University of California, Berkeley"
],
"Title":"Fast Inference in Phrase Extraction Models with Belief Propagation",
"Authors":[
"David Burkett and Dan Klein"
],
"Link":"http://nlp.cs.berkeley.edu/pubs/Burkett-Klein_2012_BPAlignment_paper.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) University of California, Berkeley"
],
"Title":"Large-Scale Syntactic Language Modeling with Treelets",
"Authors":[
"Adam Pauls and Dan Klein"
],
"Link":"http://nlp.cs.berkeley.edu/pubs/Pauls-Klein_2012_LM_paper.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) University of California, Berkeley"
],
"Title":"Coreference Semantics from Web Features",
"Authors":[
"Mohit Bansal and Dan Klein"
],
"Link":"http://ttic.uchicago.edu/~mbansal/papers/acl12_corefWeb.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) University of California, Berkeley"
],
"Title":"Transforming Trees to Improve Syntactic Convergence",
"Authors":[
"David Burkett and Dan Klein"
],
"Link":"http://www.eecs.berkeley.edu/~dburkett/papers/burkett12-tree_transform.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) National Research Council"
],
"Title":"Simulating Discriminative Training for Linear Mixture Adaptation in Statistical Machine Translation",
"Authors":[
"George Foster",
"Boxing Chen and Roland Kuhn"
],
"Link":"http://www.mtsummit2013.info/files/proceedings/main/mt-summit-2013-foster-et-al.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) National Research Council"
],
"Title":"Vector Space Model for Adaptation in Statistical Machine Translation",
"Authors":[
"Boxing Chen",
"Roland Kuhn and George Foster"
],
"Link":"http://aclweb.org/anthology//P/P13/P13-1126.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) National Research Council",
"University of Maryland",
"University of Chicago",
"JHU",
"IBM"
],
"Title":"SenseSpotting: Never let your parallel data tie you to an old domain",
"Authors":[
"Marine Carpuat",
"Hal Daume III",
"Katie Henry",
"Ann Irvine",
"Jagadeesh Jagarlamudi",
"and Rachel Rudinger"
],
"Link":"http://www.aclweb.org/anthology/P/P13/P13-1141.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) National Research Council"
],
"Title":"Improved Reordering for Phrase-Based Translation using Sparse Features",
"Authors":[
"Colin Cherry"
],
"Link":"http://www.aclweb.org/anthology/N/N13/N13-1003.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) National Research Council"
],
"Title":"Adaptation of Reordering Models for Statistical Machine Translation",
"Authors":[
"Boxing Chen",
"George Foster and Roland Kuhn"
],
"Link":"http://aclweb.org/anthology//N/N13/N13-1114.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) National Research Council"
],
"Title":"A Semantic Evaluation of Machine Translation Lexical Choice",
"Authors":[
"Marine Carpuat"
],
"Link":"http://www.aclweb.org/anthology/W/W13/W13-0801.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) National Research Council"
],
"Title":"NRC: A Machine Translation Approach to Cross-Lingual Word Sense Disambiguation",
"Authors":[
"Marine Carpuat"
],
"Link":"http://www.aclweb.org/anthology/S/S13/S13-2034.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"LTG vs. ITG Coverage of Cross-Lingual Verb Frame Alternations",
"Authors":[
"Karteek ADDANKI",
"Chi-kiu LO",
"Markus SAERS",
"and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/AddankiLoSaersWu_Eamt2012.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"Fully Automatic Semantic MT Evaluation",
"Authors":[
"Chi-kiu LO",
"Anand Karthik TUMULURU and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/LoTumuluruWu_Wmt2012.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"Towards a Predicate-Argument Evaluation for MT",
"Authors":[
"Ondej BOJAR and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/BojarWu_Ssst2012.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"Unsupervised vs. supervised weight estimation for semantic MT evaluation metrics",
"Authors":[
"Chi-kiu LO and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/LoWu_Ssst2012.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"Accuracy and robustness in measuring the lexical similarity of semantic role fillers for automatic semantic MT evaluation",
"Authors":[
"Anand Karthik TUMULURU",
"Chi-kiu LO and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/TumuluruLoWu_Paclic2012.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"From Finite-State to Inversion Transductions: Toward Unsupervised Bilingual Grammar Induction",
"Authors":[
"Markus SAERS",
"Karteek ADDANKI",
"and Dekai WU."
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/SaersAddankiWu_Coling2012.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"Combining Top-down and Bottom-up Search for Unsupervised Induction of Transduction Grammars",
"Authors":[
"Markus SAERS",
"Karteek ADDANKI",
"and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/SaersAddankiWu_Ssst2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"Iterative Rule Segmentation under Minimum Description Length for Unsupervised Transduction Grammar Induction",
"Authors":[
"Markus SAERS",
"Karteek ADDANKI",
"and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/SaersAddankiWu_Slsp2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"MEANT at WMT 2013: A Tunable, Accurate yet Inexpensive Semantic Frame Based MT Evaluation Metric",
"Authors":[
"Chi-kiu LO and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/LoWu_Wmt2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"Unsupervised Transduction Grammar Induction via Minimum Description Length",
"Authors":[
"Markus SAERS",
"Karteek ADDANKI",
"and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/SaersAddankiWu_Hytra2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"Improving machine translation by training against an automatic semantic frame based evaluation metric",
"Authors":[
"Chi-kiu LO and Karteek ADDANKI and Markus SAERS and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/LoAddankiSaersWu_Acl2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"FREESTYLE: A Challenge-Response System for Hip Hop Lyrics via Unsupervised Induction of Stochastic Transduction Grammars",
"Authors":[
"Dekai WU",
"Karteek ADDANKI",
"and Markus SAERS"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/WuAddankiSaers_Interspeech2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],
"Title":"Can informal genres be better translated by tuning on automatic semantic metrics?",
"Authors":[
"Chi-kiu LO and Dekai WU"
],
"Link":"http://www.cs.ust.hk/~dekai/library/WU_Dekai/LoWu_Mtsummit2013.pdf",
"New Date":"",
"Update Date":""
},
{
"DARPA Program":"BOLT",
"Program Teams":[
"(Team BBN) Hong Kong University of Science and Technology"
],