Return the word vector length and the number of words.

size(model)

# S3 method for wordvectors
size(model)

Arguments

model

A model as returned by word_vectors.

Examples

# NOT RUN {
# setup word2vec Julia dependency
setup_word2vec()

# sample corpus
data("macbeth", package = "word2vec.r")

# train model
model_path <- word2vec(macbeth)

# get word vectors
model <- word_vectors(model_path)

# check size of model
size(model)
# }