node-searcher
v0.0.32
Published
TF-IDF Searcher
Downloads
16
Readme
node-searcher
TF-IDF Searcher for Node.js
TF-IDF というアルゴリズムの、Node/Mongoでの実装になります。
|用語|説明| |---|---| |TF|Term Frequency (ある単語の、1文書内での出現確率)| |DF|Document Frequency (ある単語を含む文書の、文書全体での出現確率)| |IDF|Inverse DF (DFの逆数)|
TF は、1文書だけから求めることができる。 DF は、文書全部を調べる必要がある (→ バッチ処理が必要)
以下、モジュール (index.js) での関数とのひもづけ
|関数|内容| |---|---| |parse|TFをもとめる| |indexing|DFをもとめる| |search|実際の検索処理|
Usage
文書を登録した際に、parse を実行する。
cron などで indexing を実行する。
検索時は、search を実行する。
System Requirements
$
Installation command is npm install node-wakame
.
Quick example
var should = require("should")
;
Example 1
Example 2
License
MIT license, go wild.