I want to make a simple linear chain CRF. I looking for some journal that ask me to make some features from my project. The feature such as :
- f1(s, i, li, li-1), = 1 if li = ADVERB and the ith word ends in “-ly”; 0 otherwise.
- f2(s, i, li, li-1), = 1 if i=1, li= VERB, and the sentence ends in a question mark; 0 otherwise
- etc
with s=sentence; i=position of word; li=label of current word; and li-1=label of previous word.
My project is POS Tagging to Indonesian sentences. How to calculate weight from that feature?