gpt4 book ai didi

perl - 如何解决 perl 程序将其输出写入文件?

转载 作者:行者123 更新时间:2023-12-04 06:01:49 27 4
gpt4 key购买 nike

我想使用 ROUGE 分析我的摘要。到目前为止,我已经编写了一个 perl 脚本来在命令行上运行 ROUGE,这是我到目前为止所拥有的:

#!/usr/bin/perl

use warnings;
use Cwd;
$curdir=getcwd;
$ROUGE="/ROUGE-1.5.5.pl";
chdir("sample-test");
$cmd="$ROUGE -e /data -c 95 -2 -1 -U -r 1000 -n 4 -w 1.2 -a DUC2002ROUGE.in.26.spl.xm> /sample-output/salam.out";
print $cmd,"\n";
system($cmd);
chdir($curdir);

但是我收到这个错误:

the system can't find the specified path

最佳答案

the system can't find the specified path



您的脚本路径错误, /ROUGE-1.5.5.pl不存在,因此 shell 被 system() 调用正在提示。

关于perl - 如何解决 perl 程序将其输出写入文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19345758/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com