From a1d272077dbbe63876fa7beafd684b27e2868936 Mon Sep 17 00:00:00 2001 From: Al Date: Wed, 23 Sep 2015 19:37:55 -0400 Subject: [PATCH] [doc] Averaged perceptron tagger --- src/averaged_perceptron_tagger.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/averaged_perceptron_tagger.h b/src/averaged_perceptron_tagger.h index 02a07413..bd9bcfe4 100644 --- a/src/averaged_perceptron_tagger.h +++ b/src/averaged_perceptron_tagger.h @@ -3,7 +3,9 @@ averaged_perceptron_tagger.h ---------------------------- An averaged perceptron tagger is a greedy sequence labeling -algorithm which uses two tags of history. +algorithm which uses features of the current token, surrounding +tokens and n (typically n=2) previous predictions to predict +the current value. */