paper-with-me

홈 › Papers

Greedy Transition-Based Dependency Parsing with Stack LSTMs

2017-06-01 · CL 2017 6 · Miguel Ballesteros, Chris Dyer, Yoav Goldberg, Noah A. Smith

We introduce a greedy transition-based parser that learns to represent parser states using recurrent neural networks. Our primary innovation that enables us to do this efficiently is a new control structure for sequential neural networks{---}the stack long short-term memory unit (LSTM). Like the conventional stack data structures used in transition-based parsers, elements can be pushed to or popped from the top of the stack in constant time, but, in addition, an LSTM maintains a continuous space embedding of the stack contents. Our model captures three facets of the parser{'}s state: (i) unbounded look-ahead into the buffer of incoming words, (ii) the complete history of transition actions taken by the parser, and (iii) the complete contents of the stack of partially built tree fragments, including their internal structures. In addition, we compare two different word representations: (i) standard word vectors based on look-up tables and (ii) character-based models of words. Although standard word embedding models work well in all languages, the character-based models improve the handling of out-of-vocabulary words, particularly in morphologically rich languages. Finally, we discuss the use of dynamic oracles in training the parser. During training, dynamic oracles alternate between sampling parser states from the training data and from the model as it is being learned, making the model more robust to the kinds of errors that will be made at test time. Training our model with dynamic oracles yields a linear-time greedy parser with very competitive performance.

📄 PDF Abstract BibTeX

Code (0)

등록된 구현이 없습니다.

Tasks

Dependency ParsingTransition-Based Dependency Parsing

Methods 이 논문이 사용한 방법론

Sigmoid Activation 설명 없음
Tanh Activation 설명 없음
LSTM An LSTM is a type of recurrent neural network that addresses the vanishing gradient problem in vanilla…

Similar Papers 제목 키워드 기반

Arc-Standard Spinal Parsing with Stack-LSTMs

2017-09-01 · WS 2017 9 · Miguel Ballesteros, Xavier Carreras

We present a neural transition-based parser for spinal trees, a dependency representation of constituent trees. The parser uses Stack-LSTMs that compose constituent nodes with dependency-based derivations. In experiments…

ARC

Greedy, Joint Syntactic-Semantic Parsing with Stack LSTMs

2016-06-29 · CONLL 2016 8 · Swabha Swayamdipta, Miguel Ballesteros, Chris Dyer, Noah A. Smith

We present a transition-based parser that jointly produces syntactic and semantic dependencies. It learns a representation of the entire algorithm state, using stack long short-term memories. Our greedy inference algorit…

Semantic Parsing

AMR Parsing using Stack-LSTMs

2017-07-24 · EMNLP 2017 9 · Miguel Ballesteros, Yaser Al-Onaizan

We present a transition-based AMR parser that directly generates AMR parses from plain text. We use Stack-LSTMs to represent our parser state and make decisions greedily. In our experiments, we show that our parser achie…

AMR ParsingPOS

Simple and Accurate Dependency Parsing Using Bidirectional LSTM Feature Representations

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

We present a simple and effective scheme for dependency parsing which is based on bidirectional-LSTMs (BiLSTMs). Each sentence token is associated with a BiLSTM vector representing the token in its sentential context, an…

Dependency ParsingSentence

A Novel Neural Network Model for Joint POS Tagging and Graph-based Dependency Parsing

2017-05-16 · CONLL 2017 8 · Dat Quoc Nguyen, Mark Dras, Mark Johnson

We present a novel neural network model that learns POS tagging and graph-based dependency parsing jointly. Our model uses bidirectional LSTMs to learn feature representations shared for both POS tagging and dependency p…

Dependency ParsingFeature EngineeringPart-Of-Speech TaggingPOS+2