Lingua::EN::Segmenter::Evaluator - Evaluate a segmenting method


Lingua-EN-Segmenter documentation  | view source Contained in the Lingua-EN-Segmenter distribution.

Index


NAME

Top

Lingua::EN::Segmenter::Evaluator - Evaluate a segmenting method

SYNOPSIS

Top

    my $tiling_segmenter = Lingua::EN::Segmenter::TextTiling->new();

    foreach (@ARGV) {
        my $input = read_file($_);

        print "\nFile name: $_\n";

        printf "Results from TextTiling algorithm:
      Strict scoring:       %2d%% recall, %2d%% precision
      Relaxed scoring:      %2d%% recall, %2d%% precision
      V. relaxed scoring:   %2d%% recall, %2d%% precision
    ", calc_stats(evaluate_segmenter($tiling_segmenter,20,$input));
    }

DESCRIPTION

Top

See synopsis.

Also check out segmenter.pl in the eg directory.

BUGS

Top

This module only works correctly when the segmenter has a MIN_SEGMENT_SIZE >= 2.

AUTHORS

Top

David James <splice@cpan.org>

SEE ALSO

Top

Lingua::EN::Segmenter::TextTiling, Lingua::EN::Segmenter::Evaluator, http://www.cs.toronto.edu/~james


Lingua-EN-Segmenter documentation  | view source Contained in the Lingua-EN-Segmenter distribution.