BERTScore

BERTScore is a text generation metric to compute the similarity between a generated text and a reference text using a pre-trained BERT model. Instead of relying on exact token matches, BERTScore leverages contextual embeddings to capture the semantic similarity between the texts. This makes BERTScore robust to paraphrasing and word order variations. BERTScore has been shown to correlate well with human judgments and is widely used in evaluating text generation models.

Let’s consider a use case in natural language processing where BERTScore is used to evaluate the quality of a text generation model. In this case we are imaging that we are developing a automated news summarization system. The goal is to create concise summaries of news articles that accurately capture the key points of the original articles. To evaluate the performance of your summarization system, you need a metric that can compare the generated summaries to human-written summaries. This is where the BERTScore can be used.

 9 from torchmetrics.text import BERTScore, ROUGEScore
10 from transformers import AutoTokenizer, pipeline
11
12 pipe = pipeline("text-generation", model="openai-community/gpt2")
13 tokenizer = AutoTokenizer.from_pretrained("openai-community/gpt2")
/opt/hostedtoolcache/Python/3.9.19/x64/lib/python3.9/site-packages/transformers/tokenization_utils_base.py:1601: FutureWarning: `clean_up_tokenization_spaces` was not set. It will be set to `True` by default. This behavior will be depracted in transformers v4.45, and will be then set to `False` by default. For more details check this issue: https://github.com/huggingface/transformers/issues/31884
  warnings.warn(

Define the prompt and target texts

18 prompt = "Economic recovery is underway with a 3.5% GDP growth and a decrease in unemployment. Experts forecast continued improvement with boosts from consumer spending and government projects. In summary: "
19 target_summary = "the recession is ending."

Generate a sample text using the GPT-2 model

24 generated_summary = pipe(prompt, max_new_tokens=20, do_sample=False, pad_token_id=tokenizer.eos_token_id)[0][
25     "generated_text"
26 ][len(prompt) :].strip()

Calculate the BERTScore of the generated text

31 bertscore = BERTScore(model_name_or_path="roberta-base")
32 score = bertscore(preds=[generated_summary], target=[target_summary])
33
34 print(f"Prompt: {prompt}")
35 print(f"Target summary: {target_summary}")
36 print(f"Generated summary: {generated_summary}")
37 print(f"BERTScore: {score['f1']:.4f}")
Prompt: Economic recovery is underway with a 3.5% GDP growth and a decrease in unemployment. Experts forecast continued improvement with boosts from consumer spending and government projects. In summary:
Target summary: the recession is ending.
Generated summary: The economy is growing at a 3.5% GDP growth and a decrease in unemployment.
BERTScore: 0.9075

In addition, to illustrate BERTScore’s robustness to paraphrasing, let’s consider two candidate texts that are variations of the reference text.

41 reference = "the weather is freezing"
42 candidate_good = "it is cold today"
43 candidate_bad = "it is warm outside"

Here we see that using the BERTScore we are able to differentiate between the candidate texts based on their similarity to the reference text, whereas the ROUGE scores for the same text pairs are identical.

47 rouge = ROUGEScore()
48
49 print(f"ROUGE for candidate_good: {rouge(preds=[candidate_good], target=[reference])['rouge1_fmeasure'].item()}")
50 print(f"ROUGE for candidate_bad: {rouge(preds=[candidate_bad], target=[reference])['rouge1_fmeasure'].item()}")
51 print(f"BERTScore for candidate_good: {bertscore(preds=[candidate_good], target=[reference])['f1'].item():.4f}")
52 print(f"BERTScore for candidate_bad: {bertscore(preds=[candidate_bad], target=[reference])['f1'].item():.4f}")
ROUGE for candidate_good: 0.25
ROUGE for candidate_bad: 0.25
BERTScore for candidate_good: 0.9254
BERTScore for candidate_bad: 0.9145

Total running time of the script: (0 minutes 13.729 seconds)

Gallery generated by Sphinx-Gallery