我安装了 Strawberry Perl 以在 Windows 中运行 rouge 程序。但是当我想运行我的程序时,我收到一条错误消息,您可以在图像上看到:
#!/usr/bin/perl
use Cwd;
$curdir=getcwd;
$ROUGE="c:\ROUGE-1.5.5.pl";
chdir("sample-test");
$cmd="$ROUGE -e c:\data -c 95 -2 -1 -U -r 1000 -n 4 -w 1.2 -a DUC2002- ROUGE.in.26.spl.xml > c:\sample-output\output.out";
print $cmd,"\n";
system($cmd);
chdir($curdir);
错误:在 C:\runROUGE-test1.pl 第 7 行,“$ROUGE”附近的 \o{} 上缺少大括号 执行 C:\runROUGE-test1.pl 由于编译错误而中止。