Skip to main content

Full Python ROUGE Score Implementation (not a wrapper)

Project description

Rouge

A full Python librarie for the ROUGE metric (paper).

Disclaimer

This implementation is independant from the "official" ROUGE script (aka. ROUGE-155).
Results may be slighlty different, see discussions in #2.

Quickstart

Clone & Install

git clone https://github.com/pltrdy/rouge
cd rouge
python setup.py install
# or
pip install -U .

or from pip:

pip install rouge

Use it from the shell (JSON Output)

$rouge -h
usage: rouge [-h] [-f] [-a] hypothesis reference

Rouge Metric Calculator

positional arguments:
  hypothesis  Text of file path
  reference   Text or file path

optional arguments:
  -h, --help  show this help message and exit
  -f, --file  File mode
  -a, --avg   Average mode

e.g.

# Single Sentence
rouge "transcript is a written version of each day 's cnn student" \
      "this page includes the show transcript use the transcript to help students with"

# Scoring using two files (line by line)
rouge -f ./tests/hyp.txt ./ref.txt

# Avg scoring - 2 files
rouge -f ./tests/hyp.txt ./ref.txt --avg

As a library

Score 1 sentence
from rouge import Rouge 

hypothesis = "the #### transcript is a written version of each day 's cnn student news program use this transcript to he    lp students with reading comprehension and vocabulary use the weekly newsquiz to test your knowledge of storie s you     saw on cnn student news"

reference = "this page includes the show transcript use the transcript to help students with reading comprehension and     vocabulary at the bottom of the page , comment for a chance to be mentioned on cnn student news . you must be a teac    her or a student age # # or older to request a mention on the cnn student news roll call . the weekly newsquiz tests     students ' knowledge of even ts in the news"

rouge = Rouge()
scores = rouge.get_scores(hypothesis, reference)

Output:

[{"rouge-1": {"f": 0.49411764217577864,
              "p": 0.5833333333333334,
              "r": 0.42857142857142855},
  "rouge-2": {"f": 0.23423422957552154,
              "p": 0.3170731707317073,
              "r": 0.18571428571428572},
  "rouge-l": {"f": 0.42751590030718895,
              "p": 0.5277777777777778,
              "r": 0.3877551020408163}}]
Score multiple sentences
import json
from rouge import Rouge

# Load some sentences
with open('./tests/data.json') as f:
  data = json.load(f)

hyps, refs = map(list, zip(*[[d['hyp'], d['ref']] for d in data]))
rouge = Rouge()
scores = rouge.get_scores(hyps, refs)
# or
scores = rouge.get_scores(hyps, refs, avg=True)

Output (avg=False): a list of n dicts:

{"rouge-1": {"f": _, "p": _, "r": _}, "rouge-2" : { .. }, "rouge-3": { ... }}

Output (avg=True): a single dict with average values:

{"rouge-1": {"f": _, "p": _, "r": _}, "rouge-2" : { ..     }, "rouge-3": { ... }}
Score two files (line by line)

Given two files hyp_path, ref_path, with the same number (n) of lines, calculate score for each of this lines, or, the average over the whole file.

from rouge import FilesRouge

files_rouge = FilesRouge()
scores = files_rouge.get_scores(hyp_path, ref_path)
# or
scores = files_rouge.get_scores(hyp_path, ref_path, avg=True)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rouge-1.0.0rc0.tar.gz (13.1 kB view details)

Uploaded Source

Built Distribution

rouge-1.0.0rc0-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file rouge-1.0.0rc0.tar.gz.

File metadata

  • Download URL: rouge-1.0.0rc0.tar.gz
  • Upload date:
  • Size: 13.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.4.2 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.6.9

File hashes

Hashes for rouge-1.0.0rc0.tar.gz
Algorithm Hash digest
SHA256 81d48eacec819c258649078f0f42d64e5834b77e3f93f694bb455d97618b22a8
MD5 731488b0eb47eb1aa797932ccd057eab
BLAKE2b-256 d74368854c1e89e7002dd9ba17dbcbe95d5caef88f472f5639026f9dbeff4ae0

See more details on using hashes here.

File details

Details for the file rouge-1.0.0rc0-py3-none-any.whl.

File metadata

  • Download URL: rouge-1.0.0rc0-py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.4.2 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.6.9

File hashes

Hashes for rouge-1.0.0rc0-py3-none-any.whl
Algorithm Hash digest
SHA256 80d4d7ef4643b870b7c3409fa95cf5f3c50827634ebcba19a9961f128cd1b27a
MD5 eafc5827202bc7c99bfa5218fa0a3394
BLAKE2b-256 fe3dde9402d157b639a21f02ef06ee1d8930779f9bb4681d5e2c5cac4d48e066

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page