Skip to content

Commit

Permalink
[DOCS] - Fix summarization score expression (explodinggradients#1184)
Browse files Browse the repository at this point in the history
Fixes conciseness score expression in summarization
  • Loading branch information
sky-2002 authored Aug 10, 2024
1 parent b7c1bdc commit bd64df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/concepts/metrics/summarization_score.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ We also introduce an option to penalize larger summaries by proving a concisenes

```{math}
:label: conciseness-score
\text{conciseness score} = \frac{\text{length of summary}}{\text{length of context}}
\text{conciseness score} = 1 - \frac{\text{length of summary}}{\text{length of context}}
````

The final summarization score is then calculated as:
Expand Down

0 comments on commit bd64df9

Please sign in to comment.