R/sem_nearest_neighbors.R
sem_nearest_neighbors.Rd
This function identifies the nearest neighbors of a given term or vector in a matrix based on cosine similarity.
sem_nearest_neighbors(x, matrix, n = 10)
A data frame with the ranks, terms, and their cosine similarity scores.
if (FALSE) { # \dontrun{
api_token <- ''
matrix <- api_huggingface_embeddings(tif,
text_hierarchy = c('doc_id', 'sentence_id'),
api_token = api_token)
query <- api_huggingface_embeddings(query = "Where's the party at?",
api_token = api_token)
neighbors <- sem_nearest_neighbors(x = query, matrix = matrix)
} # }