Learn Before
Analyzing a Sequence Labeling Model's Output
A sequence labeling model is trained for a task using a standard tagging scheme where 'B-ENTITY' marks the beginning of a multi-token entity, 'I-ENTITY' marks a token inside the same entity, and 'O' marks a token that is not part of any entity. When processing a sentence, the model outputs the label sequence below for the corresponding tokens. Analyze this output. What is the primary logical error in this predicted label sequence, and what does this error suggest about the model's understanding of how to form entities?
0
1
Tags
Data Science
Ch.2 Generative Models - Foundations of Large Language Models
Foundations of Large Language Models
Foundations of Large Language Models Course
Computing Sciences
Analysis in Bloom's Taxonomy
Cognitive Psychology
Psychology
Social Science
Empirical Science
Science
Related
Part-of-Speech (POS) Tagging
BERT-based Architecture for Sequence Labeling
Span Prediction in NLP
Definition of Named Entity Recognition
A model is designed to perform a sequence labeling task by identifying organizations and locations within a text. For each word (token), it must assign one of the following labels:
O(not an entity),B-ORG(beginning of an organization),I-ORG(inside an organization),B-LOC(beginning of a location), orI-LOC(inside a location). Given the sentence 'The United Nations headquarters in New York City is a major landmark', which of the following represents the correct sequence of labels?Applicability of Sequence Labeling
Analyzing a Sequence Labeling Model's Output
Negative Likelihood Loss in Sequence Labeling