Time-aware Large Kernel Convolutions

ICML 2020  ·  Vasileios Lioutas, Yuhong Guo ·

To date, most state-of-the-art sequence modeling architectures use attention to build generative models for language based tasks. Some of these models use all the available sequence tokens to generate an attention distribution which results in time complexity of $O(n^2)$. Alternatively, they utilize depthwise convolutions with softmax normalized kernels of size $k$ acting as a limited-window self-attention, resulting in time complexity of $O(k{\cdot}n)$. In this paper, we introduce Time-aware Large Kernel (TaLK) Convolutions, a novel adaptive convolution operation that learns to predict the size of a summation kernel instead of using a fixed-sized kernel matrix. This method yields a time complexity of $O(n)$, effectively making the sequence encoding process linear to the number of tokens. We evaluate the proposed method on large-scale standard machine translation, abstractive summarization and language modeling datasets and show that TaLK Convolutions constitute an efficient improvement over other attention/convolution based approaches.

PDF Abstract ICML 2020 PDF
Task Dataset Model Metric Name Metric Value Global Rank Result Benchmark
Document Summarization CNN / Daily Mail TaLK Convolutions (Deep) ROUGE-1 40.59 # 17
ROUGE-2 18.97 # 15
ROUGE-L 36.81 # 18
Document Summarization CNN / Daily Mail TaLK Convolutions (Standard) ROUGE-1 40.03 # 19
ROUGE-2 18.45 # 18
ROUGE-L 36.13 # 22
Machine Translation IWSLT2014 German-English TaLK Convolutions BLEU score 35.5 # 20
Language Modelling WikiText-103 TaLK Convolutions Test perplexity 23.3 # 51
Number of params 240M # 26
Machine Translation WMT2014 English-French TaLK Convolutions BLEU score 43.2 # 12
Machine Translation WMT2014 English-German TaLK Convolutions BLEU score 29.6 # 20
Number of Params 209M # 8

Methods