Boostrap similarity vector
bootstrap_similarity(
target_embeddings = NULL,
pre_trained = NULL,
candidates = NULL,
norm = NULL
)
vector(s) of cosine similarities between alc embedding and nearest neighbor candidates
the target embeddings (embeddings of context)
a V x D matrix of numeric values - pretrained embeddings with V = size of vocabulary and D = embedding dimensions
character vector defining the candidates for nearest neighbors - e.g. output from get_local_vocab
character = c("l2", "none") - set to 'l2' for cosine similarity and to 'none' for inner product (see ?sim2 in text2vec)