From 83f02a31be29ad54cd5cb83a718409b6d8ea9e2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Nicol=C3=A1s=20Gonz=C3=A1lez?= Date: Sun, 4 Oct 2020 00:36:49 -0300 Subject: [PATCH] fixed small typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 02141b0..a7788e8 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ PageRank is a website page ranking algorithm from Google.
PageRank was originally used to calculate the importance of web pages. The entire www can be seen as a directed graph, and the node is a web page.
This algorithm can caculate all node's importance by their connections.
* My algorithm changed the iterative algorithm to make the algorithm much faster, it costs 10ms per article, on the mean while TextRank4ZH costs 80ms on my data.
-* My algorithm also use word2vec to make the abstract more accurate, but it will cost more time to run the algorithm. Using word2vec costs 40ms per article on the same traning data. +* My algorithm also use word2vec to make the abstract more accurate, but it will cost more time to run the algorithm. Using word2vec costs 40ms per article on the same training data. ## FastTextRank4Sentence ### Introduction