Recall & Review
beginner
What is Named Entity Recognition (NER)?
Named Entity Recognition is a process in natural language processing that finds and classifies key information (entities) in text into categories like names of people, places, organizations, dates, etc.
Click to reveal answer
beginner
Name three common categories of entities identified by NER.
Common categories include Person names, Locations (places), and Organizations (companies, groups). Other categories can be dates, times, monetary values, and more.
Click to reveal answer
beginner
How does NER help in real-life applications?
NER helps by automatically extracting important information from large texts, like finding all company names in news articles or identifying dates in emails, making data easier to search and analyze.
Click to reveal answer
intermediate
What is a common approach to train an NER model?
A common approach is to use labeled text data where entities are marked, then train a machine learning model like a neural network to recognize patterns and predict entities in new text.
Click to reveal answer
intermediate
What metric is often used to measure NER model performance?
Precision, recall, and F1-score are used. Precision measures how many identified entities are correct, recall measures how many true entities were found, and F1-score balances both.
Click to reveal answer
What does Named Entity Recognition primarily do?
✗ Incorrect
NER finds and classifies important entities like names and places in text.
Which of these is NOT a typical entity category in NER?
✗ Incorrect
Sentiment is about feelings, not an entity category in NER.
Which metric balances precision and recall in NER evaluation?
✗ Incorrect
F1-score combines precision and recall into one metric.
What kind of data is needed to train an NER model?
✗ Incorrect
NER models need text where entities are labeled to learn from.
In which real-life scenario is NER useful?
✗ Incorrect
NER extracts entities like company names from text.
Explain what Named Entity Recognition is and why it is useful.
Think about how computers find names and places in text automatically.
You got /3 concepts.
Describe how an NER model is trained and evaluated.
Consider what kind of data the model needs and how we check if it works well.
You got /3 concepts.