
52k English-language GloVe word embeddings trained on metal lyrics
vecs_glove300_metal_lyrics.RdA matrix of 52,885 word vectors (rows) and 300 dimensions (columns). GloVe embeddings trained on a term-co-occurrence matrix (TCM) built from the prepped metal lyrics corpus with a context window. Each row is a word from the metal lyrics vocabulary.
Examples
if (FALSE) { # \dontrun{
## download the model (once per machine)
download_pretrained("vecs_glove300_metal_lyrics")
## load the model each session
wv <- load_pretrained("vecs_glove300_metal_lyrics")
## check dims
dim(wv) == c(52885, 300)
} # }