For the generated Brill Tagger Rule:
Rule('016', 'CS', 'QL', [(Word([1, 2, 3]),'as')])
I know:
'CS'
is subordinating conjunction
'QL'
is qualifier
I guess:
[(Word([1, 2, 3]),'as')]
means the condition of the rule. It stands for the word 'as'
appear as the first, second or third position before the target word. Target word is word that is going to be tagged by POS tag.
I do not know:
What is the meaning for '016'
?
How to interpret the rule as a whole?