Spaces:
Running
Running
paramname
Browse files- harim_plus.py +8 -3
harim_plus.py
CHANGED
|
@@ -30,11 +30,16 @@ _CITATION = """\
|
|
| 30 |
}
|
| 31 |
"""
|
| 32 |
|
| 33 |
-
_DESCRIPTION = f"""HaRiM
|
| 34 |
Summarization model inside the HaRiM+ will read and evaluate how good the quality of a summary given the paired article.
|
| 35 |
It will work great for ranking the summary-article pairs according to its quality.
|
| 36 |
|
| 37 |
HaRiM+ is proved effective for benchmarking summarization systems (system-level performance) as well as ranking the article-summary pairs (segment-level performance) in comprehensive aspect such as factuality, consistency, coherency, fluency, and relevance. For details, refer to our [paper]({PAPER_URL}) published in AACL2022.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
"""
|
| 39 |
|
| 40 |
_KWARGS_DESCRIPTION = """
|
|
@@ -89,8 +94,8 @@ class Harimplus(evaluate.Metric):
|
|
| 89 |
inputs_description=_KWARGS_DESCRIPTION,
|
| 90 |
features=datasets.Features(
|
| 91 |
{
|
| 92 |
-
"predictions
|
| 93 |
-
"references
|
| 94 |
}
|
| 95 |
),
|
| 96 |
codebase_urls=[CODEBASE_URL],
|
|
|
|
| 30 |
}
|
| 31 |
"""
|
| 32 |
|
| 33 |
+
_DESCRIPTION = f"""**HaRiM+** is a reference-less evaluation metric (i.e. requires only article-summary pair, no reference summary) for summarization which hurls the power of summarization model.
|
| 34 |
Summarization model inside the HaRiM+ will read and evaluate how good the quality of a summary given the paired article.
|
| 35 |
It will work great for ranking the summary-article pairs according to its quality.
|
| 36 |
|
| 37 |
HaRiM+ is proved effective for benchmarking summarization systems (system-level performance) as well as ranking the article-summary pairs (segment-level performance) in comprehensive aspect such as factuality, consistency, coherency, fluency, and relevance. For details, refer to our [paper]({PAPER_URL}) published in AACL2022.
|
| 38 |
+
|
| 39 |
+
NOTE that for HaRiM+...
|
| 40 |
+
* predictions = summaries (List[str])
|
| 41 |
+
* references = articles (List[str])
|
| 42 |
+
|
| 43 |
"""
|
| 44 |
|
| 45 |
_KWARGS_DESCRIPTION = """
|
|
|
|
| 94 |
inputs_description=_KWARGS_DESCRIPTION,
|
| 95 |
features=datasets.Features(
|
| 96 |
{
|
| 97 |
+
"predictions": datasets.Value("string", id="sequence"),
|
| 98 |
+
"references": datasets.Value("string", id="sequence"),
|
| 99 |
}
|
| 100 |
),
|
| 101 |
codebase_urls=[CODEBASE_URL],
|