Challenge - 5 Problems
QA Answer Extraction Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate1:30remaining
Purpose of Answer Extraction in QA Systems
Why do question answering (QA) systems extract specific answers from text instead of returning entire documents?
Attempts:
2 left
💡 Hint
Think about what users want when they ask a question.
✗ Incorrect
QA systems extract answers to give users quick, focused responses without needing to read long texts.
🧠 Conceptual
intermediate1:30remaining
Benefit of Extractive QA over Document Retrieval
What is a key benefit of extractive QA systems compared to just retrieving documents?
Attempts:
2 left
💡 Hint
Consider how extractive QA helps users find answers faster.
✗ Incorrect
Extractive QA systems find and highlight exact answer parts, saving users time from reading whole documents.
❓ Model Choice
advanced2:00remaining
Choosing a Model for Answer Extraction
Which model type is best suited for extracting precise answers from a given text passage?
Attempts:
2 left
💡 Hint
Think about models that identify parts of text as answers.
✗ Incorrect
Sequence labeling models can mark exact answer spans, making them ideal for extractive QA.
❓ Metrics
advanced2:00remaining
Evaluating Extractive QA Systems
Which metric is commonly used to evaluate the quality of extracted answers in QA systems?
Attempts:
2 left
💡 Hint
Look for a metric that checks if the predicted answer exactly matches the true answer.
✗ Incorrect
Exact Match score measures if the predicted answer exactly matches the correct answer, important for extractive QA.
🔧 Debug
expert2:30remaining
Debugging a QA System Extracted Answer
A QA system extracts answers but often misses the exact answer span, returning partial or unrelated text. What is the most likely cause?
Attempts:
2 left
💡 Hint
Consider how token alignment affects answer span prediction.
✗ Incorrect
If token classification is misaligned, the model predicts wrong spans causing partial or unrelated answers.