Sequence Labeling Algorithm: Difference between revisions

From GM-RKB
Jump to navigation Jump to search
 
m (Text replacement - "]] " to "]] ")
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
A [[Sequence Labeling Algorithm]] is a [[Sequence Learning Algorithm]] that tags [[sequences]] in [[text document]]s.
A [[Sequence Labeling Algorithm]] is a [[Sequence Learning Algorithm]] that tags [[sequences]] in [[text document]]s.
* <B>AKA:</B> [[Sequence-Member Tagging Algorithm]], [[Sequential Labeling Algorithm]].
* <B>AKA:</B> [[Sequence Labeling Algorithm|Sequence-Member Tagging Algorithm]], [[Sequence Labeling Algorithm|Sequential Labeling Algorithm]].
* <B>Context</U>:</B>
* <B>Context</U>:</B>
** It can be implemented by a [[Sequence Labeling System]] to solve a [[Sequence Labeling Task]].  
** It can be implemented by a [[Sequence Labeling System]] to solve a [[Sequence Labeling Task]].
** It can range from being a [[Supervised Sequence Labeling Algorithm]], to being a [[Semi-Supervised Sequence Labeling Algorithm]], to being an [[Unsupervised Sequence Labeling Algorithm]].
** It can range from being a [[Supervised Sequence Labeling Algorithm]], to being a [[Semi-Supervised Sequence Labeling Algorithm]], to being an [[Unsupervised Sequence Labeling Algorithm]].
* <B>Example(s):</B>  
* <B>Example(s):</B>  
** a [[Constrained Sequential Labeling (CSL) Algorithm]] ([[#2014|Chen et al., 2014]]).
** a [[Constrained Sequential Labeling (CSL) Algorithm]] ([[#2014|Chen et al., 2014]]).
** a [[Sequential Labeling with Latent Variables Task]].
** a [[Sequential Labeling with Latent Variables Task]].
** …
* <B>Counter-Example(s):</B>  
* <B>Counter-Example(s):</B>  
** a [[Sequence Segmentation Task]].
** a [[Sequence Segmentation Task]].
Line 12: Line 13:
*** a [[Named Entity Mention Classification Task]], such as the identification of [[Person Mention]]s in a [[Document]].
*** a [[Named Entity Mention Classification Task]], such as the identification of [[Person Mention]]s in a [[Document]].
* <B>See:</B> [[Data Stream Mining Task]], [[Online Learning Task]].
* <B>See:</B> [[Data Stream Mining Task]], [[Online Learning Task]].
----
----
----
----
Line 34: Line 36:
=== 2002 ===
=== 2002 ===
* ([[2002_RankingAlgorithmsforNamedEntity|Collins, 2002a]]) ⇒ [[Michael Collins]]. ([[2002]]). “[http://acl.ldc.upenn.edu/P/P02/P02-1062.pdf Ranking Algorithms for Named–Entity Extraction: Boosting and the voted perceptron].” In: Proceedings of the ACL Conference ([[ACL 2002]]).
* ([[2002_RankingAlgorithmsforNamedEntity|Collins, 2002a]]) ⇒ [[Michael Collins]]. ([[2002]]). “[http://acl.ldc.upenn.edu/P/P02/P02-1062.pdf Ranking Algorithms for Named–Entity Extraction: Boosting and the voted perceptron].” In: Proceedings of the ACL Conference ([[ACL 2002]]).
** QUOTE: The problem can be framed as a <B>[[Sequence-Member Tagging Task|tagging task]]</B> – to tag each word as being either the start of an entity, a continuation of an entity, or not to be part of an entity at all (we will use the tags S, C and N respectively for these three cases).  
** QUOTE: The problem can be framed as a <B>[[Sequence-Member Tagging Task|tagging task]]</B> – to tag each word as being either the start of an entity, a continuation of an entity, or not to be part of an entity at all (we will use the tags S, C and N respectively for these three cases).


----
----

Latest revision as of 02:41, 4 November 2024

A Sequence Labeling Algorithm is a Sequence Learning Algorithm that tags sequences in text documents.



References

2014

2010

2009

2003

2002