Concatenate word and character embeddings in Keras
Project description
Introduction
Out-of-vocabulary words have bad effects on word embeddings. Sometimes both word and character features are used. The characters in a word are first mapped to character embeddings, then a bidirectional recurrent neural layer is used to encode the character embeddings to a single vector. The final feature of a word is the concatenation of word embedding and encoded character feature.
The repository contains some functions which could be used to generate the first few layers that encodes the features of words.
Install
pip install keras-word-char-embd
Demo
There is a sentiment analysis demo in the demo directory. Run the following commands, then your model should have about 70% accuracy:
cd demo
./get_data.sh
python sentiment_analysis.py
Functions
This section only introduces the basic usages of the functions. For more detailed information please refer to the demo and the doc comments describing the functions in the source code.
get_dicts_generator
The function returns a closure used to generate word and character dictionaries. The closure should be invoked for all the training sentences in order to record the frequencies of each word or character. After that, setting the parameter return_dict=True the dictionaries would be returned.
from keras_wc_embd import get_dicts_generator
sentences = [
['All', 'work', 'and', 'no', 'play'],
['makes', 'Jack', 'a', 'dull', 'boy', '.'],
]
dict_generator = get_dicts_generator(
word_min_freq=2,
char_min_freq=2,
word_ignore_case=False,
char_ignore_case=False,
)
for sentence in sentences:
dict_generator(sentence)
word_dict, char_dict, max_word_len = dict_generator(return_dict=True)
You can generate dictionaries on your own, but make sure index 0 and index for <UNK> are preserved.
get_embedding_layer
Generate the first few layers that encodes words in a sentence:
import keras
from keras_wc_embd import get_embedding_layer
inputs, embd_layer = get_embedding_layer(
word_dict_len=len(word_dict),
char_dict_len=len(char_dict),
max_word_len=max_word_len,
word_embd_dim=300,
char_embd_dim=50,
char_hidden_dim=150,
rnn='lstm',
)
model = keras.models.Model(inputs=inputs, outputs=embd_layer)
model.summary()
The output shape of embd_layer should be (None, None, 600), which represents the batch size, the length of sentence and the length of encoded word feature.
get_batch_input
The function is used to generate the batch inputs for the model.
from keras_wc_embd import get_batch_input
word_embd_input, char_embd_input = get_batch_input(
sentences,
max_word_len=max_word_len,
word_dict=word_dict,
char_dict=char_dict,
)
get_embedding_weights_from_file
A helper function that loads pre-trained embeddings for initializing the weights of the embedding layer. The format of the file should be similar to GloVe.
from keras_wc_embd import get_embedding_layer, get_embedding_weights_from_file
word_embd_weights = get_embedding_weights_from_file(word_dict, 'glove.6B.100d.txt', ignore_case=True)
inputs, embd_layer = get_embedding_layer(
word_dict_len=len(word_dict),
char_dict_len=len(char_dict),
max_word_len=max_word_len,
word_embd_dim=300,
char_embd_dim=50,
char_hidden_dim=150,
word_embd_weights=word_embd_weights,
rnn='lstm',
)
Citation
Several papers have done the same thing. Just choose the one you have seen.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for keras-word-char-embd-0.0.11.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2cb2494b57b0f33a1da902192e267f1ba5654cf6aa7923f9df22d8d8bbc7532 |
|
MD5 | 580fa9f55f1465276f85db5a4f9d7a0c |
|
BLAKE2b-256 | 07cd3cef531631ed3785990c3f8472496cadca1e0389e75505575d63ce145ed5 |