I am learning the Semantic Role Labeling (SRL) task. I have read a lot, and now I come to a problem for how to represent the text features as vectors.
For example, for the sentence:
We like StackOverflow very much
given the predicate verb: like
, a few features are:
the left 1st word: I
the right 1st word: StackOverflow
the POS tag of the left 1st word: Pronoun
The POS tag of the right 1st word: Adverbial
What are the right ways to represent these features as vectors?
If possible, can you also give me some guidances for how to normalize these features please?
I basically want to train the data with these type of features using SVM
models.