semantic-role-labeling

  • It is a sequence2sequence classification problem, given a sentence (sequence of tokens), for every token in the given sentence, an argument has to be indentified and classified.
  • It can be viewed as "Who did what to whom at where?"
    • e.g. The police officer detained the criminal at thecrime scene.
      • Who (the police officer).
      • Did What (detained)
      • to Whom (The criminal)
      • at Where (at the crime scene)

To use this repo

pip install -r requirements.txt

[TO BE COMPLETED]