paper-with-me

Papers

Recursive Subtree Composition in LSTM-Based Dependency Parsing

2019-02-26 · NAACL 2019 6 · Miryam de Lhoneux, Miguel Ballesteros, Joakim Nivre

The need for tree structure modelling on top of sequence modelling is an open issue in neural dependency parsing. We investigate the impact of adding a tree layer on top of a sequential model by recursively composing subtree representations (composition) in a transition-based parser that uses features extracted by a BiLSTM. Composition seems superfluous with such a model, suggesting that BiLSTMs capture information about subtrees. We perform model ablations to tease out the conditions under which composition helps. When ablating the backward LSTM, performance drops and composition does not recover much of the gap. When ablating the forward LSTM, performance drops less dramatically and composition recovers a substantial part of the gap, indicating that a forward LSTM and composition capture similar information. We take the backward LSTM to be related to lookahead features and the forward LSTM to the rich history-based features both crucial for transition-based parsers. To capture history-based information, composition is better than a forward LSTM on its own, but it is even better to have a forward LSTM as part of a BiLSTM. We correlate results with language properties, showing that the improved lookahead of a backward LSTM is especially important for head-final languages.

📄 PDF Abstract BibTeX arXiv:1902.09781

Code (1)

mdelhoneux/uuparser-composition 공식 구현

Tasks

Dependency Parsing

Methods 이 논문이 사용한 방법론

Sigmoid Activation 설명 없음
Tanh Activation 설명 없음
BiLSTM A Bidirectional LSTM, or biLSTM, is a sequence processing model that consists of two LSTMs: one taking the input in a forward direction, and the other in a backwards…
LSTM An LSTM is a type of recurrent neural network that addresses the vanishing gradient problem in vanilla…

Similar Papers 제목 키워드 기반

Effective Representation for Easy-First Dependency Parsing

2018-11-08 · Zuchao Li, Jiaxun Cai, Hai Zhao

Easy-first parsing relies on subtree re-ranking to build the complete parse tree. Whereas the intermediate state of parsing processing is represented by various subtrees, whose internal structural information is the key …

Dependency ParsingLanguage ModelingLanguage ModellingRe-Ranking

A subtree-based factorization of dependency parsing

2016-12-01 · COLING 2016 12 · Qiuye Zhao, Qun Liu

We propose a dependency parsing pipeline, in which the parsing of long-distance projections and localized dependencies are explicitly decomposed at the input level. A chosen baseline dependency parsing model performs onl…

Dependency Parsing

IBM Research at the CoNLL 2018 Shared Task on Multilingual Parsing

2018-10-01 · CONLL 2018 10 · Hui Wan, Tahira Naseem, Young-suk Lee, Vittorio Castelli 외

This paper presents the IBM Research AI submission to the CoNLL 2018 Shared Task on Parsing Universal Dependencies. Our system implements a new joint transition-based parser, based on the Stack-LSTM framework and the Arc…

ARCDependency ParsingMorphological TaggingPart-Of-Speech Tagging+2

Dependency Parsing as MRC-based Span-Span Prediction

2021-05-17 · ACL 2022 5 · Leilei Gan, Yuxian Meng, Kun Kuang, Xiaofei Sun 외

Higher-order methods for dependency parsing can partially but not fully address the issue that edges in dependency trees should be constructed at the text span/subtree level rather than word level. In this paper, we prop…

Dependency ParsingMachine Reading ComprehensionPredictionReading Comprehension

Easy-First Dependency Parsing with Hierarchical Tree LSTMs

2016-03-01 · TACL 2016 1 · Eliyahu Kiperwasser, Yoav Goldberg

We suggest a compositional vector representation of parse trees that relies on a recursive combination of recurrent-neural network encoders. To demonstrate its effectiveness, we use the representation as the backbone of …

Dependency ParsingWord Embeddings