ACL-OCL / Base_JSON /prefixA /json /autosimtrans /2021.autosimtrans-1.4.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
raw
history blame contribute delete
No virus
51.2 kB
{
"paper_id": "2021",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T02:09:40.981684Z"
},
"title": "System Description on Automatic Simultaneous Translation Workshop",
"authors": [
{
"first": "Linjie",
"middle": [],
"last": "Chen",
"suffix": "",
"affiliation": {},
"email": "chenlinjie887@pingan.com.cn"
},
{
"first": "Jianzong",
"middle": [],
"last": "Wang",
"suffix": "",
"affiliation": {},
"email": "jzwang@188.com"
},
{
"first": "Zhangcheng",
"middle": [],
"last": "Huang",
"suffix": "",
"affiliation": {},
"email": "huangzhangcheng624@pingan.com.cn"
},
{
"first": "Xiongbin",
"middle": [],
"last": "Ding",
"suffix": "",
"affiliation": {},
"email": "dingxiongbin106@pingan.com.cn"
},
{
"first": "Jing",
"middle": [],
"last": "Xiao",
"suffix": "",
"affiliation": {},
"email": "xiaojing661@pingan.com.cn"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "This paper shows our submission on the second automatic simultaneous translation workshop at NAACL2021. We participate in all the two directions of Chinese-to-English translation, Chinese audio\u2192English text and Chinese text\u2192English text. We do data filtering and model training techniques to get the best BLEU score and reduce the average lagging. We propose a two-stage simultaneous translation pipeline system which is composed of Quartznet and BPE-based transformer. We propose a competitive simultaneous translation system and achieves a BLEU score of 24.39 in the audio input track.",
"pdf_parse": {
"paper_id": "2021",
"_pdf_hash": "",
"abstract": [
{
"text": "This paper shows our submission on the second automatic simultaneous translation workshop at NAACL2021. We participate in all the two directions of Chinese-to-English translation, Chinese audio\u2192English text and Chinese text\u2192English text. We do data filtering and model training techniques to get the best BLEU score and reduce the average lagging. We propose a two-stage simultaneous translation pipeline system which is composed of Quartznet and BPE-based transformer. We propose a competitive simultaneous translation system and achieves a BLEU score of 24.39 in the audio input track.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Our submitted system consists of an end to end speech recognition model and a neural machine translation model which follows the traditional pipeline framework in simultaneous translation task. The system input is Chinese audio file and the output is English translation text. A temporary Streaming transcription is obtained by speech recognition model and transmitted into machine translation model to get the target system output.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "For automatic speech recognition(ASR) model, we use the QuartzNet model (Kriman et al., 2019) of Nvidia Jarvis. At the moment, we expand the train data set by adding Aishell-1 and data that collected, then using plenty of rules to filter audio data and deal with parallel transcription. Compared to the Jasper model (Li et al., 2019) , it can reduce number of parameters quickly by using separable 1D convolutions including time channel.",
"cite_spans": [
{
"start": 72,
"end": 93,
"text": "(Kriman et al., 2019)",
"ref_id": "BIBREF5"
},
{
"start": 316,
"end": 333,
"text": "(Li et al., 2019)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Our neural machine translation model is Transformer (Vaswani et al., 2017) . We use some human rules and the pre-trained language model to filter the parallel corpus. The method of back translation (Sennrich et al., 2016) is also applied to generate synthetic Chinese sentences.",
"cite_spans": [
{
"start": 52,
"end": 74,
"text": "(Vaswani et al., 2017)",
"ref_id": "BIBREF13"
},
{
"start": 198,
"end": 221,
"text": "(Sennrich et al., 2016)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "At the step of inference, we apply the wait-k words method (Ma et al., 2018) . Both the preprocessing and post-processing are applied to improve the terminology translation and deal with the word error produced by the ASR system.",
"cite_spans": [
{
"start": 59,
"end": 76,
"text": "(Ma et al., 2018)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Since our submission is a two-stage system, the rest of this paper describes separately regards to the Automatic speech recognition(ASR and Machine translation(MT) sub-modules. We firstly describe the training and development datasets we used, then the data filtering methods we applied is introduced. Secondly, the system architecture is discussed and it is verified by the experiments. Lastly, we draw a conclusion of our system by analyzing the experiments.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "For audio data of ASR, we use qianyan audio datasets provided by NAACL workshop (Zhang et al., 2021) , Aishell-1 (Hui Bu, 2017) and lip sentences we collect by smartphone(16kHz, 16-bit).",
"cite_spans": [
{
"start": 80,
"end": 100,
"text": "(Zhang et al., 2021)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Datasets",
"sec_num": "2"
},
{
"text": "We invite 20 volunteers in data collection. Each volunteer performed two hours of Mandarin Chinese audio about 1000 sentences in the quiet room. To keep data diversity, different domains of audios were collected, including artificial intelligent, industrial production, business conversation and medical. Finally, we get a total of 19800 sentences (audio and transcription) in this way.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Audio Data",
"sec_num": "2.1"
},
{
"text": "For qianyan audio datasets, we split each audio into sentences according to the sentence-level transcription. After processing, the blank part of all entire audio files was removed, and duration time of audios was reduced from the original 68 hours to about 52 hours.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Audio Data",
"sec_num": "2.1"
},
{
"text": "For AIshell-1 datasets, we firstly deal with transcription files by using rules to get path and filename of every transcription. Then using wave library to read audio files to get the duration time of each audio.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Audio Data",
"sec_num": "2.1"
},
{
"text": "Noting that the audio data and the transcription may not exactly match. In order to improve the accuracy of the data, we use a pre-trained ASR model to transcript audio data to produce text result. Then using similarity matching algorithm to filter audio and original transcription data of lower similarity. Table1 shows the number of train data after filtering. The corpus we use to build our machine translation system is CWMT 19 corpus 1 . It includes both the bilingual and monolingual data. For the bilingual data, we apply data filtering techniques. The main process is described as follows. Firstly, we set the punctuation ratio and sentence length ratio of the sentence pairs to abandon the sentences higher than the ratio. Secondly, we calculate the cross entropy of each English sentence by a pre-trained language model and removed the sentence pair exceed the threshold. Thirdly, we construct a terminology table using the methods of name entity resolution and word alignment. The terminology such as companies, organizations and human names are replaced with specific words.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Audio Data",
"sec_num": "2.1"
},
{
"text": "For the monolingual data, we follow the method proposed by (Sennrich et al., 2016) . We firstly train an English to Chinese machine translation model. Then the monolingual English sentences are translated to generate synthetic Chinese translation. All the synthetic parallel data are filtered with the same strategies applied in bilingual data.",
"cite_spans": [
{
"start": 59,
"end": 82,
"text": "(Sennrich et al., 2016)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Audio Data",
"sec_num": "2.1"
},
{
"text": "After the filtering process, we normalize the punctuation for both Chinese and English sentences. We apply Chinese word segmentation using LAC toolkit 2 (Jiao et al., 2018) for Chinese sentences. For the English sentences, we apply the Tokenizer and Truecaser toolkit provided by Moses scripts (Koehn et al., 2007) . Finally, we train a bytes pairs encoding model and applied it for both Chinese and English sentences.",
"cite_spans": [
{
"start": 153,
"end": 172,
"text": "(Jiao et al., 2018)",
"ref_id": "BIBREF1"
},
{
"start": 294,
"end": 314,
"text": "(Koehn et al., 2007)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Audio Data",
"sec_num": "2.1"
},
{
"text": "The model training process for both the speech recognition and machine translation model are implemented on a device with eight GPUs of Nvidia TESLA V100.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "System description",
"sec_num": "3"
},
{
"text": "The QuartzNet15x5 model is as our based model on ASR, we also use Memory-Self-Attention(MSA) (Luo et al., 2021 ) modules in the model structure of CTC and RNN-T.",
"cite_spans": [
{
"start": 93,
"end": 110,
"text": "(Luo et al., 2021",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic speech recognition",
"sec_num": "3.1"
},
{
"text": "After data pre-processing, we use the file of json structure to train quartznet 15x5 model. We list the model configuration and train parameters in Table2. When the model was trained, the size of each sample audio should be controlled to less than 16.7 s. To do this, it can improve the accuracy of model and accelerate the training speed. The ASR model was trained over three days and reached to the best WER. After the loss value converged, we use the last saved model to try to transform test datasets and get average score. We use WER-BEAT (Sheshadri et al., 2021) to evaluate our model. And we get closed to 1.0 WER. To increase the accuracy of model recognition, we use MSA modules in the model structure of CTC and RNN-T. The operation complexity of the model maintains a linear relationship with the length of the input speech, which greatly improves the efficiency of the model, and there will be no serious decline in efficiency as the input increases.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Training Scheme",
"sec_num": "3.1.1"
},
{
"text": "Before we use the model, in order to improve the accuracy of recognition, we need to process the input voice file.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model Usage",
"sec_num": "3.1.2"
},
{
"text": "In the end, we only submit one point in the competition. This point is to directly use the previously segmented audio transcription text as the input of the translation model, thereby obtaining a more accurate English text output.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Model Usage",
"sec_num": "3.1.2"
},
{
"text": "We use Transformer as our based model on machine translation, the attention mechanism is strength-able at capturing the Semantic relationship on a sentence. The development toolkit we used in machine translation is Marian (Junczys-Dowmunt et al., 2018) .",
"cite_spans": [
{
"start": 222,
"end": 252,
"text": "(Junczys-Dowmunt et al., 2018)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Machine translation",
"sec_num": "3.2"
},
{
"text": "After completing the data preprocessing on both the bilingual data and back-translated data, we train our baseline model by evaluating BLEU. The language tool for evaluation is uncased 4-gram BLEU (Papineni et al., 2002) . We list the model configuration in Table3 and training parameters in Table 4 . We train the model for over three days, the BLEU score increased rapidly at the beginning and the growth slowed after 30 hours. After the loss converged, we collect the last 20 checkpoints of the model in the time interval of one hour and applied checkpoint average to get the final model. We implement fine-tuning on the Transformer model using the development set of qianyan audio datasets (956 sentence pairs) to improve the translation quality on simultaneous translation task. Since fine-tuning is effective to build a domain-adaptive model.",
"cite_spans": [
{
"start": 197,
"end": 220,
"text": "(Papineni et al., 2002)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [
{
"start": 292,
"end": 300,
"text": "Table 4",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "Training Scheme",
"sec_num": "3.2.1"
},
{
"text": "This paper describes our submission to the second automatic simultaneous translation workshop at NAACL2021. We detail our process of data filtering and model training. The Consecutive Wait(CW) (Klein et al., 2017) of the best point reached to 18.4 while we get the BLEU value of 24.39 in the audio input track. In future work, we will continue to research on end-to-end speech translation model from Chinese speech input to English text output.",
"cite_spans": [
{
"start": 193,
"end": 213,
"text": "(Klein et al., 2017)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "4"
},
{
"text": "http://mteval.cipsc.org.cn:81/agreement/AutoSimTrans 2 https://github.com/baidu/lac",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Aishell-1: An open-source mandarin speech corpus and a speech recognition baseline",
"authors": [
{
"first": "Xingyu Na Bengu Wu Hao Zheng Hui",
"middle": [],
"last": "Bu",
"suffix": ""
},
{
"first": "Jiayu",
"middle": [],
"last": "Du",
"suffix": ""
}
],
"year": 2017,
"venue": "Oriental COCOSDA 2017",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xingyu Na Bengu Wu Hao Zheng Hui Bu, Jiayu Du. 2017. Aishell-1: An open-source mandarin speech corpus and a speech recognition baseline. In Orien- tal COCOSDA 2017, page Submitted.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Chinese lexical analysis with deep bi-gru-crf network",
"authors": [
{
"first": "Zhenyu",
"middle": [],
"last": "Jiao",
"suffix": ""
},
{
"first": "Shuqi",
"middle": [],
"last": "Sun",
"suffix": ""
},
{
"first": "Ke",
"middle": [],
"last": "Sun",
"suffix": ""
}
],
"year": 2018,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1807.01882"
]
},
"num": null,
"urls": [],
"raw_text": "Zhenyu Jiao, Shuqi Sun, and Ke Sun. 2018. Chinese lexical analysis with deep bi-gru-crf network. arXiv preprint arXiv:1807.01882.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Marian: Fast neural machine translation in C++",
"authors": [
{
"first": "Marcin",
"middle": [],
"last": "Junczys-Dowmunt",
"suffix": ""
},
{
"first": "Roman",
"middle": [],
"last": "Grundkiewicz",
"suffix": ""
},
{
"first": "Tomasz",
"middle": [],
"last": "Dwojak",
"suffix": ""
},
{
"first": "Hieu",
"middle": [],
"last": "Hoang",
"suffix": ""
},
{
"first": "Kenneth",
"middle": [],
"last": "Heafield",
"suffix": ""
},
{
"first": "Tom",
"middle": [],
"last": "Neckermann",
"suffix": ""
},
{
"first": "Frank",
"middle": [],
"last": "Seide",
"suffix": ""
},
{
"first": "Ulrich",
"middle": [],
"last": "Germann",
"suffix": ""
},
{
"first": "Alham",
"middle": [],
"last": "Fikri Aji",
"suffix": ""
},
{
"first": "Nikolay",
"middle": [],
"last": "Bogoychev",
"suffix": ""
},
{
"first": "F",
"middle": [
"T"
],
"last": "Andr\u00e9",
"suffix": ""
}
],
"year": 2018,
"venue": "Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "116--121",
"other_ids": {
"DOI": [
"10.18653/v1/P18-4020"
]
},
"num": null,
"urls": [],
"raw_text": "Marcin Junczys-Dowmunt, Roman Grundkiewicz, Tomasz Dwojak, Hieu Hoang, Kenneth Heafield, Tom Neckermann, Frank Seide, Ulrich Germann, Al- ham Fikri Aji, Nikolay Bogoychev, Andr\u00e9 F. T. Mar- tins, and Alexandra Birch. 2018. Marian: Fast neu- ral machine translation in C++. In Proceedings of ACL 2018, Melbourne, Australia, July 15-20, 2018, System Demonstrations, pages 116-121. Associa- tion for Computational Linguistics.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Opennmt: Open-source toolkit for neural machine translation",
"authors": [
{
"first": "Guillaume",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": "Yoon",
"middle": [],
"last": "Kim",
"suffix": ""
},
{
"first": "Yuntian",
"middle": [],
"last": "Deng",
"suffix": ""
},
{
"first": "Jean",
"middle": [],
"last": "Senellart",
"suffix": ""
},
{
"first": "Alexander",
"middle": [
"M"
],
"last": "Rush",
"suffix": ""
}
],
"year": 2017,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Guillaume Klein, Yoon Kim, Yuntian Deng, Jean Senel- lart, and Alexander M. Rush. 2017. Opennmt: Open-source toolkit for neural machine translation.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Moses: Open source toolkit for statistical machine translation",
"authors": [
{
"first": "Philipp",
"middle": [],
"last": "Koehn",
"suffix": ""
},
{
"first": "Hieu",
"middle": [],
"last": "Hoang",
"suffix": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Birch",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Callison-Burch",
"suffix": ""
},
{
"first": "Marcello",
"middle": [],
"last": "Federico",
"suffix": ""
},
{
"first": "Nicola",
"middle": [],
"last": "Bertoldi",
"suffix": ""
},
{
"first": "Brooke",
"middle": [],
"last": "Cowan",
"suffix": ""
},
{
"first": "Wade",
"middle": [],
"last": "Shen",
"suffix": ""
},
{
"first": "Christine",
"middle": [],
"last": "Moran",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Zens",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Dyer",
"suffix": ""
},
{
"first": "Ondrej",
"middle": [],
"last": "Bojar",
"suffix": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Constantin",
"suffix": ""
},
{
"first": "Evan",
"middle": [],
"last": "Herbst",
"suffix": ""
}
],
"year": 2007,
"venue": "ACL 2007, Proceedings of the 45th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Philipp Koehn, Hieu Hoang, Alexandra Birch, Chris Callison-Burch, Marcello Federico, Nicola Bertoldi, Brooke Cowan, Wade Shen, Christine Moran, Richard Zens, Chris Dyer, Ondrej Bojar, Alexandra Constantin, and Evan Herbst. 2007. Moses: Open source toolkit for statistical machine translation. In ACL 2007, Proceedings of the 45th Annual Meet- ing of the Association for Computational Linguistics, June 23-30, 2007, Prague, Czech Republic. The As- sociation for Computational Linguistics.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Quartznet: Deep automatic speech recognition with 1d time-channel separable convolutions",
"authors": [
{
"first": "Stanislav",
"middle": [],
"last": "Samuel Kriman",
"suffix": ""
},
{
"first": "Boris",
"middle": [],
"last": "Beliaev",
"suffix": ""
},
{
"first": "Jocelyn",
"middle": [],
"last": "Ginsburg",
"suffix": ""
},
{
"first": "Oleksii",
"middle": [],
"last": "Huang",
"suffix": ""
},
{
"first": "Vitaly",
"middle": [],
"last": "Kuchaiev",
"suffix": ""
},
{
"first": "Ryan",
"middle": [],
"last": "Lavrukhin",
"suffix": ""
},
{
"first": "Jason",
"middle": [],
"last": "Leary",
"suffix": ""
},
{
"first": "Yang",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2019,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Samuel Kriman, Stanislav Beliaev, Boris Ginsburg, Jo- celyn Huang, Oleksii Kuchaiev, Vitaly Lavrukhin, Ryan Leary, Jason Li, and Yang Zhang. 2019. Quartznet: Deep automatic speech recognition with 1d time-channel separable convolutions.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Jasper: An end-to-end convolutional neural acoustic model",
"authors": [
{
"first": "Ravi Teja",
"middle": [],
"last": "Nguyen",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Gadde",
"suffix": ""
}
],
"year": 2019,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nguyen, and Ravi Teja Gadde. 2019. Jasper: An end-to-end convolutional neural acoustic model.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Unidirectional memory-self-attention transducer for online speech recognition",
"authors": [
{
"first": "Jian",
"middle": [],
"last": "Luo",
"suffix": ""
},
{
"first": "Jianzong",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Ning",
"middle": [],
"last": "Cheng",
"suffix": ""
},
{
"first": "Jing",
"middle": [],
"last": "Xiao",
"suffix": ""
}
],
"year": 2021,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jian Luo, Jianzong Wang, Ning Cheng, and Jing Xiao. 2021. Unidirectional memory-self-attention trans- ducer for online speech recognition.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "STACL: simultaneous translation with integrated anticipation and controllable latency",
"authors": [
{
"first": "Mingbo",
"middle": [],
"last": "Ma",
"suffix": ""
},
{
"first": "Liang",
"middle": [],
"last": "Huang",
"suffix": ""
},
{
"first": "Hao",
"middle": [],
"last": "Xiong",
"suffix": ""
},
{
"first": "Kaibo",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Chuanqiang",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Zhongjun",
"middle": [],
"last": "He",
"suffix": ""
},
{
"first": "Hairong",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Xing",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Haifeng",
"middle": [],
"last": "Wang",
"suffix": ""
}
],
"year": 2018,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mingbo Ma, Liang Huang, Hao Xiong, Kaibo Liu, Chuanqiang Zhang, Zhongjun He, Hairong Liu, Xing Li, and Haifeng Wang. 2018. STACL: simul- taneous translation with integrated anticipation and controllable latency. CoRR, abs/1810.08398.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Bleu: a method for automatic evaluation of machine translation",
"authors": [
{
"first": "Kishore",
"middle": [],
"last": "Papineni",
"suffix": ""
},
{
"first": "Salim",
"middle": [],
"last": "Roukos",
"suffix": ""
},
{
"first": "Todd",
"middle": [],
"last": "Ward",
"suffix": ""
},
{
"first": "Wei-Jing",
"middle": [],
"last": "Zhu",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of the 40th Annual Meeting of the Association for Computational Linguistics",
"volume": "",
"issue": "",
"pages": "311--318",
"other_ids": {
"DOI": [
"10.3115/1073083.1073135"
]
},
"num": null,
"urls": [],
"raw_text": "Kishore Papineni, Salim Roukos, Todd Ward, and Wei- Jing Zhu. 2002. Bleu: a method for automatic eval- uation of machine translation. In Proceedings of the 40th Annual Meeting of the Association for Compu- tational Linguistics, July 6-12, 2002, Philadelphia, PA, USA, pages 311-318. ACL.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Improving neural machine translation models with monolingual data",
"authors": [
{
"first": "Rico",
"middle": [],
"last": "Sennrich",
"suffix": ""
},
{
"first": "Barry",
"middle": [],
"last": "Haddow",
"suffix": ""
},
{
"first": "Alexandra",
"middle": [],
"last": "Birch",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics, ACL 2016",
"volume": "1",
"issue": "",
"pages": "",
"other_ids": {
"DOI": [
"10.18653/v1/p16-1009"
]
},
"num": null,
"urls": [],
"raw_text": "Rico Sennrich, Barry Haddow, and Alexandra Birch. 2016. Improving neural machine translation mod- els with monolingual data. In Proceedings of the 54th Annual Meeting of the Association for Compu- tational Linguistics, ACL 2016, August 7-12, 2016, Berlin, Germany, Volume 1: Long Papers. The Asso- ciation for Computer Linguistics.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Wer-bert: Automatic wer estimation with bert in a balanced ordinal classification paradigm",
"authors": [
{
"first": "Krishna",
"middle": [],
"last": "Akshay",
"suffix": ""
},
{
"first": "Anvesh",
"middle": [
"Rao"
],
"last": "Sheshadri",
"suffix": ""
},
{
"first": "Sukhdeep",
"middle": [],
"last": "Vijjini",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Kharbanda",
"suffix": ""
}
],
"year": 2021,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Akshay Krishna Sheshadri, Anvesh Rao Vijjini, and Sukhdeep Kharbanda. 2021. Wer-bert: Automatic wer estimation with bert in a balanced ordinal classi- fication paradigm.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Attention is all you need",
"authors": [
{
"first": "Ashish",
"middle": [],
"last": "Vaswani",
"suffix": ""
},
{
"first": "Noam",
"middle": [],
"last": "Shazeer",
"suffix": ""
},
{
"first": "Niki",
"middle": [],
"last": "Parmar",
"suffix": ""
},
{
"first": "Jakob",
"middle": [],
"last": "Uszkoreit",
"suffix": ""
},
{
"first": "Llion",
"middle": [],
"last": "Jones",
"suffix": ""
},
{
"first": "Aidan",
"middle": [
"N"
],
"last": "Gomez",
"suffix": ""
},
{
"first": "Lukasz",
"middle": [],
"last": "Kaiser",
"suffix": ""
},
{
"first": "Illia",
"middle": [],
"last": "Polosukhin",
"suffix": ""
}
],
"year": 2017,
"venue": "Advances in Neural Information Processing Systems 30: Annual Conference on Neural Information Processing Systems",
"volume": "",
"issue": "",
"pages": "5998--6008",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. 2017. Attention is all you need. In Advances in Neural Information Pro- cessing Systems 30: Annual Conference on Neural Information Processing Systems 2017, December 4- 9, 2017, Long Beach, CA, USA, pages 5998-6008.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Bstc: A large-scale chinese-english speech translation dataset",
"authors": [
{
"first": "Ruiqing",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Xiyang",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Chuanqiang",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Zhongjun",
"middle": [],
"last": "He",
"suffix": ""
},
{
"first": "Hua",
"middle": [],
"last": "Wu",
"suffix": ""
},
{
"first": "Zhi",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Haifeng",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Ying",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Qinfei",
"middle": [],
"last": "Li",
"suffix": ""
}
],
"year": 2021,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:2104.03575"
]
},
"num": null,
"urls": [],
"raw_text": "Ruiqing Zhang, Xiyang Wang, Chuanqiang Zhang, Zhongjun He, Hua Wu, Zhi Li, Haifeng Wang, Ying Chen, and Qinfei Li. 2021. Bstc: A large-scale chinese-english speech translation dataset. arXiv preprint arXiv:2104.03575.",
"links": null
}
},
"ref_entries": {
"TABREF0": {
"text": "ZH-EN audio train datasets",
"content": "<table><tr><td>Data Source</td><td colspan=\"2\">Duration Total Samples</td></tr><tr><td colspan=\"2\">Qianyan(NAACL) 70hours</td><td>36,140</td></tr><tr><td>Aishell-1</td><td colspan=\"2\">178hours 120,098</td></tr><tr><td>Collection</td><td>40hours</td><td>19,800</td></tr><tr><td>2.2 Text Data</td><td/><td/></tr></table>",
"type_str": "table",
"num": null,
"html": null
},
"TABREF1": {
"text": "Model Configuration",
"content": "<table><tr><td>Configuration</td><td>Value</td></tr><tr><td>Sample rate</td><td>16,000</td></tr><tr><td>Repeat</td><td>5</td></tr><tr><td>n fft</td><td>512</td></tr><tr><td>activation</td><td>relu</td></tr><tr><td>Chinese Vocabulary size</td><td>5,270</td></tr><tr><td>Optimizer</td><td>Adam</td></tr><tr><td>residual</td><td>true</td></tr><tr><td>filters</td><td>256/512</td></tr><tr><td>batch size</td><td>64</td></tr></table>",
"type_str": "table",
"num": null,
"html": null
},
"TABREF2": {
"text": "Model Configuration",
"content": "<table><tr><td>Configuration</td><td>Value</td></tr><tr><td>Encoder/Decoder depth</td><td>6</td></tr><tr><td>Attention heads</td><td>16</td></tr><tr><td>Word Embedding</td><td>1024</td></tr><tr><td>FFN size</td><td>4096</td></tr><tr><td>Chinese Vocabulary size</td><td>50,000</td></tr><tr><td>English Vocabulary size</td><td>50,000</td></tr><tr><td>Optimizer</td><td>Adam</td></tr></table>",
"type_str": "table",
"num": null,
"html": null
},
"TABREF3": {
"text": "Training Parameters",
"content": "<table><tr><td>Parameter</td><td>Value</td></tr><tr><td>Label smoothing</td><td>0.1</td></tr><tr><td>Learning rate</td><td>16</td></tr><tr><td>Warmup rates</td><td>15,000</td></tr><tr><td>Maximum sentence length</td><td>120</td></tr><tr><td>Clip normalization</td><td>5</td></tr><tr><td>3.2.2 Fine-tuning</td><td/></tr></table>",
"type_str": "table",
"num": null,
"html": null
}
}
}
}