Learn Before
Applicability of Sequence Labeling
Consider two distinct natural language processing tasks. Task 1 aims to categorize an entire document (e.g., a news article) into one of several predefined topics like 'Sports', 'Technology', or 'Politics'. Task 2 aims to identify every mention of a person's name within that same document. Which of these two tasks is fundamentally a sequence labeling problem? Justify your answer by explaining how the structure of the output relates to the structure of the input for the chosen task.
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