Metryki dla zadań językowych: ROUGE, METEOR, EM

Wprowadzenie do LLM w Pythonie

Jasmin Ludolf

Senior Data Science Content Developer, DataCamp

Zadania i metryki LLM

 

Metryki ewaluacji dla zadań językowych

Wprowadzenie do LLM w Pythonie

Zadania i metryki LLM

 

Metryki ewaluacji dla zadań językowych

Wprowadzenie do LLM w Pythonie

Zadania i metryki LLM

 

Metryki ewaluacji dla zadań językowych

Wprowadzenie do LLM w Pythonie

ROUGE

  • ROUGE: podobieństwo między wygenerowanym podsumowaniem a referencyjnymi
    • Analizuje n-gramy i pokrycia
    • predictions: wyniki LLM
    • references: podsumowania przygotowane przez ludzi

Porównanie zdań "the cat sat on the mat" i "the cat is on the mat"

Wprowadzenie do LLM w Pythonie

ROUGE

rouge = evaluate.load("rouge")
predictions = ["""as we learn more about the frequency and size distribution of 
exoplanets, we are discovering that terrestrial planets are exceedingly common."""]
references = ["""The more we learn about the frequency and size distribution of 
exoplanets, the more confident we are that they are exceedingly common."""]

Wyniki ROUGE:

  • rouge1: pokrycie unigramów
  • rouge2: pokrycie bigramów
  • rougeL: długie wspólne podciągi
Wprowadzenie do LLM w Pythonie

Wyniki ROUGE

Wyniki ROUGE:

  • rouge1: pokrycie unigramów
  • rouge2: pokrycie bigramów
  • rougeL: długie wspólne podciągi

 

  • Wyniki od 0 do 1: wyższy wynik oznacza większe podobieństwo
results = rouge.compute(predictions=predictions,
                         references=references)

print(results)
{'rouge1': 0.7441860465116279, 
'rouge2': 0.4878048780487805, 
'rougeL': 0.6976744186046512, 
'rougeLsum': 0.6976744186046512}
Wprowadzenie do LLM w Pythonie

METEOR

  • METEOR: uwzględnia cechy językowe: odmiany słów, synonimy i szyk zdania
bleu = evaluate.load("bleu")
meteor = evaluate.load("meteor")


prediction = ["He thought it right and necessary to become a knight-errant, roaming the world in armor, seeking adventures and practicing the deeds he had read about in chivalric tales."] reference = ["He believed it was proper and essential to transform into a knight-errant, traveling the world in armor, pursuing adventures, and enacting the heroic deeds he had encountered in tales of chivalry."]
Wprowadzenie do LLM w Pythonie

METEOR

results_bleu = bleu.compute(predictions=pred, references=ref)
results_meteor = meteor.compute(predictions=pred, references=ref)
print("Bleu: ", results_bleu['bleu'])
print("Meteor: ", results_meteor['meteor'])
Bleu:  0.19088841781992524
Meteor:  0.5350702240481536
  • Wynik 0-1: wyższy jest lepszy
Wprowadzenie do LLM w Pythonie

Pytania i odpowiedzi

 

Metryki ewaluacji dla zadań językowych

Wprowadzenie do LLM w Pythonie

Exact Match (EM)

  • Exact Match (EM): 1, gdy wynik LLM dokładnie odpowiada odpowiedzi referencyjnej

 

  • Zazwyczaj stosowany razem z wynikiem F1
from evaluate import load
em_metric = load("exact_match")

exact_match = evaluate.load("exact_match")
predictions = ["The cat sat on the mat.",
               "Theaters are great.", 
               "Like comparing oranges and apples."]
references = ["The cat sat on the mat?", 
              "Theaters are great.", 
              "Like comparing apples and oranges."]

results = exact_match.compute(
  references=references, predictions=predictions)
print(results)
{'exact_match': 0.3333333333333333}
Wprowadzenie do LLM w Pythonie

Czas na ćwiczenia!

Wprowadzenie do LLM w Pythonie

Preparing Video For Download...