Skip to content

Commit bd64df9

Browse files
authored
[DOCS] - Fix summarization score expression (#1184)
Fixes conciseness score expression in summarization
1 parent b7c1bdc commit bd64df9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/concepts/metrics/summarization_score.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ We also introduce an option to penalize larger summaries by proving a concisenes
1515
1616
```{math}
1717
:label: conciseness-score
18-
\text{conciseness score} = \frac{\text{length of summary}}{\text{length of context}}
18+
\text{conciseness score} = 1 - \frac{\text{length of summary}}{\text{length of context}}
1919
````
2020
2121
The final summarization score is then calculated as:

0 commit comments

Comments
 (0)