Challenge - 5 Problems
Entity Type Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
π§ Conceptual
intermediate1:30remaining
Understanding Entity Types in Named Entity Recognition
Which of the following best describes the entity type ORG in Named Entity Recognition (NER)?
Attempts:
2 left
π‘ Hint
Think about what kind of real-world entities organizations represent.
β Incorrect
In NER, ORG stands for organizations like companies, institutions, or groups.
β Predict Output
intermediate2:00remaining
Output of NER Entity Extraction
Given the sentence: 'Apple was founded by Steve Jobs in California in 1976.' What entities will be recognized with their correct types?
NLP
sentence = 'Apple was founded by Steve Jobs in California in 1976.' # Assume a perfect NER model output entities = [ ('Apple', 'ORG'), ('Steve Jobs', 'PERSON'), ('California', 'LOC'), ('1976', 'DATE') ] print(entities)
Attempts:
2 left
π‘ Hint
Think about what each entity represents in real life.
β Incorrect
Apple is an organization, Steve Jobs is a person, California is a location, and 1976 is a date.
β Model Choice
advanced1:30remaining
Choosing the Best Model for Entity Type Recognition
You want to build a system that identifies PERSON, ORG, LOC, and DATE entities in news articles. Which model type is best suited for this task?
Attempts:
2 left
π‘ Hint
Think about models designed for sequence and language understanding.
β Incorrect
RNNs and transformers are designed to process sequences of text and are commonly used for NER tasks.
β Metrics
advanced1:30remaining
Evaluating NER Model Performance
You have a NER model that predicts entity types PERSON, ORG, LOC, and DATE. Which metric best measures how well the model correctly identifies these entities?
Attempts:
2 left
π‘ Hint
Think about metrics used for classification tasks with multiple classes.
β Incorrect
Precision, Recall, and F1-score are standard metrics to evaluate classification tasks like NER.
π§ Debug
expert2:00remaining
Debugging Incorrect Entity Type Predictions
A NER model often labels 'Amazon' as a LOCATION instead of an ORGANIZATION. What is the most likely cause?
Attempts:
2 left
π‘ Hint
Think about how the model learns entity meanings from examples.
β Incorrect
If the training data does not have enough examples of 'Amazon' as an organization, the model may misclassify it as a location (like the Amazon river).