karuiwu / reparse

1 stars 0 forks source link

Brainstorm revision operators #8

Open karuiwu opened 11 years ago

karuiwu commented 11 years ago

There are many possible sets and constructs of revision operators for arc-eager dependency parsing. Our goal at the end of two weeks is to have designed the most optimal set of revision operators given the July deadline.

One approach to brainstorming is to think about the constraints introduced by arc-eager parsing, namely that SHIFTing prevents future left children and REDUCing prevents future right children being attached to the top of the buffer and stack respectively. The revision operators would be centered around loosening these constraints -- the question is to what extent and how much general accuracy will be increased? (1st approach)

Another approach is by visualizing the in-between parses beyond that of words and arcs on a stack and a queue. For example, what if the items on the stack were individual trees? Would this enable other types of operators to be created while maintaining the validity of existing operators? (2nd approach)

karuiwu commented 11 years ago