Transformer-XL: Attentive Language ModelsBeyond a Fixed-Length Context
- 基本資訊
- 研究目的
- 相關工作
- 方法
- 實驗
- 結論
- Notes
基本資訊
Authors:Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V. Le, Ruslan Salakhutdinov
Year:2019
From:n/a
研究目的
提出一個Transformer-XL模型,可以模組化長距離依賴,解決句子分割的時候不考慮句子上下文(自然邊界)的問題
相關工作
- 語言模組化的提升方向
- 第一種是設計新結構來模組化來更好地encode the context
- 第二種是提升歸一化和優化算法
- 第三種是加速softmax的計算
- 第四種是enriching the outputdistribution family
- 為了在語言模組化中capture long-range context
- context representations are manually defined
- rely ondocument-level topics learned from data
- 改變LSTM
- 更好的初始化
- additional loss signal
- ugmented memory structure
- modify the internal architecture of RNNs to ease the optimization
方法
- Segment-Level Recurrence with StateReuse 這個方法會cache一系列的隐層狀态h,這一系列的大小是預設的M。論文中的實驗部分M等于segment length。
-
Relative Positional Encodings
R ∈ R L m a x × d R\in \mathbb{R}^{L_{max} \times d} R∈RLmax×d,這就是相對位置編碼的矩陣, R i R_i Ri表示相對距離為i
以前沒有information to distinguish the positional difference x r , j x_{r,j} xr,j和 x r + 1 , j x_{r+1,j} xr+1,j
對于絕對位置編碼有三處改變
- R i − j R_{i - j} Ri−j
- u和v是兩個可訓練的變量
- 把 W k W_k Wk拆分成 W k , E 基 于 内 容 的 k e y W_{k,E}基于内容的key Wk,E基于内容的key和 W k , R W_{k,R} Wk,R基于位置的key
綜合公式
實驗
語言模組化
消融實驗
結論
- 提出了一個Transformer-XL,把循環的機制引入Transformer中,更全面地利用上下文資訊,同時大大地加快了推斷的速度
Notes
n/a