Dear Monks,
After starting using Parallel::ForkManager I am getting
Anonymous function called in forbidden scalar context; faulting at c:/
+ActivePerl/site/lib/Lingua/EN/Tagger.pm line 199
in Lingua::EN::Tagger in the following place:
sub add_tags {
my ( $self, $text ) = @_;
return unless $self->_valid_text( $text );
my @text = $self->_clean_text( $text );
my $t = $self->{'current_tag'}; # shortcut
### I am getting this in this line: #######
my ( @tags ) =
map {
$t = $self->_assign_tag( $t, $self->_clean_wor
+d( $_ ))
|| $self->{'unknown_word_tag'} || 'nn'
+;
"<$t>$_</$t>"
} @text;
$self->{'current_tag'} = $t;
$self->_reset;
return join ' ', @tags;
}
I printed out @text and it is fine. It may not be directly related to using Parallel::ForkManager. Data is correctly passed to tagger.
So what can cause this error? Any thoughts?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.