写在前面的话,既然是学习版本,那么就不是一个好用的工程实现版本,整套代码全部使用List进行匹配效率可想而知。

【原文转自】:http://computergodzilla.blogspot.com/2013/07/how-to-calculate-tf-idf-of-document.html,修改了其中一些bug。

P.S:如果不是被迫需要语言统一,尽量不要使用此工程计算TF-IDF,计算2W条短文本,Matlab实现仅是几秒之间,此Java工程要计算良久。。半个小时?甚至更久,因此此程序作为一个学习版本,并不适用于工程实现。。工程试验版本

For beginners doing a project in text mining aches them a lot by various term like :

  • TF-IDF
  • COSINE SIMILARITY
  • CLUSTERING
  • DOCUMENT VECTORS

In my earlier post I showed you guys what is Cosine Similarity. I will not talk about Cosine Similarity in this post but rather I will show a nice little code to calculate Cosine Similarity in java.

Many of you must be familiar with Tf-Idf(Term frequency-Inverse Document Frequency).
I will enlighten them in brief.

Term Frequency:
Suppose for a document “Tf-Idf Brief Introduction” there are overall 60000 words and a word Term-Frequency occurs 60times.
Then , mathematically, its Term Frequency, TF = 60/60000 =0.001.

Inverse Document Frequency:
Suppose one bought Harry-Potter series, all series. Suppose there are 7 series and a word “AbraKaDabra” comes in 2 of the series.
Then, mathematically, its Inverse-Document Frequency , IDF = 1 +
log(7/2) = …….(calculated it guys, don’t be lazy, I am lazy not you
guys.)

And Finally, TFIDF = TF * IDF;

By mathematically I assume you now know its meaning physically.

Document Vector:
There are various ways to calculate document vectors. I am just giving
you an example. Suppose If I calculate all the term’s TF-IDF of a
document A and store them in an array(list, matrix … in any ordered way,
.. you guys are genius you know how to create a vector. ) then I get an
Document Vector of TF-IDF scores of document A.

The class shown below calculates the Term Frequency(TF) and Inverse Document Frequency(IDF).

  1. //TfIdf.java
  2. package com.computergodzilla.tfidf;
  3. import java.util.List;
  4. /**
  5. * Class to calculate TfIdf of term.
  6. * @author Mubin Shrestha
  7. */
  8. public class TfIdf {
  9. /**
  10. * Calculates the tf of term termToCheck
  11. * @param totalterms : Array of all the words under processing document
  12. * @param termToCheck : term of which tf is to be calculated.
  13. * @return tf(term frequency) of term termToCheck
  14. */
  15. public double tfCalculator(String[] totalterms, String termToCheck) {
  16. double count = 0;  //to count the overall occurrence of the term termToCheck
  17. for (String s : totalterms) {
  18. if (s.equalsIgnoreCase(termToCheck)) {
  19. count++;
  20. }
  21. }
  22. return count / totalterms.length;
  23. }
  24. /**
  25. * Calculates idf of term termToCheck
  26. * @param allTerms : all the terms of all the documents
  27. * @param termToCheck
  28. * @return idf(inverse document frequency) score
  29. */
  30. public double idfCalculator(List<String[]> allTerms, String termToCheck) {
  31. double count = 0;
  32. for (String[] ss : allTerms) {
  33. for (String s : ss) {
  34. if (s.equalsIgnoreCase(termToCheck)) {
  35. count++;
  36. break;
  37. }
  38. }
  39. }
  40. return 1 + Math.log(allTerms.size() / count);
  41. }
  42. }

