Zero-shot класифікація та QNLI

Natural Language Processing (NLP) in Python

Fouad Trad

Machine Learning Engineer

Zero-shot класифікація

  • Дозволяє моделі призначати тексти міткам, яких вона раніше не бачила
  • Використовує передбачення природною мовою для отримання результату
  • Корисно для:
    • Тегування контенту
    • Підтримки користувачів
    • Фільтрування новинних статей

Зображення: текст «The national football team won the cup yesterday» треба класифікувати за трьома категоріями: sports, technology, health.

Natural Language Processing (NLP) in Python

Конвеєр zero-shot класифікації

from transformers import pipeline

zero_shot_classifier = pipeline(
task="zero-shot-classification",
model="MoritzLaurer/DeBERTa-v3-base-mnli-fever-anli" )
text = "The national football team won the cup yesterday."
candidate_labels = ["sports", "technology", "health"]
result = zero_shot_classifier(text, candidate_labels)
print(result)
{'sequence': 'The national football team won the cup yesterday.',
 'labels': ['sports', 'technology', 'health'], 
 'scores': [0.9948731064796448, 0.0029330444522202015, 0.002193822991102934]}
Natural Language Processing (NLP) in Python

Question Natural Language Inference (QNLI)

  • Визначає, чи можна знайти відповідь на запитання в уривку тексту
  • Корисно для:
    • Пошуку в документах
    • Чат-ботів
    • Пошуку інформації

Зображення показує, що QNLI отримує уривок і запитання та повертає оцінку.

Natural Language Processing (NLP) in Python

Конвеєр QNLI

from transformers import pipeline

qnli_pipeline = pipeline( task="text-classification", model="cross-encoder/qnli-electra-base" )
passage = "Penguins are found primarily in the Southern Hemisphere."
question = "Where do penguins live?"
result = qnli_pipeline({"text": question, "text_pair": passage})
print(result)
{'label': 'LABEL_0', 'score': 0.9951545000076294}
Natural Language Processing (NLP) in Python

Конвеєр QNLI

from transformers import pipeline
qnli_pipeline = pipeline(
    task="text-classification", 
    model="cross-encoder/qnli-electra-base"
    )
passage = "Penguins are found primarily in the Southern Hemisphere."
question = "What is the capital of Paris?"
result = qnli_pipeline({"text": question, "text_pair": passage})
print(result)
{'label': 'LABEL_0', 'score': 0.008907231502234936}
Natural Language Processing (NLP) in Python

Давайте потренуємось!

Natural Language Processing (NLP) in Python

Preparing Video For Download...