Gated Word-Character Recurrent Language Model
Yasumasa Miyamoto, Kyunghyun Cho

TL;DR
This paper presents a novel recurrent neural network language model that combines character-level and word-level inputs through a gating mechanism, improving performance on rare and out-of-vocabulary words.
Contribution
The introduction of a gating mechanism that adaptively combines character and word representations in an LSTM language model is a new approach.
Findings
Outperforms traditional word-level models on multiple English corpora.
Effectively handles rare and OOV words using character-level inputs.
Gating mechanism improves overall language modeling accuracy.
Abstract
We introduce a recurrent neural network language model (RNN-LM) with long short-term memory (LSTM) units that utilizes both character-level and word-level inputs. Our model has a gate that adaptively finds the optimal mixture of the character-level and word-level inputs. The gate creates the final vector representation of a word by combining two distinct representations of the word. The character-level inputs are converted into vector representations of words using a bidirectional LSTM. The word-level inputs are projected into another high-dimensional space by a word lookup table. The final vector representations of words are used in the LSTM language model which predicts the next word given all the preceding words. Our model with the gating mechanism effectively utilizes the character-level inputs for rare and out-of-vocabulary words and outperforms word-level language models on…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
- nyu-dl/gated_word_char_rlmnoneOfficial
- MindSpore-scientific-2/code-12/tree/main/gated-word-character-recurrent-language-modelmindspore
- MindCode-4/code-7/tree/main/gated-word-character-recurrent-language-modelmindspore
- arshadshk/GatedWord-Character_Recurrent_Language_Modelpytorch
- MindCode-4/code-12/tree/main/gated-word-character-recurrent-language-modelmindspore
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsTopic Modeling · Natural Language Processing Techniques · Speech Recognition and Synthesis
MethodsSigmoid Activation · Tanh Activation · Long Short-Term Memory
