0

現在、pyrouge をインストールしようとしていますが、次のエラーが表示されます。

======================================================================
ERROR: test_options (pyrouge.tests.Rouge155_test.PyrougeTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/pyrouge/tests/Rouge155_test.py", line 218, in test_options
    pyrouge_output = check_output_clean(pyrouge_command)
  File "/usr/local/lib/python2.7/dist-packages/pyrouge/tests/Rouge155_test.py", line 17, in <lambda>
    check_output_clean = lambda c: check_output(c).decode("UTF-8").strip()
  File "/usr/lib/python2.7/subprocess.py", line 566, in check_output
    process = Popen(stdout=PIPE, *popenargs, **kwargs)
  File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)
  File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

======================================================================
ERROR: test_write_config (pyrouge.tests.Rouge155_test.PyrougeTest)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/pyrouge/tests/Rouge155_test.py", line 197, in test_write_config
    check_output(command.split())
  File "/usr/lib/python2.7/subprocess.py", line 566, in check_output
    process = Popen(stdout=PIPE, *popenargs, **kwargs)
  File "/usr/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)
  File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child
    raise child_exception
OSError: [Errno 2] No such file or directory

----------------------------------------------------------------------

私は Ubuntu を実行しており、シナプス パッケージ インストーラーを使用して XML::DOM をインストールしました。

さらに、pyrouge_set_rouge_path.py コマンドを実行し、ROUGE ディレクトリに送りました。すべてのインストールでsudoを使用しました。

4

1 に答える 1

1

Rouge155_test.py ファイルで、次の 2 行を変更する必要があります。

変更

"pyrouge_evaluate_plain_text_files.py -m {} -s {} -sfp "

"pyrouge_evaluate_plain_text_files -m {} -s {} -sfp "

そして、修正

"pyrouge_write_config_file.py -m {m} -s {s} " 

"pyrouge_write_config_file -m {m} -s {s} " 
于 2016-12-29T15:13:07.053 に答える