View source: R/lsh_candidates.R
lsh_candidates | R Documentation |
Given a data frame of LSH buckets returned from lsh
, this
function returns the potential candidates.
lsh_candidates(buckets)
buckets |
A data frame returned from |
A data frame of candidate pairs.
dir <- system.file("extdata/legal", package = "textreuse")
minhash <- minhash_generator(200, seed = 234)
corpus <- TextReuseCorpus(dir = dir,
tokenizer = tokenize_ngrams, n = 5,
minhash_func = minhash)
buckets <- lsh(corpus, bands = 50)
lsh_candidates(buckets)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.