Papers › Transition-Based Dependency Parsing with Stack Long Short-Term Memory

Transition-Based Dependency Parsing with Stack Long Short-Term Memory

29 May 2015IJCNLP 2015 7arXiv:1505.08075archive 2025-07-28

Chris Dyer, Miguel Ballesteros, Wang Ling, Austin Matthews, Noah A. Smith

We propose a technique for learning representations of parser states in transition-based dependency parsers. Our primary innovation is a new control structure for sequence-to-sequence neural networks---the stack LSTM. Like the conventional stack data structures used in transition-based parsing, 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. This lets us formulate an efficient parsing model that captures three facets of a parser's state: (i) unbounded look-ahead into the buffer of incoming words, (ii) the complete history of actions taken by the parser, and (iii) the complete contents of the stack of partially built tree fragments, including their internal structures. Standard backpropagation techniques are used for training and yield state-of-the-art parsing performance.

PaperPDFConference PDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="1505.08075")

Code

Syntology Ran 1 of 14 code samples harvested from 2 repositories linked to this paper; 13 have no recorded run. Of those that ran: 1 ran · our draft was wrong.

By repository: community (archive-listed): 14 samples from 2 repositories, 1 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

clab/lstm-parser officialmentioned in paperApache-2.0 report
IBM/transition-amr-parser mentioned on GitHubpytorch report
Yusics/bist-parser mentioned on GitHubpytorchApache-2.0 report
elikip/bist-parser mentioned on GitHubpytorchApache-2.0 report
elikip/htparser mentioned on GitHubApache-2.0 report
mstrise/dep2label mentioned on GitHubpytorchMIT report
timerstime/SDG4DA mentioned on GitHubtf report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

14 samples harvested; 1 ran; 0 honoured the contract we drafted; 13 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · our draft was wrong
13unverified

Licence: 0 of the 14 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

log_sum_exp mstrise/dep2label/model/crf.py community (archive-listed) ran · our draft was wrong fingerprinted MIT (permissive) · 8e960fbb64668568 · report
check_if_crossing_arcs mstrise/dep2label/dep2label/encodings.py community (archive-listed) unverified MIT (permissive) · a16be92b2801ab44 · report
decode_2p_brackets mstrise/dep2label/dep2label/encodings.py community (archive-listed) unverified MIT (permissive) · ccbdc4aeb4b3323f · report
evaluate Yusics/bist-parser/barchybrid/src/utils/evaluation_script/conll17_ud_eval.py community (archive-listed) unverified Apache-2.0 (permissive) · cb5ea19799e31ba8 · report
evaluate mstrise/dep2label/dep2label/eval_dep/conll18_ud_eval.py community (archive-listed) unverified MIT (permissive) · 245d8f594031798b · report
has_descendants mstrise/dep2label/dep2label/encodings.py community (archive-listed) unverified MIT (permissive) · 74c0e5534e18f473 · report
load_conllu Yusics/bist-parser/bmstparser/src/utils/evaluation_script/conll17_ud_eval.py community (archive-listed) unverified Apache-2.0 (permissive) · 6f11534db6a06f8e · report
load_conllu Yusics/bist-parser/barchybrid/src/utils/evaluation_script/conll17_ud_eval.py community (archive-listed) unverified Apache-2.0 (permissive) · 6d71b42e4dacd50b · report
load_conllu mstrise/dep2label/dep2label/eval_dep/conll18_ud_eval.py community (archive-listed) unverified MIT (permissive) · 898a8ab6ccbb4763 · report
load_conllu_file mstrise/dep2label/dep2label/eval_dep/conll18_ud_eval.py community (archive-listed) unverified MIT (permissive) · 4c2a95032787d62c · report
load_deprel_weights Yusics/bist-parser/barchybrid/src/utils/evaluation_script/conll17_ud_eval.py community (archive-listed) unverified Apache-2.0 (permissive) · ce63212f8cdd9a1a · report
normalize Yusics/bist-parser/bmstparser/src/utils.py community (archive-listed) unverified Apache-2.0 (permissive) · a178745e105220aa · report
parse_proj Yusics/bist-parser/bmstparser/src/decoder.py community (archive-listed) unverified Apache-2.0 (permissive) · ebd329b222dc781a · report
vocab Yusics/bist-parser/bmstparser/src/utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 38346f1c9a8dc86b · report

Tasks

Dependency ParsingTransition-Based Dependency Parsing

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

LSTMSigmoid ActivationTanh Activation

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections