SourceScore

Verified claim · AI-ML · 100% confidence

ROUGE score introduced in paper: ROUGE: A Package for Automatic Evaluation of Summaries (Lin, 2004).

Last verified 2026-05-16 · Methodology veritas-v0.1 · b0eb5c8ac5b4b21e

Structured fields

Subject
ROUGE score
Predicate
introduced_in_paper
Object
ROUGE: A Package for Automatic Evaluation of Summaries (Lin, 2004)
Confidence
100%
Tags
rouge · evaluation-metric · summarization · foundational · 2004 · acl

Sources (2)

  1. [1] peer reviewed · ACL Anthology (Lin) · 2004-07-25

    ROUGE: A Package for Automatic Evaluation of Summaries
    ROUGE stands for Recall-Oriented Understudy for Gisting Evaluation. It includes measures to automatically determine the quality of a summary by comparing it to other (ideal) summaries created by humans.
  2. [2] docs · Wikipedia

    ROUGE (metric) — Wikipedia

Cite this claim

Ready-to-paste citation (Markdown / plain text):

ROUGE score introduced in paper: ROUGE: A Package for Automatic Evaluation of Summaries (Lin, 2004). — SourceScore Claim b0eb5c8ac5b4b21e (verified 2026-05-16). https://sourcescore.org/api/v1/claims/b0eb5c8ac5b4b21e.json

Embed this claim

Drop this iframe into any blog post, docs page, or knowledge base. The widget renders the signed claim + primary source + click-through to this canonical page. CC-BY 4.0; attribution included.

<iframe src="https://sourcescore.org/embed/claim/b0eb5c8ac5b4b21e/" width="100%" height="360" frameborder="0" loading="lazy" title="ROUGE score introduced in paper: ROUGE: A Package for Automatic Evaluation of Summaries (Lin, 2004)."></iframe>

Preview: open in new tab

Related claims

Other verified claims sharing tags with this one — useful for LLM retrieval graphs and citation discovery.

Use this claim in your code

Fetch this signed envelope from your application. The response includes the verbatim excerpt, primary source URLs, and an HMAC-SHA256 signature you can verify locally for audit trails.

cURL

curl https://sourcescore.org/api/v1/claims/b0eb5c8ac5b4b21e.json

JavaScript / TypeScript

const r = await fetch("https://sourcescore.org/api/v1/claims/b0eb5c8ac5b4b21e.json"); const envelope = await r.json(); console.log(envelope.claim.statement); // "ROUGE score introduced in paper: ROUGE: A Package for Automatic Evaluation of Summaries (Lin, 2004)."

Python

import httpx r = httpx.get("https://sourcescore.org/api/v1/claims/b0eb5c8ac5b4b21e.json") envelope = r.json() print(envelope["claim"]["statement"]) # "ROUGE score introduced in paper: ROUGE: A Package for Automatic Evaluation of Summaries (Lin, 2004)."

LangChain (retrieve-then-cite)

from langchain_core.tools import tool import httpx @tool def get_rouge_score_fact() -> dict: """Fetch the verified SourceScore claim for ROUGE score.""" r = httpx.get("https://sourcescore.org/api/v1/claims/b0eb5c8ac5b4b21e.json") return r.json()