paper-with-me

Papers

Fast Interleaved Bidirectional Sequence Generation

2020-10-27 · WMT (EMNLP) 2020 11 · Biao Zhang, Ivan Titov, Rico Sennrich

Independence assumptions during sequence generation can speed up inference, but parallel generation of highly inter-dependent tokens comes at a cost in quality. Instead of assuming independence between neighbouring tokens (semi-autoregressive decoding, SA), we take inspiration from bidirectional sequence generation and introduce a decoder that generates target words from the left-to-right and right-to-left directions simultaneously. We show that we can easily convert a standard architecture for unidirectional decoding into a bidirectional decoder by simply interleaving the two directions and adapting the word positions and self-attention masks. Our interleaved bidirectional decoder (IBDecoder) retains the model simplicity and training efficiency of the standard Transformer, and on five machine translation tasks and two document summarization tasks, achieves a decoding speedup of ~2X compared to autoregressive decoding with comparable quality. Notably, it outperforms left-to-right SA because the independence assumptions in IBDecoder are more felicitous. To achieve even higher speedups, we explore hybrid models where we either simultaneously predict multiple neighbouring tokens per direction, or perform multi-directional decoding by partitioning the target sequence. These methods achieve speedups to 4X-11X across different tasks at the cost of <1 BLEU or <0.5 ROUGE (on average). Source code is released at https://github.com/bzhangGo/zero.

📄 PDF Abstract BibTeX arXiv:2010.14481

Code (1)

bzhangGo/zero 공식 구현 tf

Tasks

DecoderDocument SummarizationMachine Translation

Methods 이 논문이 사용한 방법론

Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Absolute Position Encodings Absolute Position Encodings are a type of position embeddings for [Transformer-based models] where positional encodings are…
Position-Wise Feed-Forward Layer 설명 없음
Residual Connection 설명 없음
Multi-Head Attention 설명 없음
Layer Normalization Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs…
BPE Byte Pair Encoding, or BPE, is a subword segmentation algorithm that encodes rare and unknown words as sequences of subword units. The intuition is that various word…
Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…

Similar Papers 제목 키워드 기반

Illuminating Unified Multimodal Model for Free-form Interleaved Text-Image Generation

2026-06-29 · Chonghuinan Wang, Zhikai Chen, Chunwei Wang, Yecong Wan 외 arxiv

The advancement of generative AI models capable of producing text and image marks a critical step forward in the realm of multimodal intelligence, particularly for tasks involving the interleaving of both modalities. To …

Image GenerationStyle Transfer

DiffuMamba: High-Throughput Diffusion LMs with Mamba Backbone

2025-11-19 · Vaibhav Singh, Oleksiy Ostapenko, Pierre-André Noël, Eugene Belilovsky 외 arxiv

Diffusion language models (DLMs) have emerged as a promising alternative to autoregressive (AR) generation, yet their reliance on Transformer backbones limits inference efficiency due to quadratic attention or KV-cache o…

Emu3.5: Native Multimodal Models are World Learners

2025-10-30 · Yufeng Cui, Honghao Chen, Haoge Deng, Xu Huang 외 arxiv

We introduce Emu3.5, a large-scale multimodal world model that natively predicts the next state across vision and language. Emu3.5 is pre-trained end-to-end with a unified next-token prediction objective on a corpus of v…

Reinforcement LearningMultimodal ReasoningImage Generation

OpenLEAF: Open-Domain Interleaved Image-Text Generation and Evaluation

2023-10-11 · Jie An, Zhengyuan Yang, Linjie Li, JianFeng Wang 외

This work investigates a challenging task named open-domain interleaved image-text generation, which generates interleaved texts and images following an input query. We propose a new interleaved generation framework base…

Question AnsweringText Generation

Towards Seamless Interaction: Causal Turn-Level Modeling of Interactive 3D Conversational Head Dynamics

2025-12-17 · Junjie Chen, Fei Wang, Zhihao Huang, Qing Zhou 외 arxiv

Human conversation involves continuous exchanges of speech and nonverbal cues such as head nods, gaze shifts, and facial expressions that convey attention and emotion. Modeling these bidirectional dynamics in 3D is essen…