glove-android
: Using GloVe word embeddings in Android
glove-android
is an Android library that provides an interface for using popular GloVe word embeddings.
Installation
- Download
glove-android.aar
from the latest release. (See Releases) - Move the AAR to
app/libs
. - In module-level
build.gradle
, add the dependency,
dependencies { ... implementation files('libs/glove-android.aar') ... }
Citation
@inproceedings{pennington2014glove,
author = {Jeffrey Pennington and Richard Socher and Christopher D. Manning},
booktitle = {Empirical Methods in Natural Language Processing (EMNLP)},
title = {GloVe: Global Vectors for Word Representation},
year = {2014},
pages = {1532--1543},
url = {http://www.aclweb.org/anthology/D14-1162},
}