Nothing
# we're dropping these tests because we're dropping text2vec::psim2
test_cosine_simi = function() {
data('m_psych_embeds')
# vector to vector
myres = opticskxi::cosine_simi(m_psych_embeds[1, , drop = FALSE],
m_psych_embeds[2, , drop = FALSE])
#thebench = text2vec::psim2(m_psych_embeds[1, , drop = FALSE],
# m_psych_embeds[2, , drop = FALSE])
#expect_equal(as.numeric(myres), as.numeric(thebench))
expect_true(TRUE)
# vector to matrix
#thebench = text2vec::psim2(rbind(m_psych_embeds[1, , drop = FALSE],
# m_psych_embeds[2, , drop = FALSE]),
# m_psych_embeds[3:4, , drop = FALSE])
myres = opticskxi::cosine_simi(m_psych_embeds[1, , drop = FALSE], m_psych_embeds[3:4, ])
#expect_equal(as.numeric(myres[1]), as.numeric(thebench[1]))
expect_true(TRUE)
myres = opticskxi::cosine_simi(m_psych_embeds[2, , drop = FALSE], m_psych_embeds[3:4, ])
#expect_equal(as.numeric(myres[2]), as.numeric(thebench[2]))
expect_true(TRUE)
}
test_that('cosine_simi', test_cosine_simi())
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.