| { |
| "paper_id": "Y17-1012", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T13:33:16.079756Z" |
| }, |
| "title": "Ensemble Technique Utilization for Indonesian Dependency Parser", |
| "authors": [ |
| { |
| "first": "Arief", |
| "middle": [], |
| "last": "Rahman", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| }, |
| { |
| "first": "Ayu", |
| "middle": [], |
| "last": "Purwarianti", |
| "suffix": "", |
| "affiliation": {}, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "Two of the main problems in creating an Indonesian parser with high accuracy are the lack of sentence diversity in treebank used for training and suboptimal uses of parsing techniques. To resolve these problems, we build an Indonesian dependency treebank of 2098 sentences (simple and complex sentences) and use ensemble techniques to maximize the usage of available dependency parsers. We compare the combination of seven parsing algorithms provided by MaltParser and MSTParser, which provides both transition-based and graph-based models. From our experiments, we found that the graph-based model performs better than the transition-based model for Indonesian sentences. We also found no significant accuracy difference in models between several simple ensemble models and reparsing algorithms.", |
| "pdf_parse": { |
| "paper_id": "Y17-1012", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "Two of the main problems in creating an Indonesian parser with high accuracy are the lack of sentence diversity in treebank used for training and suboptimal uses of parsing techniques. To resolve these problems, we build an Indonesian dependency treebank of 2098 sentences (simple and complex sentences) and use ensemble techniques to maximize the usage of available dependency parsers. We compare the combination of seven parsing algorithms provided by MaltParser and MSTParser, which provides both transition-based and graph-based models. From our experiments, we found that the graph-based model performs better than the transition-based model for Indonesian sentences. We also found no significant accuracy difference in models between several simple ensemble models and reparsing algorithms.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Text parsing is one of the major tasks in natural language text processing (NLP). Text parsing is the process of determining the syntactic structure of a sentence. The result of text parsing is a syntactical tree, which is mostly used for higher-level NLP tasks, like sentiment analysis (Di Caro and Grella, 2013) and semantic role labeling (Johansson and Nugues. 2008 ).", |
| "cite_spans": [ |
| { |
| "start": 291, |
| "end": 313, |
| "text": "Caro and Grella, 2013)", |
| "ref_id": "BIBREF3" |
| }, |
| { |
| "start": 341, |
| "end": 368, |
| "text": "(Johansson and Nugues. 2008", |
| "ref_id": "BIBREF7" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "There are two kinds of text parsing to date: constituent parsing and dependency parsing. Constituent parsing parses a sentence by determining the constituent phrases of the sentence hierarchically, usually by using a grammar (Aho, 2003) . Dependency parsing, on the other hand, parses a sentence by determining a dependency relation for each word in a sentence. In this research, we use dependency parsing, because it is suited for analyzing languages with free word order, such as Indonesian (Nivre, 2007) . Figure 1 shows an example of a parsed Indonesian sentence using dependency structure. Up until now, there have been only a few studies regarding Indonesian dependency parsing (Sulaeman, 2012; Green et.al, 2012) . Most of the previous researches focused on rule-based parsing (Purwarianti et.al, 2013) , which yielded quite a low accuracy, compared to other languages. Based on these researches, we use ensemble parsing techniques (Surdeanu and Manning, 2010) in our works. We also built a dependency Treebank corpus used for the model training with 2098 sentences.", |
| "cite_spans": [ |
| { |
| "start": 225, |
| "end": 236, |
| "text": "(Aho, 2003)", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 493, |
| "end": 506, |
| "text": "(Nivre, 2007)", |
| "ref_id": "BIBREF12" |
| }, |
| { |
| "start": 684, |
| "end": 700, |
| "text": "(Sulaeman, 2012;", |
| "ref_id": "BIBREF16" |
| }, |
| { |
| "start": 701, |
| "end": 719, |
| "text": "Green et.al, 2012)", |
| "ref_id": null |
| }, |
| { |
| "start": 784, |
| "end": 809, |
| "text": "(Purwarianti et.al, 2013)", |
| "ref_id": null |
| }, |
| { |
| "start": 939, |
| "end": 967, |
| "text": "(Surdeanu and Manning, 2010)", |
| "ref_id": "BIBREF17" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 509, |
| "end": 517, |
| "text": "Figure 1", |
| "ref_id": "FIGREF0" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "In the following sections, we describe the relevant studies and some basic concepts about dependency parsing and its models. We then describe the corpus used in this research, our experiment settings, and finally the results and analysis.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "There are two studies that are related to ensemble dependency parsing, which is Surdeanu & Manning's work for English (Attardi and Dell'Orletta, 2009) , and Green et al.'s work for Indonesian (Green et.al, 2012) . Surdeanu & Manning created an ensemble dependency parser using parsing algorithms from both MaltParser and MSTParser for English. This research used CoNLL 2008 shared task corpus as the treebank for training and testing. There are two types of ensemble models used in this research: ensemble model at learning (using stacking) and ensemble model at runtime (using voting mechanism). The ensemble system at runtime used both weighted and unweighted voting scheme. The system also used a reparsing algorithm (Attardi and Dell'Orletta, 2009) to ensure the resulting dependency graphs always form a tree. The employed reparsing algorithms are Eisner's algorithm (Eisner, 1996) and Attardi's algorithm (Attardi and Dell'Orletta, 2009) .", |
| "cite_spans": [ |
| { |
| "start": 118, |
| "end": 150, |
| "text": "(Attardi and Dell'Orletta, 2009)", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 192, |
| "end": 211, |
| "text": "(Green et.al, 2012)", |
| "ref_id": null |
| }, |
| { |
| "start": 720, |
| "end": 752, |
| "text": "(Attardi and Dell'Orletta, 2009)", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 872, |
| "end": 886, |
| "text": "(Eisner, 1996)", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 911, |
| "end": 943, |
| "text": "(Attardi and Dell'Orletta, 2009)", |
| "ref_id": "BIBREF1" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Works", |
| "sec_num": "2" |
| }, |
| { |
| "text": "There are three conclusions that can be inferred from this research. First, an ensemble model that combines several base parsers at runtime performs significantly better than an ensemble model that combines two parsers at learning time. Second, well-formed dependency trees can be guaranteed without significant performance loss by linear-time approximate reparsing algorithms. Lastly, unweighted voting performs as well as weighted voting for the re-parsing of candidate dependencies.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Works", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Green et al.'s (2012) research consists of making treebank for Indonesian and analyzing ensemble technique effectivity on Indonesian dependency parser using self-training. This research used four out of five parsing algorithms provided by MaltParser (Nivre, Stack, Planar, as its base parsers. This research used 100 Indonesian sentences from IDENTIC (Larasati, 2012) as the treebank. The treebank was split into three parts: one for training, one for self-training tuning, and one for testing. The ensemble techniques used was Chu-Liu Edmonds reparsing algorithm with the unweighted voting scheme.", |
| "cite_spans": [ |
| { |
| "start": 250, |
| "end": 257, |
| "text": "(Nivre,", |
| "ref_id": null |
| }, |
| { |
| "start": 258, |
| "end": 264, |
| "text": "Stack,", |
| "ref_id": null |
| }, |
| { |
| "start": 265, |
| "end": 272, |
| "text": "Planar,", |
| "ref_id": null |
| }, |
| { |
| "start": 351, |
| "end": 367, |
| "text": "(Larasati, 2012)", |
| "ref_id": "BIBREF11" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Works", |
| "sec_num": "2" |
| }, |
| { |
| "text": "From this research, Green et al. (2012) concluded that self-training and ensemble parsing can be used to increase overall accuracy for Indonesian dependency parsing. Our work differs from Green et al.'s work by using base parsers from two different parsing models (transitionbased and graph-based model), where Green et al.'s and only use one parsing model (transition-based model); and also the treebank size which is 20 times larger than Green et al.'s. Our experiment scheme is also different since we conducted a cross validation scheme in calculating the accuracy.", |
| "cite_spans": [ |
| { |
| "start": 20, |
| "end": 39, |
| "text": "Green et al. (2012)", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Related Works", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Both MaltParser and MSTParser are data-driven dependency parsers, which use treebank as training data for making parsing models. Both of these parsers are language-independent, which allows any language to be used in the parser without any compromise in accuracy. However, these parsers have different ways to parse sentences. Both of these parsers will be explained in the next sections.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "MaltParser and MSTParser", |
| "sec_num": "3" |
| }, |
| { |
| "text": "MaltParser was introduced by Nivre et al. (2007) . It is a data-driven and language-independent dependency parser. MaltParser uses transitionbased model during parsing. This model uses transition machine, which contains four main components: a set of parsing states, a set of parsing transitions, the initial parsing state, and a set of terminating parsing states. The parsing result of a transition-based model is a transition sequence that can be used to transform the initial parsing state into a terminating parsing state. The learning problem comes from determining the best action to make at each state. This can be achieved learning an \"oracle\" function.", |
| "cite_spans": [ |
| { |
| "start": 29, |
| "end": 48, |
| "text": "Nivre et al. (2007)", |
| "ref_id": "BIBREF12" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "MaltParser", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "There are five parsing algorithms available in MaltParser, which can be seen in Table 1 . Each of these algorithms differs on the data structures used to represent the parsing states and the set of transitions available for every parsing state. ", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 80, |
| "end": 87, |
| "text": "Table 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "MaltParser", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "MSTParser is a data-driven and languageindependent dependency parser that uses graphbased model. The graph-based model adds a weight to each directed edge in a dependency graph, which is determined by the dot product of the feature weight vector and the score vector based on the current dependency relation. The overall graph is scored, which equals to the product of all weights of all directed edges. The graph-based model will be able to determine the best dependency tree for a sentence by finding the spanning tree of the dependency graph created with maximum score. There are two parsing algorithms available in MSTParser: Eisner and Chu-Liu Edmonds algorithm. The first one is Eisner algorithm, which uses dynamic programming (memoization) to find the maximum spanning trees. It has a complexity of O(n 3 ) and can only build projective trees. The second one is Chu-Liu Edmonds algorithm, which uses recursive greedy selection to find the maximum spanning tree. It has a complexity of O(n 2 ) and can build both projective and nonprojective trees.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "MSTParser", |
| "sec_num": "3.2" |
| }, |
| { |
| "text": "In NLP, ensemble technique is a parsing technique that uses a collaboration of several unique parsing models to parse sentences better than individually. Ensemble technique can be applied during learning and during parsing. Ensemble technique can be applied during learning by having a parsing model parse a test data, and then uses another parsing model to repair the mistakes made by the previous parser. These steps are repeated until all parsers are used. Several examples of ensemble during learning are stacked parsing and guided model (Fan et.al, 2008; Nivre and McDonald, 2008) .", |
| "cite_spans": [ |
| { |
| "start": 542, |
| "end": 559, |
| "text": "(Fan et.al, 2008;", |
| "ref_id": null |
| }, |
| { |
| "start": 560, |
| "end": 585, |
| "text": "Nivre and McDonald, 2008)", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ensemble Technique", |
| "sec_num": "4" |
| }, |
| { |
| "text": "Ensemble technique can also be applied during training by having several base parsers parse the same test data. The base parsers are trained using the same training data. After that, the result from each base parser will be used to determine one final dependency graph that considers all of the base parsers' results. There are three kinds of ensemble during parsing to date: meta-classifier, voting system, and reparsing algorithm. We will only discuss the voting system and the reparsing algorithm in this paper.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ensemble Technique", |
| "sec_num": "4" |
| }, |
| { |
| "text": "In voting system, every token in a sentence will have a dependency relation that was determined by majority voting. Every dependency relation from all of the base parsers will be tallied according to a voting scheme (weighted or unweighted). After that, the best dependency relation for each token will be used for the final dependency graph. In practice, voting scheme is simpler than metaclassifier and performs at the same level as metaclassifier.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ensemble Technique", |
| "sec_num": "4" |
| }, |
| { |
| "text": "There two types of voting that can be used for voting system: weighted and unweighted. Unweighted voting makes all base parsers give the same score for all dependency relations. On the other hand, weighted voting makes base parsers with better accuracy give bigger score for particular dependency relations. When using voting system, the dependency relation with the biggest score for a particular token will be used by the ensemble parser to create the final dependency graph. Voting is done until every token has a dependency relation. Sometimes, the dependency graphs that are created by the voting system does not make a dependency tree. To resolve this, a reparsing algorithm can be used to parse the dependency graph by finding the maximum spanning tree of the graph. The weight of each directed edge is calculated by tallying the dependency relations from all of the base parsers using a weighting scheme (weighted or unweighted). Three of the most used reparsing algorithms are Eisner algorithm, Chu-Liu Edmonds algorithm, and Attardi algorithm. Our work uses voting system with unweighted voting scheme and all of the reparsing algorithms (all with unweighted weighting scheme).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Ensemble Technique", |
| "sec_num": "4" |
| }, |
| { |
| "text": "There are three main steps on doing ensemble parsing. The first step is training all of the base parsers with parsing algorithms and learning algorithm provided by MaltParser and MSTParser. The base parsers are trained using the treebanks that will be listed in the next section. The second step is parsing the test sentences using a particular base parsers combination. The parsing result is in CoNLL. The last step is using a particular ensemble technique to create an ensemble tree. The whole process of ensemble parsing can be seen in Figure 2 .", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 539, |
| "end": 547, |
| "text": "Figure 2", |
| "ref_id": "FIGREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Ensemble Technique", |
| "sec_num": "4" |
| }, |
| { |
| "text": "Our treebank statistic is shown in Table 2 . We performed the experiments using our treebank that contains 2098 sentences. We used Kuncoro's treebank (2013), which contains 2018 sentences, and added 80 sentences, which we manually parsed from news sites like Kompas and Tempo to include in our treebank.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 35, |
| "end": 42, |
| "text": "Table 2", |
| "ref_id": "TABREF2" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Experimental Settings", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "There are three main scenarios in our research. In the first scenario, we compared the performances of the base parsers in parsing Indonesian sentences. There were eleven single parsers that were compared: Nivre eager, Nivre standard, Covington projective, Covington nonprojective, Stack projective, Stack eager, Stack lazy, Planar, 2-Planar, Eisner, and Chu-Liu Edmonds. The parsers were tested using 10-fold cross validation and used the same learning algorithm (SVM).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Settings", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "In the second scenario, we compared the performances of four ensemble techniques: voting system with unweighted scheme, Eisner reparsing algorithm, Chu-Liu Edmonds reparsing algorithm, and Attardi reparsing algorithm. All of the reparsing algorithms used unweighted weighting scheme. The ensemble combination used is 2-Planar, Eisner, and Chu-Liu Edmonds parsing algorithms. The parsers were tested using 10-fold cross validation and used the same learning algorithm (SVM).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Settings", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "In the third scenario, we compared the performances of ensemble parsers that use different algorithm combination. There were six ensemble combinations that were compared: all parsing algorithms (both from MaltParser and MSTParser), all algorithms from MaltParser, all algorithms from MSTParser, all projective parsing algorithms, all non-projective algorithms, and three algorithms with the highest accuracy (according to the first scenario). The parsers used Eisner reparsing algorithm with unweighted weighting scheme and were tested using 10-fold cross validation and used the same learning algorithm (SVM).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Experimental Settings", |
| "sec_num": "5.1" |
| }, |
| { |
| "text": "The results of the four experiments are shown in Table 3, Table 4, and Table 5 . The metric used in this work is UAS (unlabeled attachment score). We don't use LAS (labeled attachment score) since we have no dependency label in our treebank yet. The result from Table 4 shows that Chu-Liu Edmonds algorithm is the best parsing algorithm to be used for Indonesian sentences. One of the main factors that contribute to Chu-Liu Edmonds' high accuracy is the fact that graph-based model can handle long distance dependency well, which most Indonesian sentences have. We can see from the results that Chu-Liu Edmonds dominated both the accuracy on parsing the long sentences and the short sentences. Theoretically, transition-based models should have been able to parse short sentences better than graph-based model. However, the results showed the opposite. This could be caused by Indonesian sentences tendency to use long distance dependencies, even in short sentences.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 49, |
| "end": 78, |
| "text": "Table 3, Table 4, and Table 5", |
| "ref_id": "TABREF4" |
| }, |
| { |
| "start": 262, |
| "end": 269, |
| "text": "Table 4", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results and Analysis", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "Another interesting thing that can be inferred from these results is the fact that transition-based models generally performed better when parsing sentences with outlier predicates (like adjectives and nouns). This is most likely because of the rich feature representations that transition-based model has, which depends on the data structures used to represent the parsing state. Figure 3 and 4 shows the example of this occurrence.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 381, |
| "end": 395, |
| "text": "Figure 3 and 4", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results and Analysis", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "The result from Table 5 shows that there is no significant accuracy difference on the ensemble technique used. However, voting system with unweighted scheme has a little higher accuracy than others (0.01%), because the resulting graphs are not reparsed, which make the individual dependency accuracy better than those that use reparsing algorithm. The accuracy indifference may be caused by the fact that all of the reparsing algorithms used unweighted voting scheme, which would make the weight of many dependency relations to be the same, regardless of the algorithm.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 16, |
| "end": 23, |
| "text": "Table 5", |
| "ref_id": "TABREF5" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results and Analysis", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "The result from Table 6 shows that the parser that uses the combination of the top three base parsers (2-Planar, Eisner, and Chu-Liu Edmonds) has the highest accuracy. This is because of the ensemble property itself. Most of the correct majority decisions (from the best parsers) were able to repair the best parser's mistakes. We can also see that parsers combining all algorithms have lower accuracy than others. This is because of the fact that most of the parsing algorithms created the same dependency trees, especially for the same variants (like Nivre's standard and eager mode). This resulted in most majority decisions to come from the algorithms with several variants. ", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 16, |
| "end": 23, |
| "text": "Table 6", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Results and Analysis", |
| "sec_num": "5.2" |
| }, |
| { |
| "text": "During the making of our Indonesian Treebank, we encountered several problems that should be solved in the future works. Most of the problems revolve around labeling standards. The first problem is the POS-tags standards. Our current treebank uses proprietary standards for both the coarse-grained and fine-grained POS-tags. While our standards are adequate to cover most word types, the lack of standards for POS-tags makes it difficult to merge several treebanks to create a larger data set for future studies. INACL has issued a POS-tags standard for Indonesian 1 , however, there is still a matter of mapping the old POS-tags standards to the new POS-tags standards.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Problems While Creating Indonesian Treebank", |
| "sec_num": "6" |
| }, |
| { |
| "text": "The second problem is the lack of dependency labels for Indonesian. At the time this research is concluded, there were no dependency label standards that can be used to label each dependency relation in a treebank. This would drastically reduce the usefulness of the parser results for most semantic-related NLP tasks since the dependency label is one of the main features in 1 http://inacl.id/inacl/wp-content/uploads/2017/06/INACL-POS-Tagging-Convention-26-Mei.pdf those tasks. One possible solution is to use the dependency label standards from Universal Dependencies (Nivre et al., 2016) , which has a universal dependency labeling scheme.", |
| "cite_spans": [ |
| { |
| "start": 571, |
| "end": 591, |
| "text": "(Nivre et al., 2016)", |
| "ref_id": "BIBREF14" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Problems While Creating Indonesian Treebank", |
| "sec_num": "6" |
| }, |
| { |
| "text": "From our experiments, we concluded that the graph-based model is better than transition-based models for the Indonesian language. We also concluded that different simple ensemble techniques and ensemble combinations do not give significant accuracy difference between models.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusions and Future Works", |
| "sec_num": "7" |
| }, |
| { |
| "text": "Potential future works lie in using more intricate ensemble techniques (e.g. weighting models by its proficiency in creating dependencies for different POS-tags) or better base parsers (using deep learning or word embedding as features during parsing). Other major future works lie in creating a big and complete dependency treebank, which can be done by merging several treebanks from several studies using one labeling standards for both its POS-tags and dependency labels.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conclusions and Future Works", |
| "sec_num": "7" |
| } |
| ], |
| "back_matter": [], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "Compilers: Principles, Techniques, and Tools (for Anna University)", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [ |
| "V" |
| ], |
| "last": "Aho", |
| "suffix": "" |
| } |
| ], |
| "year": 2003, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Aho, A. V. (2003). Compilers: Principles, Techniques, and Tools (for Anna University), 2nd Edition, Pearson Addison Wesley.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Reverse Revision and Linear Tree Combination for Dependency Parsing", |
| "authors": [ |
| { |
| "first": "G", |
| "middle": [], |
| "last": "Attardi", |
| "suffix": "" |
| }, |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Orletta", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "Proceedings of Human Language Technologies: The 2009 Annual Conference of the North American Chapter of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "261--264", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Attardi, G., and Dell'Orletta, F. (2009). Reverse Revision and Linear Tree Combination for Dependency Parsing. Proceedings of Human Language Technologies: The 2009 Annual Conference of the North American Chapter of the Association for Computational Linguistics, Companion Volume: Short Papers, pp. 261-264.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "LIBSVM: A Library for Support Vector Machines", |
| "authors": [ |
| { |
| "first": "C.-C", |
| "middle": [], |
| "last": "Chang", |
| "suffix": "" |
| }, |
| { |
| "first": "C.-J", |
| "middle": [], |
| "last": "Lin", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "ACM Transactions on Intelligent Systems and Technology", |
| "volume": "2", |
| "issue": "3", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Chang, C.-C., and Lin, C.-J. (2011). LIBSVM: A Library for Support Vector Machines. ACM Transactions on Intelligent Systems and Technology (TIST), Volume 2 Issue 3, April 2011, Article Number 27.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Sentiment Analysis via Dependency Parsing", |
| "authors": [ |
| { |
| "first": "Di", |
| "middle": [], |
| "last": "Caro", |
| "suffix": "" |
| }, |
| { |
| "first": "L", |
| "middle": [], |
| "last": "Grella", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [], |
| "last": "", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "Computer Standards & Interfaces", |
| "volume": "35", |
| "issue": "5", |
| "pages": "442--453", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Di Caro, L., and Grella, M. (2013). Sentiment Analysis via Dependency Parsing. Computer Standards & Interfaces, Elsevier, Volume 35, Issue 5, September 2013, pp 442-453.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "Three New Probabilistic Models for Dependency Parsing: An Exploration", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [ |
| "M" |
| ], |
| "last": "Eisner", |
| "suffix": "" |
| } |
| ], |
| "year": 1996, |
| "venue": "Proceedings of the 16th Conference on Computational Linguistics", |
| "volume": "1", |
| "issue": "", |
| "pages": "340--345", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Eisner, J. M. (1996). Three New Probabilistic Models for Dependency Parsing: An Exploration. Proceedings of the 16th Conference on Computational Linguistics -Volume 1, pp. 340-345.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "LIBLINEAR: A Library for Large Linear Classification", |
| "authors": [ |
| { |
| "first": "R.-E", |
| "middle": [], |
| "last": "Fan", |
| "suffix": "" |
| }, |
| { |
| "first": "K.-W", |
| "middle": [], |
| "last": "Chang", |
| "suffix": "" |
| }, |
| { |
| "first": "C.-J", |
| "middle": [], |
| "last": "Hsieh", |
| "suffix": "" |
| }, |
| { |
| "first": "X.-R", |
| "middle": [], |
| "last": "Wang", |
| "suffix": "" |
| }, |
| { |
| "first": "C.-J", |
| "middle": [], |
| "last": "Lin", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "The Journal of Machine Learning Research", |
| "volume": "", |
| "issue": "", |
| "pages": "1871--1874", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Fan, R.-E., Chang, K.-W., Hsieh, C.-J., Wang, X.-R., & Lin, C.-J. (2008). LIBLINEAR: A Library for Large Linear Classification. The Journal of Machine Learning Research, pp. 1871-1874.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Indonesian Dependency Treebank: Annotation and Parsing. 26 th Pacific Asia Conference on Language, Information, and Computation", |
| "authors": [ |
| { |
| "first": "N", |
| "middle": [], |
| "last": "Green", |
| "suffix": "" |
| }, |
| { |
| "first": "S", |
| "middle": [ |
| "D" |
| ], |
| "last": "Larasati", |
| "suffix": "" |
| }, |
| { |
| "first": "Z", |
| "middle": [], |
| "last": "Zabokrtsky", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "137--145", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Green, N., Larasati, S. D., and Zabokrtsky, Z. (2012). Indonesian Dependency Treebank: Annotation and Parsing. 26 th Pacific Asia Conference on Language, Information, and Computation, pp. 137-145.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Dependency-Based Syntactic-Semantic Analysis with PropBank and NomBank", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Johansson", |
| "suffix": "" |
| }, |
| { |
| "first": "P", |
| "middle": [], |
| "last": "Nugues", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Proceedings of the Twelfth Conference on Computational Natural Language Learning", |
| "volume": "", |
| "issue": "", |
| "pages": "183--187", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Johansson, R., and Nugues, P. (2008). Dependency- Based Syntactic-Semantic Analysis with PropBank and NomBank. Proceedings of the Twelfth Conference on Computational Natural Language Learning, CoNLL '08, (pp. 183-187).", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Speech and Language Processing: An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Jurafsky", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Martin", |
| "suffix": "" |
| } |
| ], |
| "year": 2009, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jurafsky, D., and Martin, J. (2009). Speech and Language Processing: An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition. Pearson Prentice Hall.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Pemanfaatan Pengurai Ensemble dan Teknik Self-Learning untuk Meningkatkan Akurasi Pengurai Bahasa Indonesia [Ensemble Parsers and Self-Learning Technique Utilization to Increase", |
| "authors": [ |
| { |
| "first": "Adhiguna", |
| "middle": [], |
| "last": "Jurafsky", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Jurafsky, Adhiguna. (2013). Pemanfaatan Pengurai Ensemble dan Teknik Self-Learning untuk Meningkatkan Akurasi Pengurai Bahasa Indonesia [Ensemble Parsers and Self-Learning Technique Utilization to Increase Indonesian Parser Accuracy].", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "IDENTIC Corpus: Morphologically Enriched Indonesian-English Parallel Corpus. LREC", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [ |
| "D" |
| ], |
| "last": "Larasati", |
| "suffix": "" |
| } |
| ], |
| "year": 2012, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "902--906", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Larasati, S. D. (2012). IDENTIC Corpus: Morphologically Enriched Indonesian-English Parallel Corpus. LREC, pp. 902-906.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "MaltParser: A Language-Independent System for Data-Driven Dependency Parsing", |
| "authors": [ |
| { |
| "first": "", |
| "middle": [], |
| "last": "Nivre", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "Natural Language Engineering", |
| "volume": "13", |
| "issue": "", |
| "pages": "95--135", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Nivre et al. (2007). MaltParser: A Language- Independent System for Data-Driven Dependency Parsing. Natural Language Engineering. 13, pp. 95- 135.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Integrating Graph-Based and Transition-Based Dependency Parsers", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Nivre", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [ |
| "T" |
| ], |
| "last": "Mcdonald", |
| "suffix": "" |
| } |
| ], |
| "year": 2008, |
| "venue": "Proceedings of ACL-08: HLT", |
| "volume": "", |
| "issue": "", |
| "pages": "950--958", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Nivre, J., & McDonald, R. T. (2008). Integrating Graph- Based and Transition-Based Dependency Parsers. Proceedings of ACL-08: HLT, pp. 950-958, Columbus, Ohio", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Universal Dependencies v1: A Multilingual Treebank Collection", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Nivre", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [ |
| "C" |
| ], |
| "last": "De Marneffe", |
| "suffix": "" |
| }, |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Ginter", |
| "suffix": "" |
| }, |
| { |
| "first": "Y", |
| "middle": [], |
| "last": "Goldberg", |
| "suffix": "" |
| }, |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Hajic", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [ |
| "D" |
| ], |
| "last": "Manning", |
| "suffix": "" |
| }, |
| { |
| "first": ".", |
| "middle": [ |
| "." |
| ], |
| "last": "Tsarfaty", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [], |
| "last": "", |
| "suffix": "" |
| } |
| ], |
| "year": 2016, |
| "venue": "LREC", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Nivre, J., de Marneffe, M. C., Ginter, F., Goldberg, Y., Hajic, J., Manning, C. D., ... & Tsarfaty, R. (2016, May). Universal Dependencies v1: A Multilingual Treebank Collection. In LREC.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "Natural Language Understanding Tools with Low Language Resource in Building Automatic Indonesian Mind Map Generator", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Purwarianti", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Saelan", |
| "suffix": "" |
| }, |
| { |
| "first": "I", |
| "middle": [], |
| "last": "Afif", |
| "suffix": "" |
| }, |
| { |
| "first": "F", |
| "middle": [], |
| "last": "Ferdian", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [ |
| "F" |
| ], |
| "last": "Wicaksono", |
| "suffix": "" |
| } |
| ], |
| "year": 2013, |
| "venue": "International Journal on Electrical Engineering and Informatics", |
| "volume": "5", |
| "issue": "3", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Purwarianti, A., Saelan, A., Afif, I., Ferdian, F., Wicaksono, A.F. (2013). Natural Language Understanding Tools with Low Language Resource in Building Automatic Indonesian Mind Map Generator. International Journal on Electrical Engineering and Informatics, Vol 5, No. 3, September 2013.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "Dependency Parsing for Indonesian with GULP", |
| "authors": [ |
| { |
| "first": "M", |
| "middle": [ |
| "K" |
| ], |
| "last": "Sulaeman", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Purwarianti", |
| "suffix": "" |
| } |
| ], |
| "year": 2011, |
| "venue": "Proceeding of ICEEI (International Conference of Electrical Engineering and Informatics)", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Sulaeman, M. K., and Purwarianti, A. (2012). \"Dependency Parsing for Indonesian with GULP\". Proceeding of ICEEI (International Conference of Electrical Engineering and Informatics) 2011. July 2011. Bandung, Indonesia", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Ensemble Models for Dependency Parsing", |
| "authors": [ |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Surdeanu", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [ |
| "D" |
| ], |
| "last": "Manning", |
| "suffix": "" |
| } |
| ], |
| "year": 2010, |
| "venue": "Cheap and Good? Human Language Technologies: The 2010 Annual Conference of the North American Chapter of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "649--652", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Surdeanu, M., and Manning, C. D. (2010). Ensemble Models for Dependency Parsing: Cheap and Good? Human Language Technologies: The 2010 Annual Conference of the North American Chapter of the Association for Computational Linguistics, pp. 649- 652.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "text": "Example of a parsed Indonesian sentence (TL: That allegation does not miss) with dependency structure", |
| "uris": null, |
| "type_str": "figure", |
| "num": null |
| }, |
| "FIGREF1": { |
| "text": "Overall ensemble parsing process", |
| "uris": null, |
| "type_str": "figure", |
| "num": null |
| }, |
| "TABREF1": { |
| "content": "<table><tr><td/><td>Simple sentence</td><td>1067</td><td>(50.86%)</td></tr><tr><td>Number of clauses</td><td>Compound sentences Complex sentence</td><td>349 527</td><td>(16.63%) (25.12%)</td></tr><tr><td/><td>Complex-compound sentence</td><td>155</td><td>(7.39%)</td></tr><tr><td>Presence of gerund</td><td>Present Not present</td><td>50 2048</td><td>(2.38%) (97.62%)</td></tr><tr><td/><td>Transitive verb</td><td>1017</td><td>(48.47%)</td></tr><tr><td/><td>Intransitive verb</td><td>989</td><td>(47.14%)</td></tr><tr><td>POS tag of central dependency</td><td>Adjective</td><td>69</td><td>(3.29%)</td></tr><tr><td/><td>Noun</td><td>8</td><td>(0.38%)</td></tr><tr><td/><td>Others</td><td>15</td><td>(0.71%)</td></tr><tr><td/><td>None</td><td>1630</td><td>(77.69%)</td></tr><tr><td>Deletion type</td><td>Anaphoric Cataphoric</td><td>312 89</td><td>(14.87%) (4.24%)</td></tr><tr><td/><td>Structural</td><td>67</td><td>(3.19%)</td></tr></table>", |
| "text": "", |
| "html": null, |
| "type_str": "table", |
| "num": null |
| }, |
| "TABREF2": { |
| "content": "<table/>", |
| "text": "", |
| "html": null, |
| "type_str": "table", |
| "num": null |
| }, |
| "TABREF4": { |
| "content": "<table><tr><td>Ensemble Technique</td><td/><td>Accuracy</td></tr><tr><td>Unweighted majority</td><td>86.6%</td></tr><tr><td>Eisner</td><td>86.5%</td></tr><tr><td>Chu-Liu-Edmonds</td><td>86.5%</td></tr><tr><td>Attardi</td><td>86.5%</td></tr><tr><td colspan=\"3\">Table 4. Accuracy of Parsers with Different Ensemble Technique</td></tr><tr><td>Ensemble Technique</td><td/><td>Accuracy</td></tr><tr><td colspan=\"2\">All parsing algorithms (MaltParser + MSTParser)</td><td>85.5%</td></tr><tr><td>All parsing algorithms from MaltParser</td><td/><td>85.1%</td></tr><tr><td>All parsing algorithms from MSTParser</td><td/><td>86.0%</td></tr><tr><td>All projective parsing algorithms</td><td/><td>85.6%</td></tr><tr><td>All non-projective parsing algorithms</td><td/><td>85.3%</td></tr><tr><td colspan=\"2\">Top three parsers (2-Planar, Eisner, and Chu-Liu Edmonds)</td><td>86.5%</td></tr></table>", |
| "text": "Accuracy of Single Dependency ParsersFigure 3. Correct dependency tree for sentence Dia tidak malu bertanya di depan umum (He is not ashamed of asking questions in public)Figure 4. Parsing result for sentence Dia tidak malu bertanya di depan umum (He is not ashamed of asking questions in public) using 2-Planar, Eisner, and Chu-Liu Edmonds parsing algorithm respectively", |
| "html": null, |
| "type_str": "table", |
| "num": null |
| }, |
| "TABREF5": { |
| "content": "<table/>", |
| "text": "Accuracy of Parsers with Different Ensemble Combination", |
| "html": null, |
| "type_str": "table", |
| "num": null |
| } |
| } |
| } |
| } |