* Play with NER feats a bit. Up to 82.00 training on MUC7.

This commit is contained in:
Matthew Honnibal 2014-11-05 21:47:17 +11:00
parent edf739134c
commit 07a23768de

View File

@ -9,21 +9,21 @@ cdef Token N2 = FIELD_IDS.N2
TEMPLATES = ( TEMPLATES = (
(N0.i,), (N0.sic,),
(N0.c,), (N0.cluster,),
(P1.pos,), (P1.pos,),
(P1.i,), (P1.sic,),
(N1.w,), (N1.norm,),
(N1.pos,), (N1.pos,),
(P1.ner,), (P1.ner,),
(P2.ner,), (P2.ner,),
(N0.c,), (N0.cluster,),
(P1.c,), (P1.cluster,),
(N1.c,), (N1.cluster,),
(N0.is_alpha,), (N0.is_alpha,),
(N0.is_digit,), (N0.is_digit,),
@ -32,4 +32,10 @@ TEMPLATES = (
(N0.is_title, N0.oft_title), (N0.is_title, N0.oft_title),
(N0.is_upper, N0.oft_upper), (N0.is_upper, N0.oft_upper),
(P1.cluster, N0.norm),
(N0.norm, N1.cluster),
(P1.ner, N0.pos),
(P2.ner, P1.ner, N0.pos),
) )