The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Lingua::ZH::Summary - Extract summary from Chinese text

VERSION

Version 0.03

SYNOPSIS

Given a Chinese text, it will return the summary. Unlike Lingua-ZH-Summarize, this module depends on term frequency instead of knowledge. If knowledge analysis is required, use Lingua::ZH::Summarize instead.

Perhaps a little code snippet.

    use Lingua::ZH::Summary;

    my $foo = Lingua::ZH::Summary->new();
    my $summary = $foo->summary(<FH> or $text);
    ...

METHODS

new

FUNCTIONS

summary

SEE ALSO

Lingua::ZH::Toke, Lingua::ZH::Wrap, Lingua::EN::Summary

AUTHOR

Cheng-Lung Sung, <clsung at cpan.org>

BUGS

Please report any bugs or feature requests to bug-lingua-zh-summary at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Lingua-ZH-Summary. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Lingua::ZH::Summary

You can also look for information at:

ACKNOWLEDGEMENTS

Reference to the Lingua::ZH::Summarize module from Audrey Tang <cpan@audreyt.org>.

COPYRIGHT & LICENSE

Copyright 2007-2009 Cheng-Lung Sung, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.