Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -39,8 +39,9 @@ router.get('/', function(req, res, next) { | ... | @@ -39,8 +39,9 @@ router.get('/', function(req, res, next) { |
39 | }, | 39 | }, |
40 | // 3rd param is the function to call when everything's done | 40 | // 3rd param is the function to call when everything's done |
41 | function(err){ | 41 | function(err){ |
42 | - // All tasks are done now | 42 | + // 그래프를 얻었으니 텍스트랭크를 돌린다. |
43 | var Rank = ranker.getTextRank(graph).probabilityNodes; | 43 | var Rank = ranker.getTextRank(graph).probabilityNodes; |
44 | + // 가장 영향력이 큰 노드 세 개를 취한다. | ||
44 | var selectedIndex = ranker.getSelectedIndex(Rank, 3); | 45 | var selectedIndex = ranker.getSelectedIndex(Rank, 3); |
45 | // 문장의 순서대로 정렬하는 게 문맥상 자연스러운 듯. | 46 | // 문장의 순서대로 정렬하는 게 문맥상 자연스러운 듯. |
46 | selectedIndex.sort(); | 47 | selectedIndex.sort(); | ... | ... |
-
Please register or login to post a comment