pythonrouge icon indicating copy to clipboard operation
pythonrouge copied to clipboard

Python wrapper for evaluating summarization quality by ROUGE package

Results 5 pythonrouge issues
Sort by recently updated
recently updated
newest added

Hello, It seems that something is going wrong when I want to compute RG-L. When I pass in a list of hypotheses and references to Pythonrouge, it gives me a...

Hi, Thanks for the useful repo! ROUGE metrics have been quite novel for me & I haven't installed the ROUGE toolkit. Does the repo requires ROUGE to calculate such metrics?...

Hi, I'm using this repository to evaluate LEAD-3 on CNN/DailyMail corpus (following https://github.com/tagucci/cnn-dailymail) However, although the results of ROUGE-1 and ROUGE-2 are equal, the ROUGE-L is not consistent with your...

Hi guys, sry, that might be a dumb question, but I'm still new to python an github. When trying the example code, I get the following error: File "C:\Users\...\Anaconda3\lib\tempfile.py", line...

in lines https://github.com/tagucci/pythonrouge/blob/master/pythonrouge/pythonrouge.py#L159-L165, the for loop accesses references before individual summaries. You have: ``` for j, ref in enumerate(self.reference): for k, doc in enumerate(ref): ``` Since, ``` reference = [...