ACL-OCL / Base_JSON /prefixJ /json /J07 /J07-2008.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "J07-2008",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T03:03:21.594886Z"
},
"title": "Inductive Dependency Parsing",
"authors": [
{
"first": "Joakim",
"middle": [],
"last": "Nivre",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "V\u00e4xj\u00f6 University",
"location": {}
},
"email": ""
},
{
"first": "Christer",
"middle": [],
"last": "Samuelsson",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Columbia University",
"location": {}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Philologists assure us that it's worth learning ancient Greek just to read Homer. For any linguist, it's definitely worth learning French, just to read Lucien Tesni\u00e8re's Elements de Syntaxe Structurale (Tesni\u00e8re 1959). For any serious dependency parsing student or professional, it would have been worth learning Swedish, just to read Joakim Nivre's Inductive Dependency Parsing if Nivre had not done the world the immense favor of writing his book in English, rather than in his native tongue of glory and heroes. The book demonstrates Nivre's impressive ability to explain dependency grammar and dependency parsing clearly and succinctly to a wide audience. His overviews of dependency grammars (Section 3.1) and dependency parsing (Section 3.2) should be required reading in any course on the topics. He concisely sums up each relevant approach, often in a single sentence, and those wishing to learn more can rely on his extensive collection of references. The remainder of Chapter 3 sets the board for the proposed novel MALT parser-the book's main innovation-by formalizing the dependency parsing task and specifying a particular type of deterministic shift-reduce parsing algorithm. Here, the set of parser actions are appropriate for dependency parsing, rather than for constituent parsing, and it is assumed that there is a one-to-one correspondence between dependency analyses and valid, complete sequences of parser actions. Nivre proves that the parsing algorithm correctly performs the formalized dependency parsing task, producing an acyclic, single-headed, projective dependency graph. Whereas the short Chapter 1 consists of the obligatory introduction, motivation, and book overview, it is interesting to discuss Nivre's ambitious four criteria for a successful dependency parser, stated in Chapter 2:",
"pdf_parse": {
"paper_id": "J07-2008",
"_pdf_hash": "",
"abstract": [
{
"text": "Philologists assure us that it's worth learning ancient Greek just to read Homer. For any linguist, it's definitely worth learning French, just to read Lucien Tesni\u00e8re's Elements de Syntaxe Structurale (Tesni\u00e8re 1959). For any serious dependency parsing student or professional, it would have been worth learning Swedish, just to read Joakim Nivre's Inductive Dependency Parsing if Nivre had not done the world the immense favor of writing his book in English, rather than in his native tongue of glory and heroes. The book demonstrates Nivre's impressive ability to explain dependency grammar and dependency parsing clearly and succinctly to a wide audience. His overviews of dependency grammars (Section 3.1) and dependency parsing (Section 3.2) should be required reading in any course on the topics. He concisely sums up each relevant approach, often in a single sentence, and those wishing to learn more can rely on his extensive collection of references. The remainder of Chapter 3 sets the board for the proposed novel MALT parser-the book's main innovation-by formalizing the dependency parsing task and specifying a particular type of deterministic shift-reduce parsing algorithm. Here, the set of parser actions are appropriate for dependency parsing, rather than for constituent parsing, and it is assumed that there is a one-to-one correspondence between dependency analyses and valid, complete sequences of parser actions. Nivre proves that the parsing algorithm correctly performs the formalized dependency parsing task, producing an acyclic, single-headed, projective dependency graph. Whereas the short Chapter 1 consists of the obligatory introduction, motivation, and book overview, it is interesting to discuss Nivre's ambitious four criteria for a successful dependency parser, stated in Chapter 2:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Robustness: The parser must assign at least one dependency analysis to each sentence in any given text.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "1.",
"sec_num": null
},
{
"text": "The parser must assign at most one dependency analysis to each sentence in any given text.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Disambiguation:",
"sec_num": "2."
},
{
"text": "Accuracy: The parser must assign the correct dependency analysis to each sentence in any given text.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "3.",
"sec_num": null
},
{
"text": "The parser must process all given sentences in all texts in time and space linear in the size of each sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "Nivre draws the inevitable conclusion from the first two criteria:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "Existence and Uniqueness: The parser must assign exactly one analysis to each sentence in any given text.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "In Chapter 3, Nivre achieves the Accuracy criterion by presupposing the existence of an Oracle that always provides the correct parser action. In later chapters, he reverts to more traditional measures of Accuracy, while leaving the other three criteria intact. The Efficiency criterion is achieved by the deterministic and greedy (non-ambiguitypacking) nature of the shift-reduce parser. One could argue that even at a word level, deterministic, non-packing parsing is not always possible, but Nivre sticks to his guns.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "In Chapter 4, Nivre replaces the omniscient Oracle of Chapter 3 in two logical steps. In the first step, the parser instead chooses the locally most advantageous parser action a * according to some evaluation function g(a):",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "a * = arg max a g(a)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "This preserves the determinism and greediness of the parser, at the cost of potentially losing the globally best action or the gold-standard action. The latter is the parser action ultimately resulting in the reference dependency analysis of the training or testing data.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "In the second step, an approximation\u011d(a) of this unknown evaluation function g(a) is learned from training data, using some machine-learning scheme. Thus the parser instead chooses the parser action\u00e2 * :",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "a * = arg max a\u011d (a)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "which may very well deviate from the locally best parser action a * , as well as from the globally best and the gold-standard parser actions. Nivre relates this learning scheme to maximizing likelihood estimates and conditional likelihood estimates, as well as to discriminative learning techniques. He also takes on the chore of relating the goldstandard parser action to the dependency analyses of the reference data.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "The logical progression and the clarity with which this is done is one of the many strengths of this book. Many followers take the book this far as a point of departure for alternative explorations into inductive dependency parsing.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "Nivre next investigates feature selection for creating the function\u011d(a), then moves on to his choice of machine-learning framework-memory-based learning (MBL) (Daelemans and van den Bosch 2005)-ultimately leading to the proposed inductive shift-reduce parser: the MALT parser.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "In Chapter 5, Nivre evaluates his MALT parser on the mandatory Penn Treebank parsing task. This is arguably a waste of time as: the Penn Treebank is a constituency treebank; its underlying linguistic theory is quite poor; its annotation consistency is even worse; and the rules for retrieving corresponding dependency analyses are, at best, inspired hacks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "Many researchers in the field have used Nivre's freely available MALT parser, 1 but have replaced MBL with some other machine-learning technique, such as conditional random fields. About half of the entrants of the dependency-parsing shared task of the 2006 Conference on Computational Natural Language Learning (CoNLL X) (Marquez and Klein 2006) used this approach. That alone demonstrates the importance of this book.",
"cite_spans": [
{
"start": 322,
"end": 346,
"text": "(Marquez and Klein 2006)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "The 2007 CoNLL conference will most likely exhibit non-greedy, ambiguity-packing versions of Nivre's inductive shift-reduce parsing scheme, in the vein of Masaru Tomita's generalization of (natural language) LR parsing (Tomita 1987) .",
"cite_spans": [
{
"start": 219,
"end": 232,
"text": "(Tomita 1987)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "Get Nivre's book; read it; and enjoy it! The excellent and thorough reference list alone is worth it, constituting a good ten percent of the book.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Efficiency:",
"sec_num": "4."
},
{
"text": "http://w3.msi.vxu.se/\u223cnivre/research/MaltParser.html.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Elements de Syntaxe Structurale",
"authors": [
{
"first": "Lucien",
"middle": [],
"last": "Tesni\u00e8re",
"suffix": ""
}
],
"year": 1959,
"venue": "Editions Klincksieck",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tesni\u00e8re, Lucien. 1959. Elements de Syntaxe Structurale. Editions Klincksieck, Paris.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Memory-Based Language Processing",
"authors": [
{
"first": "Walter",
"middle": [],
"last": "Daelemans",
"suffix": ""
},
{
"first": "Antal",
"middle": [],
"last": "Van Den",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Bosch",
"suffix": ""
}
],
"year": 2005,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Daelemans, Walter and Antal van den Bosch. 2005. Memory-Based Language Processing, Cambridge University Press, Cambridge.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Proceedings of CoNLL-X: Tenth Conference on Computational Natural Language Learning",
"authors": [
{
"first": "Lluis",
"middle": [],
"last": "Marquez",
"suffix": ""
},
{
"first": "Dan",
"middle": [],
"last": "Klein",
"suffix": ""
}
],
"year": 2006,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Marquez, Lluis and Dan Klein, editors. 2006. Proceedings of CoNLL-X: Tenth Conference on Computational Natural Language Learning, Brooklyn, New York, Association for Computational Linguistics.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "An efficient augmented context-free parsing algorithm",
"authors": [
{
"first": "Masaru",
"middle": [],
"last": "Tomita",
"suffix": ""
}
],
"year": 1987,
"venue": "Computational Linguistics",
"volume": "13",
"issue": "1-2",
"pages": "31--46",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tomita, Masaru. 1987. An efficient augmented context-free parsing algorithm. Computational Linguistics, 13(1-2): 31-46.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Lehman Brothers, and a few start-ups. He is currently associated with the Center for Computational Learning Systems, Columbia University. Samuelsson's e-mail address is christer",
"authors": [],
"year": null,
"venue": "Christer Samuelsson has worked with natural language parsing at SICS, the",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Christer Samuelsson has worked with natural language parsing at SICS, the University of the Saarland, Bell Labs, Xerox Research Centre Europe, Lehman Brothers, and a few start-ups. He is currently associated with the Center for Computational Learning Systems, Columbia University. Samuelsson's e-mail address is christer.samuelsson@gmail.com.",
"links": null
}
},
"ref_entries": {}
}
}