Learn R Programming

word2vec (version 0.4.0)

as.matrix.word2vec: Get the word vectors of a word2vec model

Description

Get the word vectors of a word2vec model as a dense matrix.

Usage

# S3 method for word2vec
as.matrix(x, encoding = "UTF-8", ...)

Value

a matrix with the word vectors where the rownames are the words from the model vocabulary

Arguments

x

a word2vec model as returned by word2vec or read.word2vec

encoding

set the encoding of the row names to the specified encoding. Defaults to 'UTF-8'.

...

not used

See Also

word2vec, read.word2vec

Examples

Run this code
path  <- system.file(package = "word2vec", "models", "example.bin")
model <- read.word2vec(path)

embedding <- as.matrix(model)

Run the code above in your browser using DataLab