English

Linear-Time Constituency Parsing with RNNs and Dynamic Programming

Computation and Language 2018-05-23 v2

Abstract

Recently, span-based constituency parsing has achieved competitive accuracies with extremely simple models by using bidirectional RNNs to model "spans". However, the minimal span parser of Stern et al (2017a) which holds the current state of the art accuracy is a chart parser running in cubic time, O(n3)O(n^3), which is too slow for longer sentences and for applications beyond sentence boundaries such as end-to-end discourse parsing and joint sentence boundary detection and parsing. We propose a linear-time constituency parser with RNNs and dynamic programming using graph-structured stack and beam search, which runs in time O(nb2)O(n b^2) where bb is the beam size. We further speed this up to O(nblogb)O(n b\log b) by integrating cube pruning. Compared with chart parsing baselines, this linear-time parser is substantially faster for long sentences on the Penn Treebank and orders of magnitude faster for discourse parsing, and achieves the highest F1 accuracy on the Penn Treebank among single model end-to-end systems.

Keywords

Cite

@article{arxiv.1805.06995,
  title  = {Linear-Time Constituency Parsing with RNNs and Dynamic Programming},
  author = {Juneki Hong and Liang Huang},
  journal= {arXiv preprint arXiv:1805.06995},
  year   = {2018}
}

Comments

Needs revisions, especially in the experiments section, discussing which models are WSJ-only, single-model, end-to-end

R2 v1 2026-06-23T01:59:23.677Z