句子的转移概率矩阵计算

发布于 2025-01-03 00:47:59 字数 49 浏览 0 评论 0原文

我将句子存储为从文档中提取的字符串。我想将标准余弦相似度应用于句子。我该如何去做呢?

I have sentences stored as strings extracted from a document. I want to apply standard cosine similarity to sentences. How do i go about doing it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

作妖 2025-01-10 00:47:59

好吧,您已经在维基百科上有了公式。每个 Ai 都是一个单词,因此首先您需要计算文档中单词的频率。您需要能够创建单词出现的地图。然后,您用单词向量表示每个句子,并且可以应用该公式。

Well you already have the formula on wikipedia. Each of the Ai is a word so first you need to compute the frequency of words in your document . You need to be able to create a map of word occurrences. Then you represent each sentences by a vector of words and you can apply the formula.

梦境 2025-01-10 00:47:59

首先,阅读 Term-Document 矩阵

然后,使用 < 进行余弦计算a href="http://appliedsoftwaredesign.com/cosineSimilarityCalculator.php" rel="nofollow">余弦相似度计算器

如果您对文本挖掘感兴趣,那么请使用 SVD 最后 潜在语义分析

First of all, read about Term-Document matrix

Then, go for the Cosine calculation using Cosine Similarity calculator

If you are interested in text mining, then go for SVD and finally Latent Semantic Analysis

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文