paper-with-me

Papers

Bidirectional Attentional Encoder-Decoder Model and Bidirectional Beam Search for Abstractive Summarization

2018-09-18 · Kamal Al-Sabahi, Zhang Zuping, Yang Kang

Sequence generative models with RNN variants, such as LSTM, GRU, show promising performance on abstractive document summarization. However, they still have some issues that limit their performance, especially while deal-ing with long sequences. One of the issues is that, to the best of our knowledge, all current models employ a unidirectional decoder, which reasons only about the past and still limited to retain future context while giving a prediction. This makes these models suffer on their own by generating unbalanced outputs. Moreover, unidirec-tional attention-based document summarization can only capture partial aspects of attentional regularities due to the inherited challenges in document summarization. To this end, we propose an end-to-end trainable bidirectional RNN model to tackle the aforementioned issues. The model has a bidirectional encoder-decoder architecture; in which the encoder and the decoder are bidirectional LSTMs. The forward decoder is initialized with the last hidden state of the backward encoder while the backward decoder is initialized with the last hidden state of the for-ward encoder. In addition, a bidirectional beam search mechanism is proposed as an approximate inference algo-rithm for generating the output summaries from the bidi-rectional model. This enables the model to reason about the past and future and to generate balanced outputs as a result. Experimental results on CNN / Daily Mail dataset show that the proposed model outperforms the current abstractive state-of-the-art models by a considerable mar-gin.

📄 PDF Abstract BibTeX arXiv:1809.06662

Code (0)

등록된 구현이 없습니다.

Tasks

Abstractive Text SummarizationDecoderDocument Summarization

Methods 이 논문이 사용한 방법론

Sigmoid Activation 설명 없음
Tanh Activation 설명 없음
LSTM An LSTM is a type of recurrent neural network that addresses the vanishing gradient problem in vanilla…
GRU A Gated Recurrent Unit, or GRU, is a type of recurrent neural network. It is similar to an LSTM, but only has two gates - a reset…

Similar Papers 제목 키워드 기반

Asynchronous Bidirectional Decoding for Neural Machine Translation

2018-01-16 · Xiangwen Zhang, Jinsong Su, Yue Qin, Yang Liu 외

The dominant neural machine translation (NMT) models apply unified attentional encoder-decoder neural networks for translation. Traditionally, the NMT decoders adopt recurrent neural networks (RNNs) to perform translatio…

DecoderMachine TranslationNMTTranslation

Improved Neural Machine Translation with a Syntax-Aware Encoder and Decoder

2017-07-18 · ACL 2017 7 · Huadong Chen, Shu-Jian Huang, David Chiang, Jia-Jun Chen

Most neural machine translation (NMT) models are based on the sequential encoder-decoder framework, which makes no use of syntactic information. In this paper, we improve this model by explicitly incorporating source-sid…

DecoderMachine TranslationNMTTranslation

Bidirectional Representations Augmented Autoregressive Biological Sequence Generation

2025-10-09 · Xiang Zhang, Jiaqi Wei, Zijie Qiu, Sheng Xu 외 arxiv

Autoregressive (AR) models, common in sequence generation, are limited in many biological tasks such as de novo peptide sequencing and protein modeling by their unidirectional nature, failing to capture crucial global bi…

Scene Text Recognition With Finer Grid Rectification

2020-01-26 · Gang Wang

Scene Text Recognition is a challenging problem because of irregular styles and various distortions. This paper proposed an end-to-end trainable model consists of a finer rectification module and a bidirectional attentio…

DecoderScene Text Recognition

Beam Search with Bidirectional Strategies for Neural Response Generation

2021-10-07 · ICNLSP 2021 11 · Pierre Colombo, Chouchang Yang, Giovanna Varni, Chloé Clavel

Sequence-to-sequence neural networks have been widely used in language-based applications as they have flexible capabilities to learn various language models. However, when seeking for the optimal language response throu…

DecoderLanguage ModelingLanguage ModellingResponse Generation+1