Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Summarizer error please help
jonak
Hi All,
I am getting the following error in civiewer while processing one perticular file.
While other files are working.
Error...............................................................................................
1156947099 lvl5 thread0: starting to process project: Summary
1156947099 lvl5 thread0: running project: Summary
1156947099 lvl0 thread0: [SERVER] [DFnrSummarizer.cpp,1046]: Sentences weren"t scored
1156947099 lvl5 thread0: Response:
result
[SERVER] [DFnrSummarizer.cpp,1046]: Sentences weren"t scored
...................................................................................................
Please suggest why this is happening
Find more posts tagged with
Comments
Migrateduser
Please report this to
support@interwoven.com
. It sounds like a bug.
In the mean time, you can use this as a preprocessor to work around the issue:
# Create a user agent object
use open ':utf8';
use Getopt::Long;
use English;
GetOptions ("crackedText=s" => \$crackedText,
"originalText=s" =>\$original
);
undef $INPUT_RECORD_SEPARATOR;
open (INF, "<$crackedText");
$data = ;
close(INF);
if (length($data) < 10) {
open(OUTF, ">$crackedText");
print OUTF "Document does not contain any text\n";
close(OUTF);
}