タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

iirとalgorithmに関するmogwaingのブックマーク (1)

  • Logarithmic Merging を理解するためのサンプルプログラム

    Logarithmic Merging を理解するためのサンプルプログラム 2008-04-12-1 [Algorithm][IIR] 「Introduction to Information Retrieval」[1]の第四章[2008-04-12-2]の「4.5 Dynamic indexing 」に出てくる Logarithmic Merging のアルゴリズム (Figure 4.7) を説明用に Perl で実装してみました。 といっても、説明用プログラムなので、実際とは異なります。 実際は postings のマージをやるんだけど、term のマージだけ。 indexes と Z と I がどのように変化するのかを追って処理の流れを確認するためだけのものです。 コード: #!/usr/bin/perl use strict; use warnings; my $cnt = 1;

    Logarithmic Merging を理解するためのサンプルプログラム
    mogwaing
    mogwaing 2008/08/11
    one of the way of index construction
  • 1