This repository was archived by the owner on Nov 17, 2024. It is now read-only.
forked from machinetranslate/machinetranslate.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.json
More file actions
10875 lines (10875 loc) · 443 KB
/
Copy pathevents.json
File metadata and controls
10875 lines (10875 loc) · 443 KB
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
[
{
"name": "AAMT Seminar",
"id": "aamt-seminar",
"description": "First Seminar of the Asian-Pacific Association for Machine Translation",
"start_date": "2022-09-28",
"end_date": "2022-09-28",
"more_paragraphs": [
"The winners of the 17th AAMT Nagao Award and the 9th AAMT Nagao Award Student Encouragement Award will present their research in the seminar."
],
"location": {
"online": true
},
"organizer": {
"type": "Organization",
"name": "Asian-Pacific Association for Machine Translation",
"url": "https://aamt.info/"
},
"links": [
"https://www.aamt.info/event/seminar/20220928",
"https://us06web.zoom.us/webinar/register/WN_6dJE5poMRMW6PtDL7Sr1nQ"
],
"one_day_schedule": [
{
"start_time": "15:00",
"title": "<bold>開会挨拶</bold>"
},
{
"start_time": "15:05",
"title": "<bold>第17回 長尾賞 受賞者講演</bold> <br><bold>ニュースを対象とした日英機械翻訳システムの研究開発</bold> <br>NHK 後藤功雄 氏"
},
{
"start_time": "15:30",
"title": "<bold>第9回 長尾賞 学生奨励賞 受賞者講演</bold> <br><bold>Expanding the Applicability of Machine Translation</bold> <br>森下睦 氏"
},
{
"start_time": "15:50",
"title": "<bold>第9回 長尾賞 学生奨励賞 受賞者講演</bold> <br><bold>学習時と推論時における入力データの特徴の違いを考慮したニューラル機械翻訳モデルの学習手法</bold> <br>美野秀弥 氏"
},
{
"start_time": "16:10",
"title": "<bold>Questions and answers</bold> <br>Moderator: 中澤敏明 氏"
}
]
},
{
"name": "AAMT 2019",
"id": "aamt-2019",
"description": "Conference of the Asian-Pacific Association for Machine Translation",
"start_date": "2019-11-19",
"end_date": "2019-11-19",
"location": {
"location": "Chiyoda, Japan",
"online": false
},
"organizer": {
"type": "Organization",
"name": "Asian-Pacific Association for Machine Translation",
"url": "https://aamt.info/"
},
"links": [
"https://aamt.info/aamttokyo2019/"
],
"one_day_schedule": [
{
"start_time": "9:30",
"title": "招待講演:4件 <br>◎機械翻訳サミット2019参加報告―ヨーロッパの機械翻訳の研究開発・利用状況を中心に <br>:田中 英輝氏/ 一般財団法人NHKエンジニアリングシステム <br><br>◎The 6th Workshop on Asian Translation (WAT2019) 開催報告 <br>:中澤 敏明氏/ 東京大学 <br><br>◎世界の『言葉の壁』をなくす多言語音声翻訳技術とその社会展開 <br>:内元 清貴氏/ 国立研究開発法人情報通信研究機構(NICT) <br><br>◎マルチモーダル情報と機械翻訳 <br>:中山 英樹氏/ 東京大学"
},
{
"start_time": "11:30",
"title": "🍴"
},
{
"start_time": "11:30",
"title": "出展企業団体一覧 <br>◎株式会社川村インターナショナル/ みんなの自動翻訳@KI(商用版)<br><br>◎(一財)日本特許情報機構/ 特許用機械翻訳システム <br><br>◎日本特許翻訳株式会社/ MedTranslator <br><br>◎株式会社ヒューマンサイエンス/ MTrans for Office <br><br>◎株式会社ブリックス/ AI通訳・翻訳アプリ「ネイティブheart」ほか3製品 <br><br>◎株式会社十印/ T-tact AN-ZIN <br><br>◎(一社)日本翻訳連盟 <br><br>◎(一社)人工知能学会 <br><br>◎SYSTRAN JAPAN/ SYSTRAN MarketPlace, modelStudio, Pure Neural Server <br><br>◎国立研究開発法人情報通信研究機構(NICT)"
},
{
"start_time": "11:30",
"title": "商品紹介セッション"
},
{
"start_time": "11:50",
"title": "SYSTRAN JAPAN"
},
{
"start_time": "12:05",
"title": "株)十印"
},
{
"start_time": "12:20",
"title": "(株)ヒューマンサイエンス"
},
{
"start_time": "12:35",
"title": "(一財)日本特許情報機構"
},
{
"start_time": "13:00",
"title": "事例・研究発表:8件 <br><br>◎人間の翻訳と機械翻訳をつなぐ翻訳プロセス ・モデルの構築 <br>:影浦 峡氏/ 東京大学,藤田 篤氏/ 国立研究開発法人情報通信研究機構(NICT),山田 優氏/ 関西大学 <br><br>◎機械翻訳の弱点「数量表現」の誤訳例と「翻訳文の合否ライン」の説明 <br>:吉川 潔氏/ 翻訳業 <br><br>◎複単語表現と機械翻訳 <br>:首藤 公昭氏/ 福岡大学 <br><br>◎句点挿入と倒置:日英MTにおける長文プリエディットの二つの手法 <br>:星井 智氏/ 株式会社川村インターナショナル <br><br>◎翻訳業界での機械翻訳導入の現状:インタビュー調査結果から <br>:阪本 章子氏/ 英ポーツマス大学,山田 優氏/ 関西大学 <br><br>◎独日特許翻訳における独英機械翻訳を介した英日翻訳者活用事例 <br>:上野 哲也氏/ 株式会社MK翻訳事務所 <br><br>◎機械翻訳に対するプリエディットのタスク分類に関する考察 <br>:早川 威士氏/ 株式会社アスカコーポレーション"
},
{
"start_time": "15:10",
"title": "(株)川村インターナショナル"
},
{
"start_time": "15:00",
"title": "☕️"
},
{
"start_time": "15:30",
"title": "パネルディスカッション:1件 <br>講演タイトル「機械翻訳もある総合的な翻訳サービスの模索~金融・IR分野を例に~」 <br><br>モデレーター <br>隅田 英一郎氏/ アジア太平洋機械翻訳協会(AAMT) <br><br>パネリスト <br>山藤 敦史氏/ 株式会社日本取引所グループ(JPX) <br>内山 将夫氏/ 国立研究開発法人情報通信研究機構(NICT)<br>松本 智子氏/ 日本財務翻訳株式会社 <br>三輪 哲也氏/ 宝印刷株式会社"
},
{
"start_time": "18:00",
"title": "懇親会"
}
]
},
{
"name": "AT4SSL 2021",
"id": "at4ssl-2021",
"description": "First International Workshop on Automatic Translation for Sign and Spoken Languages",
"start_date": "2021-08-20",
"end_date": "2021-08-20",
"location": {
"online": true
},
"organizer": {
"type": "Person",
"url": "https://sites.google.com/tilburguniversity.edu/at4ssl2021/#h.9px6fzbmtdu"
},
"links": [
"https://sites.google.com/tilburguniversity.edu/at4ssl2021/"
],
"one_day_schedule": [
{
"start_time": "9:00",
"title": "Opening notes"
},
{
"start_time": "9:10",
"title": "Constructing a Road Map for Sign Language Machine Translation**_ <br>**Keynote** <br>Prof Lorraine Leeson"
},
{
"start_time": "9:55",
"title": "🕑"
},
{
"start_time": "10:00",
"title": "Presentations <br>Session 1 - Long papers 1"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.1.pdf'>Data Augmentation for Sign Language Gloss Translation</a> <br>Amit Moryossef, Kayo Yin, Graham Neubig and Yoav Goldberg"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.7.pdf'>Approaching Sign Language Gloss Translation as a Low-Resource Machine Translation Task</a> <br>Xuan Zhang and Kevin Duh"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.10.pdf'>Frozen Pretrained Transformers for Neural Sign Language Translation</a> <br>Mathieu De Coster, Karel D’Oosterlinck, Marija Pizurica, Paloma Rabaey, Severine Verlinden, Mieke Van Herreweghe and Joni Dambre"
},
{
"start_time": "11:00",
"title": "☕️"
},
{
"start_time": "11:05",
"title": "Presentations <br>Session 2 - Long papers 2"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.8.pdf'>Automatic generation of a 3D sign language avatar on AR glasses given 2D videos of human signers</a> <br>Lan Thao Nguyen, Florian Schicktanz, Aeneas Stankowski and Eleftherios Avramidis"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.3.pdf'>Sign and Search: Sign Search Functionality for Sign Language Lexica</a> <br>Manolis Fragkiadakis and Peter van der Putten"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.6.pdf'>Using Computer Vision to Analyze Non-manual Marking of Questions in KRSL</a> <br>Anna Kuznetsova, Alfarabi Imashev, Medet Mukushev, Anara Sandygulova and Vadim Kimmelman"
},
{
"start_time": "12:00",
"title": "🍴"
},
{
"start_time": "13:00",
"title": "Presentations <br>Session 3 - Short papers"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.9.pdf'>Online Evaluation of Text-to-sign Translation by Deaf End Users: Some Methodological Recommendations</a> <br>Floris Roelofsen, Lyke Esselink, Shani Mende-Gillings, Maartje de Meulder, Nienke Sijm and Anika Smeijers"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.11.pdf'>Defining meaningful units. Challenges in sign segmentation and segment-meaning mapping</a> <br>Mirella De Sisto, Dimitar Shterionov, Irene Murtagh, Myriam Vermeerbergen and Lorraine Leeson "
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.5.pdf'>AVASAG: A German Sign Language Translation System for Public Services</a> <br>Fabrizio Nunnari, Judith Bauerdiek, Lucas Bernhard, Cristina España-Bonet, Corinna Jäger, Amelie Unger, Kristoffer Waldow, Sonja Wecker, Elisabeth André, Stephan Busemann, Christian Dold, Arnulph Fuhrmann, Patrick Gebhard, Yasser Hamidullah, Marcel Hauck, Yvonne Kossel, Martin Misiak, Dieter Wallach and Alexander Stricker"
},
{
"start_time": "13:45",
"title": "☕️"
},
{
"start_time": "13:50",
"title": "Presentations <br>Session 4 - Long papers 3"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.4.pdf'>The Myth of Signing Avatars</a> <br>Rosalee Wolfe, John C. McDonald, Eleni Efthimiou, Evita Fontinea, Frankie Picron, Davy Van Landuyt, Tina Sioen, Annelies Braffort, Michael Filhol, Sarah Ebling, Thomas Hanke and Verena Krausneker"
},
{
"title": "<a href='https://aclanthology.org/2021.mtsummit-at4ssl.2.pdf'>Is “good enough” good enough? Ethical and responsible development of sign language technologies</a> <br>Maartje De Meulder "
},
{
"start_time": "14:35",
"title": "Panel discussion <br>Panelists: <br> - Mr Mark Wheatley, Executive Director of EUD, Belgium <br> - Prof Christian Rathmann, Professor in Deaf Studies Interpreting at Humboldt University, Germany <br> - Prof Gorka Labaka, Assistant professor at the Engineering School of the University ofthe Basque Country (UPV/EHU), Spain <br> - Dr Sarah Ebling, Lecturer and research associate at the University of Zurich and theUniversity of Applied Sciences of Special Needs Education Zurich (HfH), Switzerland <br> - Prof Myriam Vermeerbergen, Associate Professor at KU Leuven, Belgium <br> - Thomas Hanke, Research Associate at the University of Hamburg, Germany <br> - Prof Richard Bowden, Professor of Computer Vision and Machine Learning at the University of Surrey, the UK"
},
{
"start_time": "15:50",
"title": "Closing remarks"
}
]
},
{
"name": "AT4SSL 2023",
"id": "at4ssl-2023",
"description": "Second International Workshop on Automatic Translation for Sign and Spoken Languages",
"calls_for_papers_deadline": "2023-03-31",
"start_date": "2023-06-15",
"end_date": "2023-06-15",
"more_paragraphs": [
"This workshop was co-organised by the [SignON](https://signon-project.eu/) and [EASIER](https://www.project-easier.eu/) projects. <br> The theme of this workshop was **Sign language parallel data – challenges, solutions and resolutions**."
],
"location": {
"location": "Tampere, Finland",
"online": false
},
"organizer": {
"type": "Person",
"url": "https://sites.google.com/tilburguniversity.edu/at4ssl2023/home"
},
"links": [
"https://sites.google.com/tilburguniversity.edu/at4ssl2023/home"
],
"important_dates": [
{
"name": "First call for papers",
"date": "2023-03-13"
},
{
"name": "Second call for papers",
"date": "2023-03-31"
},
{
"name": "Submission deadline",
"date": "2023-04-24"
},
{
"name": "Review process",
"date": "2023-05-05"
},
{
"name": "Acceptance notification",
"date": "2023-05-12"
},
{
"name": "Camera ready submission",
"date": "2023-06-01"
},
{
"name": "Submission of material for interpreters",
"date": "2023-06-06"
},
{
"name": "Programme",
"date": "2023-06-01"
},
{
"name": "Workshop",
"date": "2023-06-15"
}
],
"calls_for_papers": [
{
"title": "Topics",
"topics": [
"Data: resources, collection and curation, challenges, processing, data life cycle",
"Use-cases, applications",
"Ethics, privacy and policies",
"Sign language linguistics",
"Machine translation (with a focus on signed-to-signed, signed-to-spoken or spoken-to-signed language translation)",
"Natural language processing",
"Interpreting of sign and spoken languages",
"Image and video recognition (for the purpose of sign language recognition)",
"3D avatar and virtual signers synthesis",
"Usability and challenges of current methods and methodologies",
"Sign language in the media"
]
}
]
},
{
"name": "Automatic Simultaneous Translation 2020",
"id": "automatic-simultaneous-translation-2020",
"description": "First Workshop on Automatic Simultaneous Translation",
"start_date": "2020-07-10",
"end_date": "2020-07-10",
"more_paragraphs": [
"The topic was ***Challenges, Recent Advances, and Future Directions***."
],
"location": {
"location": "Washington, US",
"online": false
},
"organizer": {
"type": "Person",
"url": " https://autosimtrans.github.io/organization"
},
"links": [
"https://autosimtrans.github.io/2020/#"
],
"one_day_schedule": [
{
"start_time": "7:20",
"title": "Opening Remarks"
},
{
"start_time": "7:30",
"title": "Session 1 <br>chair: Liang Huang"
},
{
"start_time": "7:30",
"title": "Invited Talk 1 <br> <a href='https://slideslive.com/38929915/research-stories-from-google-translates-transcribe-mode'>Research stories from Google Translate's Transcribe Mode</a><br>Colin Cherry"
},
{
"start_time": "8:00",
"title": "Invited Talk 2 <br><a href='https://slideslive.com/38929912/human-interpreter-training-and-practice-insights-for-simultaneous-machine-translation-research'>Human Interpreter Training and Practice: Insights for Simultaneous Machine Translation Research</a> <br>Barry Slaughter Olsen"
},
{
"start_time": "8:30",
"title": "Invited Talk 3 <br> <a href='https://slideslive.com/38929914/discussing-simultaneous-machine-translation'>Discussing Simultaneous Machine Translation</a><br> Jordan Boyd-Graber"
},
{
"start_time": "9:00",
"title": "Q&A"
},
{
"start_time": "9:30",
"title": "🕑"
},
{
"start_time": "15:00",
"title": "Session 2: Research Paper and System Description <br>Zhongjun He"
},
{
"start_time": "15:00",
"title": "Dynamic Sentence Boundary Detection for Simultaneous Translation <br>Ruiqing Zhang, Chuanqiang Zhang"
},
{
"start_time": "15:10",
"title": "End-to-End Speech Translation with Adversarial Training <br>Xuancai Li, Chen Kehai, Tiejun Zhao, Muyun Yang "
},
{
"start_time": "15:20",
"title": "Robust Neural Machine Translation with ASR Errors** <br>Haiyang Xue, Yang Feng, Shuhao Gu, Wei Chen"
},
{
"start_time": "15:30",
"title": "Improving Autoregressive NMT with Non-Autoregressive Model <br>Long Zhou, Jiajun Zhang, Chengqing Zong"
},
{
"start_time": "15:40",
"title": "Modeling Discourse Structure for Document-level Neural Machine Translation <br>Junxuan Chen, Xiang Li, Jiarui Zhang, Chulun Zhou, Jianwei Cui, Bin Wang, Jinsong Su"
},
{
"start_time": "15:50",
"title": "BIT’s system for the AutoSimTrans 2020 <br>Minqin Li, Haodong Cheng, Yuanjie Wang, Sijia Zhang, Liting Wu, Yuhang Guo"
},
{
"start_time": "16:00",
"title": "Q&A"
},
{
"start_time": "16:10",
"title": "🕑"
},
{
"start_time": "16:20",
"title": "Session 3 <br>chair: Colin Cherry "
},
{
"start_time": "16:20",
"title": "Invited Talk 4 <br> <a href='https://slideslive.com/38929911/baidu-simultaneous-translation-research-and-applications'>Baidu Simultaneous Translation: Research and Applications</a> <br>Hua Wu"
},
{
"start_time": "16:50",
"title": "Invited Talk 5 <br> <a href='https://slideslive.com/38929916/machineaided-simultaneous-interpreting-an-experiment'>Machine-aided simultaneous interpreting: An experiment</a> <br>Kay-Fan Cheung"
},
{
"start_time": "17:20",
"title": "Invited Talk 6 <br> <a href='https://slideslive.com/38929913/research-and-practice-of-simultaneous-speech-translation-in-huawei-noahs-ark-lab'>Research and Practice of Simultaneous Speech Translation in Huawei Noah's Ark Lab</a> <br>Qun Liu"
},
{
"start_time": "17:50",
"title": "Q&A"
},
{
"start_time": "18:20",
"title": "Closing Remarks"
}
]
},
{
"name": "Automatic Simultaneous Translation 2021",
"id": "automatic-simultaneous-translation-2021",
"description": "Second Workshop on Automatic Simultaneous Translation",
"start_date": "2021-06-10",
"end_date": "2021-06-10",
"more_paragraphs": [
"The topic was ***Challenges, Recent Advances, and Future Directions***."
],
"location": {
"location": "Mexico City, Mexico",
"online": false
},
"organizer": {
"type": "Person",
"url": "https://autosimtrans.github.io/organization"
},
"links": [
"https://autosimtrans.github.io/2021/#"
],
"speakers": [
{
"type": "Simultaneous Translation Speakers",
"speakers": [
"Will Lewis, Affiliate Faculty, University of Washington, and Former Principal PM Architect, Microsoft Research",
"Lucia Specia, Professor, Imperial College London",
"Liang Huang, Associate Professor, Oregon State, and Distinguished Scientist, Baidu Research"
]
},
{
"type": "Human Interpretation Speaker",
"speakers": [
"Hong Jiang, Senior Lecturer, Deptartment. of Translation, Chinese University of Hong Kong"
]
},
{
"type": "Organisers",
"speakers": [
"Hua Wu, Baidu Inc.",
"Colin Cherry, Google",
"Liang Huang, Oregon State University and Baidu Research",
"Zhongjun He, Baidu Inc.",
"Qun Liu,Huawei Noah’s Ark Lab",
"Maha Elbayad, Université Grenoble Alpes"
]
}
],
"one_day_schedule": [
{
"start_time": "7:15",
"title": "Opening Remarks"
},
{
"start_time": "7:30",
"title": "Session 1: Invited Talks"
},
{
"start_time": "7:30",
"title": "Invited Talk 1 <br>Hong Jiang"
},
{
"start_time": "8:10",
"title": "Invited Talk 2 <br>Lucia Specia"
},
{
"start_time": "8:50",
"title": "Invited Talk 3 <br>Will Lewis"
},
{
"start_time": "9:30",
"title": "Invited Talk 4 <br>Liang Huang"
},
{
"start_time": "10:10",
"title": "🕑"
},
{
"start_time": "19:00",
"title": "Research Paper and System Description"
},
{
"start_time": "19:00",
"title": "<a href='https://autosimtrans.github.io/2021/assets/docs/slides2021/Findings_of_the_Second_Workshop_on_Automatic_Simultaneous_Translation.pdf'>Findings of the Second Workshop on Automatic Simultaneous Translation</a> <br>Ruiqing Zhang, Chuanqiang Zhang, Zhongjun He, Hua Wu, Haifeng Wang"
},
{
"start_time": "19:10",
"title": "<a href='https://autosimtrans.github.io/2021/assets/docs/slides2021/BIT%E2%80%99s_system_for_AutoSimTrans_2021.pdf'>BIT’s system for AutoSimulTrans2021</a> <br>Mengge Liu, Shuoying Chen, Minqin Li, Zhipeng Wang, Yuhang Guo"
},
{
"start_time": "19:20",
"title": "<a href='https://autosimtrans.github.io/2021/assets/docs/slides2021/XMU_Simultaneous_Translati_on_System_at_NAACL_2021.pdf'>XMU’s Simultaneous Translation System at NAACL 2021</a> <br>Shuangtao Li, Jinming Hu, Boli Wang, Xiaodong Shi, Yidong Chen"
},
{
"start_time": "19:30",
"title": "<a href='https://autosimtrans.github.io/2021/assets/docs/slides2021/naacl_presentation.pdf'>System Description on Automatic Simultaneous Translation Workshop</a> <br>Linjie Chen, Jianzong Wang, Zhangcheng Huang, Xiongbin Ding, Jing Xiao"
},
{
"start_time": "19:40",
"title": "<a href='https://autosimtrans.github.io/2021/assets/docs/slides2021/BSTC_-_A_Large-Scale_Chinese-English_Speech_Translation_Dataset.pdf'>BSTC: A Large-Scale Chinese-English Speech Translation Dataset</a> <br>Ruiqing Zhang, Xiyang Wang, Chuanqiang Zhang, Zhongjun He, Hua Wu, Zhi Li, Haifeng Wang, Ying Chen, Qinfei Li"
},
{
"start_time": "19:50",
"title": "<a href='https://autosimtrans.github.io/2021/assets/docs/slides2021/ict_ZhangShaolei_AutoSimTrans_Slides.pdf'>ICT’s System for AutoSimTrans 2021: Robust Char-Level Simultaneous Translation</a> <br>Shaolei Zhang, Yang Feng"
},
{
"start_time": "20:00",
"title": "Questions and answers"
},
{
"start_time": "20:20",
"title": "Closing Remarks"
}
]
},
{
"name": "Automatic Simultaneous Translation 2022",
"id": "automatic-simultaneous-translation-2022",
"description": "Automatic Simultaneous Translation 2022",
"start_date": "2022-07-15",
"end_date": "2022-07-15",
"more_paragraphs": [
"The topic was ***Challenges, Recent Advances, and Future Directions***."
],
"location": {
"location": "Seattle, United States of America",
"online": false
},
"organizer": {
"type": "Person",
"url": "https://autosimtrans.github.io/organization"
},
"links": [
"https://autosimtrans.github.io/"
],
"important_dates": [
{
"name": "Registration and release of data",
"date": "2022-03-07"
},
{
"name": "End of registration",
"date": "2022-04-30"
},
{
"name": "System submission begin",
"date": "2022-03-10"
},
{
"name": "System submission close",
"date": "2022-05-01"
},
{
"name": "System description due",
"date": "2022-05-17"
},
{
"name": "Notification of acceptance",
"date": "2022-06-01"
},
{
"name": "Camera-ready papers due",
"date": "2022-06-16"
},
{
"name": "Conference",
"date": "2022-07-15"
}
],
"speakers": [
{
"type": "Simultaneous Translation Speakers",
"speakers": [
"Juan Pino, Research Scientist at Facebook Research",
"Trevor Cohn, Professor at The University of Melbourne"
]
},
{
"type": "Human Interpretation Speakers",
"speakers": [
"Weiwei Wang, Associate Professor and Research Fellow at Guangdong University of Foreign Studies",
"Wallace Chen, Professor and Program Head at Middlebury Institute of International Studies"
]
},
{
"type": "Organisers",
"speakers": [
"Hua Wu, Baidu Inc., China",
"Liang Huang, Oregon State University and Baidu Research, United States",
"Zhongjun He, Baidu Inc., China",
"Qun Liu,Huawei Noah’s Ark Lab, China",
"Wolfgang Macherey, Goolge, United States",
"Julia Ive, Imperial College London, United Kingdome"
]
}
],
"one_day_schedule": [
{
"start_time": "7:20",
"title": "Opening Remarks"
},
{
"start_time": "7:30",
"title": "Session 1 Invited Talks and Research Paper"
},
{
"start_time": "7:30",
"title": "<a href='https://autosimtrans.github.io/program#invited-talk-1-by-weiwei-wang'>Invited Talk 1</a> <br>Weiwei Wang"
},
{
"start_time": "8:10",
"title": "<a href='https://autosimtrans.github.io/program#invited-talk-2-by-wallace-chen'>Invited Talk 2</a> <br>Wallace Chen"
},
{
"start_time": "8:50",
"title": "<a href='https://autosimtrans.github.io/program#invited-talk-3-by-trevor-cohn'>Invited Talk 3</a> <br>Trevor Cohn"
},
{
"start_time": "9:30",
"title": "<a href='https://autosimtrans.github.io/program#invited-talk-4-by-juan-pino'>Invited Talk 4</a> <br>Juan Pino"
},
{
"start_time": "10:10",
"title": "Research paper <br>Over-Generation Cannot Be Rewarded: Length-Adaptive Average Lagging for Simultaneous Speech Translation <br>Sara Papi, Marco Gaido, Matteo Negri, Marco Turchi"
},
{
"start_time": "10:30",
"title": "🕑"
},
{
"start_time": "18:30",
"title": "Session 2 <br>Shared Task"
},
{
"start_time": "18:30",
"title": "<a href='https://github.com/autosimtrans/autosimtrans.github.io/blob/master/assets/docs/slides2021/Findings_of_the_Second_Workshop_on_Automatic_Simultaneous_Translation.pdf'>Findings of the Third Workshop on Automatic Simultaneous Translation</a>"
},
{
"start_time": "18:45",
"title": "<a href='https://github.com/autosimtrans/autosimtrans.github.io/blob/master/assets/docs/slides2021/BIT%E2%80%99s_system_for_AutoSimTrans_2021.pdf'>BIT-Xiaomi’s System for AutoSimTrans 2022</a> <br>Mengge Liu, Xiang Li, Bao Chen, Yanzhi Tian, Tianwei Lan, Silin Li, Yuhang Guo, Jian Luan, Bin Wan"
},
{
"start_time": "19:00",
"title": "<a href='https://github.com/autosimtrans/autosimtrans.github.io/blob/master/assets/docs/slides2021/XMU_Simultaneous_Translati_on_System_at_NAACL_2021.pdf'>USST’s System for AutoSimTrans 2022</a> <br>Zhu Jia Hui, Yu Jun"
},
{
"start_time": "19:15",
"title": "<a href='https://github.com/autosimtrans/autosimtrans.github.io/blob/master/assets/docs/slides2021/naacl_presentation.pdf'>System Description on Automatic Simultaneous Translation Workshop</a> <br>Zecheng Li, Yue Sun, Haoze Li"
},
{
"start_time": "19:30",
"title": "<a href='https://github.com/autosimtrans/autosimtrans.github.io/blob/master/assets/docs/slides2021/BSTC_-_A_Large-Scale_Chinese-English_Speech_Translation_Dataset.pdf'>System Description on Third Automatic Simultaneous Translation Workshop</a> <br>Zhang Yiqiao"
},
{
"start_time": "19:45",
"title": "<a href='https://github.com/autosimtrans/autosimtrans.github.io/blob/master/assets/docs/slides2021/ict_ZhangShaolei_AutoSimTrans_Slides.pdf'>End-to-End Simultaneous Speech Translation with Pretraining and Distillation: Huawei Noah’s System for AutoSimTranS 2022</a> <br>Xingshan Zeng, Pengfei Li, Liangyou Li, Qun Liu"
},
{
"start_time": "20:00",
"title": "Closing Remarks"
}
]
},
{
"name": "AAMT 2020",
"id": "aamt-2020",
"description": "Conference of the Asian-Pacific Association for Machine Translation",
"start_date": "2020-12-02",
"end_date": "2020-12-02",
"location": {
"online": true
},
"organizer": {
"type": "Organization",
"name": "Asian-Pacific Association for Machine Translation",
"url": "https://aamt.info/"
},
"links": [
"https://aamt.info/aamt2020online/"
],
"one_day_schedule": [
{
"start_time": "10:00",
"title": "<bold>開会挨拶</bold> <br>:一般社団法人アジア太平洋機械翻訳協会会長 隅田英一郎氏"
},
{
"start_time": "10:10",
"title": "<bold>長尾賞受賞者紹介および受賞者講演</bold> <br><bold>第15回AAMT長尾賞(2件)</bold> <br>コニカミノルタ株式会社 BIC Japan 川﨑 健氏 <br>東芝デジタルソリューションズ株式会社 西本 俊之氏"
},
{
"start_time": "11:10",
"title": "☕️"
},
{
"start_time": "11:30",
"title": "<bold>ポストエディター教育について</bold> <br>:インタースクール 川口 仁氏"
},
{
"start_time": "12:00",
"title": "🍴"
},
{
"start_time": "13:30",
"title": "<bold>機械翻訳の最新技術動向調査 〜特許翻訳への応用を見据えて:経過報告〜</bold> <br>:奈良先端科学技術大学院大学 須藤 克仁氏"
},
{
"start_time": "14:00",
"title": "☕️"
},
{
"start_time": "14:20",
"title": "<bold>機械翻訳と翻訳支援ツールの関係性について</bold> <br>:SDLジャパン株式会社 佐藤 弦氏 <br>:シストランジャパン合同会社 江上 聡氏"
},
{
"start_time": "15:20",
"title": "☕️"
},
{
"start_time": "15:40",
"title": "<bold>パネルディスカッション「 ポストエディットのこれからを考える 」</bold> <br>モデレーター <br>:一般社団法人アジア太平洋機械翻訳協会副会長 安達 久博氏 <br>パネリスト <br>:関西大学 山田 優氏 <br>:株式会社ヒューマンサイエンス 中山 雄貴氏 <br>:株式会社ホンヤク社 成田 崇宏氏/個人翻訳者 恒川 正志氏"
},
{
"start_time": "17:10",
"title": "<bold>閉会挨拶</bold> <br>:一般社団法人アジア太平洋機械翻訳協会副会長 宇津呂武仁氏"
},
{
"start_time": "17:30",
"title": "オンライン交流会"
}
]
},
{
"name": "AAMT 2021",
"id": "aamt-2021",
"description": "Conference of the Asian-Pacific Association for Machine Translation",
"start_date": "2021-12-08",
"end_date": "2021-12-09",
"location": {
"online": true
},
"organizer": {
"type": "Organization",
"name": "Asian-Pacific Association for Machine Translation",
"url": "https://aamt.info/"
},
"links": [
"https://aamt.info/aamt-2021-online/",
"https://aamt.info/aamt-2021-online/"
],
"multiday_schedule": [
[
{
"start_time": "13:30",
"title": "開会挨拶"
},
{
"start_time": "13:45",
"title": "<bold>記念講演</bold> <br>黒橋 禎夫 氏 「AAMTとMTの軌跡と未来」 <br>安達 久博 氏 「翻訳業界とMTとの過去、現在と未来」 <br>辻井 潤一 氏 「長尾先生の言語観と例からの機械翻訳」"
},
{
"start_time": "16:00",
"title": "<bold>2021年AAMT長尾賞受賞者講演</bold> <br>鈴木 潤 氏(第16回AAMT長尾賞:東北大学) <br>「WMT-2020ニュース翻訳タスクに参加して:Team Tohoku-AIP-NTT at WMT-2020」 <br>石渡 祥之佑 氏(第16回AAMT長尾賞&第8回AAMT長尾賞学生奨励賞:株式会社Mantra) <br>「『世界の言葉で、マンガを届ける。』マンガのための機械翻訳」"
},
{
"start_time": "18:00",
"title": "閉会挨拶"
},
{
"start_time": "18:15",
"title": "オンライン交流会(サポーター特典枠あり)"
}
],
[
{
"start_time": "10:00",
"title": "開会挨拶"
},
{
"start_time": "10:10",
"title": "<bold>令和2年度特許出願技術動向調査 -機械翻訳</bold> <br>成瀬 博之 氏(特許庁"
},
{
"start_time": "11:00",
"title": "<bold>機械翻訳サミット参加報告 — ユーザー・プロバイダトラックを中心に</bold> <br>田中 英輝 氏(情報通信研究機構)"
},
{
"start_time": "11:30",
"title": "<bold>ランチタイムウェビナー トラック#1</bold>"
},
{
"start_time": "11:35",
"title": " <bold>「カスタマイズAI翻訳サービス「T-3MT」のご紹介」 <bold> https://www.rozetta.jp/lp/t3mt/ <br>篠田 篤典氏(株式会社ロゼッタ)"
},
{
"start_time": "12:05",
"title": " <bold>「機械翻訳の企業へのさらなる普及を妨げるミッシングリンクとそれを埋める方法」 </bold> <br>河野 弘毅氏(つうじ合同会社)三浦 陽氏(memoQ)"
},
{
"start_time": "12:30",
"title": " <bold>「”ヤラクゼン”を中心とした、八楽の会社案内」 </bold><br>日下部 優氏(八楽株式会社)"
},
{
"start_time": "12:00",
"title": " <bold>ランチタイムウェビナー トラック#2 </bold>"
},
{
"start_time": "12:05",
"title": "<bold>「翻訳会社・企業翻訳部門向けProTranslatorと翻訳者向けEXPRESSのご紹介」</bold><br>本間 奨氏(日本特許翻訳株式会社)"
},
{
"start_time": "12:30",
"title": "<bold>「医薬特化型エンジンの実力と活用」<bold> <br>講師:早川 威士氏(株式会社アスカコーポレーション)"
},
{
"start_time": "13:00",
"title": "公募セッション(1件あたり15分間)"
},
{
"title": "(1) <bold>機械翻訳と人間翻訳の両方の市場を最大にする方法</bold> <br> ローズ 三浦 氏(エッジ・トランスレーション)"
},
{
"title": "(2) <bold>Memsourceの翻訳データから探る、機械翻訳の最新動向</bold> <br>石井 潤一 氏(Memsource a.s.)"
},
{
"title": "(3) <bold>産業翻訳における機械翻訳の継続的改善手法</bold> <br>中山 雄貴 氏(株式会社ヒューマンサイエンス)"
},
{
"title": "(4) <bold>最適化された機械翻訳導入モデルによる医薬品開発業務の迅速化への試み </bold> <br>鞠子 幸泰 氏(中外製薬株式会社)<br> 早川 威士 氏(株式会社アスカコーポレーション)"
},
{
"title": "(5) <bold>「カスタムMT+フルPE」現状と見通し:医療翻訳分野の事例研究</bold> <br>山田 優 氏(立教大学) <br>早川 威士 氏(株式会社アスカコーポレーション)"
},
{
"title": "(6) <bold>NICTアダプテーション+EBMTエンジンの実力とそれを用いた統合翻訳環境</bold> <br>本間 奨 氏(日本特許翻訳株式会社)"
},
{
"start_time": "15:20",
"title": "<bold>The 8th Workshop on Asian Translation (WAT2021) 報告</bold> <br>中澤 敏明 氏(東京大学)"
},
{
"start_time": "15:45",
"title": "<bold>Red Hat が目指す翻訳の未来 — 全冊公開により見えてきた課題とソリューション</bold> <br>燃脇 綾子 氏(レッドハット株式会社)"
},
{
"start_time": "16:45",
"title": "<bold>MT利用ガイドライン委員会の取り組みと今後の予定</bold> <br>山田 優 氏(立教大学) <br>MT提供および利用の法的課題について <br>柿沼 太一 氏(STORIA法律事務所)"
},
{
"start_time": "17:45",
"title": "閉会挨拶"
}
]
]
},
{
"name": "AAMT 2022",
"id": "aamt-2022",
"description": "Conference of the Asian-Pacific Association for Machine Translation",
"start_date": "2022-12-01",
"end_date": "2022-12-01",
"more_paragraphs": [
"The topic will be <bold>~機械翻訳最前線~</bold>."
],
"location": {
"location": "Chiyoda, Japan",
"online": false
},
"organizer": {
"type": "Organization",
"name": "Asian-Pacific Association for Machine Translation",
"url": "https://aamt.info/"
},
"links": [
"https://www.aamt.info/event/aamttokyo2022/"
],
"important_dates": [
{
"name": "Open call for participants",
"date": "2022-08-29"
},
{
"name": "Call for papers deadline",
"date": "2022-09-30"
},
{
"name": "Notification of acceptance",
"date": "2022-10-07"
},
{
"name": "Registration/participation fee transfer deadline",
"date": "2022-10-31"
},
{
"name": "Presentation submission deadline",
"date": "2022-11-24"
}
],
"one_day_schedule": [
{
"start_time": "9:30",
"title": "<bold>Opening remarks</bold>"
},
{
"start_time": "9:40",
"title": "<bold>Invited lecture 1</bold> <br><bold>Recent Status of Constrained Translation Tasks in Language Pairs Including Japanese</bold> <br>Kaori Abe"
},
{
"start_time": "10:20",
"title": "<bold>Invited lecture 2</bold> <br><bold>Introduction of Automatic 'Simultaneous Interpretation Technology' at NICT</bold> <br>Masao Uchiyama"
},
{
"start_time": "11:00",
"title": "<bold>Back to Asia: MT Summit 2023 Macau</bold> <br>(MT Summit 2023 Steering Committee)"
},
{
"start_time": "11:45",
"title": "<bold>Diamond Supporter Luncheon Seminar</bold>"
},
{
"title": "Track #1 (Meeting Room A) <br><bold>Social Implementation of AI Automatic Translation Present, Past, and Future</bold> <br>Kenichi Segawa, Mirai Translate, Inc."
},
{
"title": "Track #2 (Meeting Room C) <br><bold>Rosetta Co., Ltd. x Japan Business Translation Co., Ltd.'s Challenge!!<bold> <br>Shinya Miyamoto, Japan Business Translation Co., Ltd. <br>Atsunori Shinoda, Rosetta Co., Ltd."
},
{
"title": "Track #3 (Conference Room D) <br><bold>Efforts from a UI/UX perspective for social implementation of machine translation<bold> <br>Atsushi Kato, Toppan Printing Co., Ltd."
},
{
"start_time": "12:35",
"title": "<bold>Gold Supporter Luncheon Seminar</bold>"
},
{
"title": "Track #1 (Meeting Room A) <br><bold>Introduction to Chizai Corporation (Looking toward the future of patent translation)</bold> <br>Munetake Hamaguchi, Chizai Corporation"
},
{
"title": "Track #2 ( Conference room C) <br>Introduction of Web data automatic translation creation service “CorpusNow” <br>Tsutomu Izawa, Kawamura International Co., Ltd."
},
{
"start_time": "13:15",
"title": "<bold>Open call for participants session</bold>"
},
{
"title": "<bold>Regarding the status of machine translation of expressions in the connected car industry</bold> <br>Keisuke Ota"
},
{
"title": "<bold>Meeting Customer Expectations Using Machine Translation</bold> <br>Yukako Ueda"
},
{
"title": "<bold>Using Machine Translation with Cloud-Based Translation Management Systems</bold> <br>Yumiko Mokuji"
},
{
"title": "<bold>Current Status of Machine Translation from the Perspective of Translators and How to Use It Effectively</bold> <br>Kiyoshi Yoshikawa"
},
{
"title": "<bold>The identity of “machine-translation-likeness” and how to reduce it, and the expected value of human translation, as seen in the results of the translation Turing test</bold> <br>Akitsugu Domoto"
},
{
"title": "<bold>Meta translation-Aiming for the highest accuracy from personal development</bold> <br>Ryutaro Fujii"
},
{
"title": "<bold>From the EU to the World, from Japan to the World</bold> <br>Tokiharu Iwanaga"
},
{
"start_time": "15:15",
"title": "🕑"
},
{
"start_time": "15:30",
"title": "<bold>Panel discussion</bold> <br>Recommendations for ISO 18587 supplier self-declaration of conformity based on the AAMT guidelines <br>Moderator: Kozo Moriguchi <br>Panelist: Yoshikazu Hamada Maho Ono"
},
{
"start_time": "17:00",
"title": "<bold>Closing remarks</bold>"
},
{
"start_time": "17:30",
"title": "<bold>Social gathering</bold>"
}
]
},
{
"name": "MT Summit 2025",
"id": "mt-summit-2025",
"description": "Machine Translation Summit",
"calls_for_papers_deadline": "2025-01-27",
"start_date": "2025-06-23",
"end_date": "2025-06-27",
"location": {
"location": "Geneva, Switzerland",
"online": false
},
"organizer": {
"type": "Association",
"name": "EAMT",