The class shown below parsed the text documents and split them into
tokens. This class will communicate with TfIdf.java class to calculated
TfIdf. It also calls CosineSimilarity.java class to calculated the
similarity between the passed documents.

  1. //DocumentParser.java
  2. package com.computergodzilla.tfidf;
  3. import java.io.BufferedReader;
  4. import java.io.File;
  5. import java.io.FileNotFoundException;
  6. import java.io.FileReader;
  7. import java.io.IOException;
  8. import java.util.ArrayList;
  9. import java.util.List;
  10. /**
  11. * Class to read documents
  12. *
  13. * @author Mubin Shrestha
  14. */
  15. public class DocumentParser {
  16. //This variable will hold all terms of each document in an array.
  17. private List<String[]> termsDocsArray = new ArrayList<String[]>();
  18. private List<String> allTerms = new ArrayList<String>(); //to hold all terms
  19. private List<double[]> tfidfDocsVector = new ArrayList<double[]>();
  20. /**
  21. * Method to read files and store in array.
  22. * @param filePath : source file path
  23. * @throws FileNotFoundException
  24. * @throws IOException
  25. */
  26. public void parseFiles(String filePath) throws FileNotFoundException, IOException {
  27. File[] allfiles = new File(filePath).listFiles();
  28. BufferedReader in = null;
  29. for (File f : allfiles) {
  30. if (f.getName().endsWith(“.txt”)) {
  31. in = new BufferedReader(new FileReader(f));
  32. StringBuilder sb = new StringBuilder();
  33. String s = null;
  34. while ((s = in.readLine()) != null) {
  35. sb.append(s);
  36. }
  37. String[] tokenizedTerms = sb.toString().replaceAll(“[\\W&&[^\\s]]”, “”).split(“\\W+”);   //to get individual terms
  38. for (String term : tokenizedTerms) {
  39. if (!allTerms.contains(term)) {  //avoid duplicate entry
  40. allTerms.add(term);
  41. }
  42. }
  43. termsDocsArray.add(tokenizedTerms);
  44. }
  45. }
  46. }
  47. /**
  48. * Method to create termVector according to its tfidf score.
  49. */
  50. public void tfIdfCalculator() {
  51. double tf; //term frequency
  52. double idf; //inverse document frequency
  53. double tfidf; //term requency inverse document frequency
  54. for (String[] docTermsArray : termsDocsArray) {
  55. double[] tfidfvectors = new double[allTerms.size()];
  56. int count = 0;
  57. for (String terms : allTerms) {
  58. tf = new TfIdf().tfCalculator(docTermsArray, terms);
  59. idf = new TfIdf().idfCalculator(termsDocsArray, terms);
  60. tfidf = tf * idf;
  61. tfidfvectors[count] = tfidf;
  62. count++;
  63. }
  64. tfidfDocsVector.add(tfidfvectors);  //storing document vectors;
  65. }
  66. }
  67. /**
  68. * Method to calculate cosine similarity between all the documents.
  69. */
  70. public void getCosineSimilarity() {
  71. for (int i = 0; i < tfidfDocsVector.size(); i++) {
  72. for (int j = 0; j < tfidfDocsVector.size(); j++) {
  73. System.out.println(“between ” + i + “ and ” + j + “  =  ”
  74. + new CosineSimilarity().cosineSimilarity
  75. (
  76. tfidfDocsVector.get(i),
  77. tfidfDocsVector.get(j)
  78. )
  79. );
  80. }
  81. }
  82. }
  83. }

This is the class that calculates Cosine Similarity:

  1. //CosineSimilarity.java
  2. /*
  3. * To change this template, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package com.computergodzilla.tfidf;
  7. /**
  8. * Cosine similarity calculator class
  9. * @author Mubin Shrestha
  10. */
  11. public class CosineSimilarity {
  12. /**
  13. * Method to calculate cosine similarity between two documents.
  14. * @param docVector1 : document vector 1 (a)
  15. * @param docVector2 : document vector 2 (b)
  16. * @return
  17. */
  18. public double cosineSimilarity(double[] docVector1, double[] docVector2) {
  19. double dotProduct = 0.0;
  20. double magnitude1 = 0.0;
  21. double magnitude2 = 0.0;
  22. double cosineSimilarity = 0.0;
  23. for (int i = 0; i < docVector1.length; i++) //docVector1 and docVector2 must be of same length
  24. {
  25. dotProduct += docVector1[i] * docVector2[i];  //a.b
  26. magnitude1 += Math.pow(docVector1[i], 2);  //(a^2)
  27. magnitude2 += Math.pow(docVector2[i], 2); //(b^2)
  28. }
  29. magnitude1 = Math.sqrt(magnitude1);//sqrt(a^2)
  30. magnitude2 = Math.sqrt(magnitude2);//sqrt(b^2)
  31. if (magnitude1 != 0.0 | magnitude2 != 0.0) {
  32. cosineSimilarity = dotProduct / (magnitude1 * magnitude2);
  33. } else {
  34. return 0.0;
  35. }
  36. return cosineSimilarity;
  37. }
  38. }

Here’s the main class to run the code:

  1. //TfIdfMain.java
  2. package com.computergodzilla.tfidf;
  3. import java.io.FileNotFoundException;
  4. import java.io.IOException;
  5. /**
  6. *
  7. * @author Mubin Shrestha
  8. */
  9. public class TfIdfMain {
  10. /**
  11. * Main method
  12. * @param args
  13. * @throws FileNotFoundException
  14. * @throws IOException
  15. */
  16. public static void main(String args[]) throws FileNotFoundException, IOException
  17. {
  18. DocumentParser dp = new DocumentParser();
  19. dp.parseFiles(“D:\\FolderToCalculateCosineSimilarityOf”); // give the location of source file
  20. dp.tfIdfCalculator(); //calculates tfidf
  21. dp.getCosineSimilarity(); //calculates cosine similarity
  22. }
  23. }

You can also download the whole source code from here: Download. (Google Drive)

Overall what I did is, I first calculate the TfIdf matrix of all the
documents and then document vectors of each documents. Then I used those
document vectors to calculate cosine similarity.

You think clarification is not enough. Hit me..
Happy Text-Mining!!

from: http://jacoxu.com/?p=1619

利用JAVA计算TFIDF和Cosine相似度-学习版本的更多相关文章

  1. 利用sklearn进行tfidf计算

    转自:http://blog.csdn.net/liuxuejiang158blog/article/details/31360765?utm_source=tuicool 在文本处理中,TF-IDF ...

  2. 利用sklearn计算文本相似性

    利用sklearn计算文本相似性,并将文本之间的相似度矩阵保存到文件当中.这里提取文本TF-IDF特征值进行文本的相似性计算. #!/usr/bin/python # -*- coding: utf- ...

  3. Java计算计算活了多少天

    Java计算计算活了多少天 思路: 1.输入你的出现日期: 2.利用日期转换,将字符串转换成date类型 3.然后将date时间换成毫秒时间 4.然后获取当前毫秒时间: 5.最后计算出来到这个时间多少 ...

  4. 使用不同的方法计算TF-IDF值

    摘要 这篇文章主要介绍了计算TF-IDF的不同方法实现,主要有三种方法: 用gensim库来计算tfidf值 用sklearn库来计算tfidf值 用python手动实现tfidf的计算 总结 之所以 ...

  5. 第二次作业利用java语言编写计算器进行四则运算

    随着第一次作业的完成,助教 牛老师又布置了第二次作业:用java语言编写一个程序然后进行四则运算用户用键盘输入一个字符来结束程序显示统计结果.一开始看到这个题目我也着实吓了一跳 因为不知道如何下手而且 ...

  6. SparkGraphx计算指定节点的N度关系节点

    直接上代码: package horizon.graphx.util import java.security.InvalidParameterException import horizon.gra ...

  7. 初学Hadoop之计算TF-IDF值

    1.词频 TF(term frequency)词频,就是该分词在该文档中出现的频率,算法是:(该分词在该文档出现的次数)/(该文档分词的总数),这个值越大表示这个词越重要,即权重就越大. 例如:一篇文 ...

  8. 基于熵的方法计算query与docs相似度

    一.简单总结 其实相似度计算方法也是老生常谈,比如常用的有: 1.常规方法 a.编辑距离 b.Jaccard c.余弦距离 d.曼哈顿距离 e.欧氏距离 f.皮尔逊相关系数 2.语义方法 a.LSA ...

  9. 利用Java动态生成 PDF 文档

    利用Java动态生成 PDF 文档,则需要开源的API.首先我们先想象需求,在企业应用中,客户会提出一些复杂的需求,比如会针对具体的业务,构建比较典型的具备文档性质的内容,一般会导出PDF进行存档.那 ...

随机推荐

  1. 达内培训:php在线端口扫描器

    达内培训:php在线端口扫描器 [来源] 达内    [编辑] 达内   [时间]2012-12-21 这个扫描器很简单.就是用了一个数组来定义端口的相关信息,原理就是用fsockopen函数连接,如 ...

  2. 如何删除docker images/containers

    docker images往往不知不觉就占满了硬盘空间,为了清理冗余的image,可采用以下方法: 1.进入root权限 sudo su 2.停止所有的container,这样才能够删除其中的imag ...

  3. UCenter 通信失败 和 无法同步登陆的调试方法

    1. 看请求 2./uc_server/control/admin/app.php echo "\$url = $url <br />\n \$status = $status& ...

  4. 不绑架输入--document.getElementById("linkage_"+id_type+"_echo").value="";--联动

    <script> function w_linkage(id_type) { var selected = $("#linkage_"+id_type+"_t ...

  5. DML以及DQL的使用方法

    DML:数据操作语言 1.插入insert into 单行插入:insert into 表名 (字段名, 字段名,...) values (值, 值, ...) 注:值列表要和字段列表相匹配. ins ...

  6. Lazarus中Base64的操作

    在字符串处理中,我们经常需要对文件编码然后再进行传输,通常会使用base64编码,在FreePascal中默认集成了这个单元,我们来介绍如何使用: 首先需要在引用单元的时候使用: use base64 ...

  7. 【转】Warning: mysql_connect(): mysqlnd cannot connect to MySQL 4.1+ using the old insecure authenticat

    Warning: mysql_connect(): mysqlnd cannot connect to MySQL 4.1+ using the old insecure authenticat 当m ...

  8. oracle communities

    应该常来这看看 https://www.oracle.com/communities/index.html

  9. qTip2 精致的jQuery提示信息插件

    qTip2 精致的jQuery提示信息插件    出处:http://www.cnblogs.com/lwme/archive/2012/02/16/qtip2-jquery-plugin.html ...

  10. 冒泡排序与插入排序(C#实现)

    本人应届生面试,发现被问了2次关于排序的算法.当时竟然没写出来!!!好吧,可能是用库函数多了,很久没搞算法了,在纸上写没感觉吧. 今天花了1个多小时写了下冒泡排序与插入排序(C#实现),并写了注释和小 ...