Iterative Edit-Based Unsupervised Sentence Simplification

Total Page:16

File Type:pdf, Size:1020Kb

Iterative Edit-Based Unsupervised Sentence Simplification Iterative Edit-Based Unsupervised Sentence Simplification Dhruv Kumar,1 Lili Mou,2 Lukasz Golab,1 Olga Vechtomova1 1University of Waterloo 2Department of Computing Science, University of Alberta Alberta Machine Intelligence Institute (Amii) fd35kumar,lgolab,[email protected] [email protected] Abstract (Seq2Seq)-based NMT systems are shown to be more successful and serve as the state of the art. We present a novel iterative, edit-based ap- However, supervised Seq2Seq models have two proach to unsupervised sentence simplifica- shortcomings. First, they give little insight into the tion. Our model is guided by a scoring func- tion involving fluency, simplicity, and mean- simplification operations, and provide little con- ing preservation. Then, we iteratively per- trol or adaptability to different aspects of simplifi- form word and phrase-level edits on the com- cation (e.g., lexical vs. syntactical simplification). plex sentence. Compared with previous ap- Second, they require a large number of complex- proaches, our model does not require a paral- simple aligned sentence pairs, which in turn require lel training set, but is more controllable and considerable human effort to obtain. interpretable. Experiments on Newsela and In previous work, researchers have addressed WikiLarge datasets show that our approach some of the above issues. For example, Alva- is nearly as effective as state-of-the-art super- vised approaches.1 Manchego et al.(2017) and Dong et al.(2019) explicitly model simplification operators such as 1 Introduction word insertion and deletion. Although these ap- proaches are more controllable and interpretable Sentence simplification is the task of rewriting text than standard Seq2Seq models, they still require to make it easier to read, while preserving its main large volumes of aligned data to learn these oper- meaning and important information. Sentence sim- ations. To deal with the second issue, Surya et al. plification is relevant in various real-world and (2019) recently proposed an unsupervised neural downstream applications. For instance, it can bene- text simplification approach based on the paradigm fit people with autism (Evans et al., 2014), dyslexia of style transfer. However, their model is hard to in- (Rello et al., 2013), and low-literacy skills (Watan- terpret and control, like other neural network-based abe et al., 2009). It can also serve as a preprocess- models. Narayan and Gardent(2016) attempted ing step to improve parsers (Chandrasekar et al., to address both issues using a pipeline of lexical 1996) and summarization systems (Klebanov et al., substitution, sentence splitting, and word/phrase 2004). deletion. However, these operations can only be Recent efforts in sentence simplification have executed in a fixed order. been influenced by the success of machine transla- In this paper, we propose an iterative, edit- tion. In fact, the simplification task is often treated based unsupervised sentence simplification ap- as monolingual translation, where a complex sen- proach, motivated by the shortcomings of existing tence is translated to a simple one. Such simplifi- work. We first design a scoring function that mea- cation systems are typically trained in a supervised sures the quality of a candidate sentence based on way by either phrase-based machine translation the key characteristics of the simplification task, (PBMT, Wubben et al., 2012; Narayan and Gardent, namely, fluency, simplicity, and meaning preser- 2014; Xu et al., 2016) or neural machine translation vation. Then, we generate simplified candidate (NMT, Zhang and Lapata, 2017; Guo et al., 2018; sentences by iteratively editing the given complex Kriz et al., 2019). Recently, sequence-to-sequence sentence using three simplification operations (lex- 1Code is released at https://github.com/ ical simplification, phrase extraction, deletion and ddhruvkr/Edit-Unsup-TS reordering). Our model seeks the best simplified 7918 Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pages 7918–7928 July 5 - 10, 2020. c 2020 Association for Computational Linguistics on simplicity, fluency, and relevance. Zhao et al. (2018a) integrated the transformer architecture and paraphrasing rules to guide simplification learning. Kriz et al.(2019) produced diverse simplifications by generating and re-ranking candidates by fluency, adequacy, and simplicity. Guo et al.(2018) showed that simplification benefits from multi-task learning with paraphrase and entailment generation. Martin et al.(2019) enhanced the transformer architecture with conditioning parameters such as length, lexi- Figure 1: An example of three edit operations on a cal and syntactic complexity. given sentence. Note that dropping clauses or phrases Recently, edit-based techniques have been de- is common in text simplification datasets. veloped for text simplification. Alva-Manchego et al.(2017) trained a model to predict three simpli- candidate sentence according to the scoring func- fication operators (keep, replace, and delete) from tion. Compared with Narayan and Gardent(2016), aligned pairs. Dong et al.(2019) employed a simi- the order of our simplification operations is not lar approach but in an end-to-end trainable manner fixed and is decided by the model. with neural networks. However, these approaches Figure1 illustrates an example in which our are supervised and require large volumes of parallel model first chooses to delete a sentence fragment, training data; also, their edits are only at the word followed by reordering the remaining fragments level. By contrast, our method works at both word and replacing a word with a simpler synonym. and phrase levels in an unsupervised manner. We evaluate our approach on the Newsela (Xu For unsupervised sentence simplification, Surya et al., 2015) and WikiLarge (Zhang and Lapata, et al.(2019) adopted style-transfer techniques, us- 2017) corpora. Experiments show that our ap- ing adversarial and denoising auxiliary losses for proach outperforms previous unsupervised meth- content reduction and lexical simplification. How- ods and even performs competitively with state-of- ever, their model is based on a Seq2Seq network, the-art supervised ones, in both automatic metrics which is less interpretable and controllable. They and human evaluations. We also demonstrate the cannot perform syntactic simplification since syn- interpretability and controllability of our approach, tax typically does not change in style-transfer tasks. even without parallel training data. Narayan and Gardent(2016) built a pipeline-based unsupervised framework with lexical simplifica- 2 Related Work tion, sentence splitting, and phrase deletion. How- Early work used handcrafted rules for text simpli- ever, these operations are separate components in fication, at both the syntactic level (Siddharthan, the pipeline, and can only be executed in a fixed 2002) and the lexicon level (Carroll et al., 1999). order. Later, researchers adopted machine learning meth- Unsupervised edit-based approaches have re- ods for text simplification, modeling it as mono- cently been explored for natural language gener- lingual phrase-based machine translation (Wubben ation tasks, such as style transfer, paraphrasing, et al., 2012; Xu et al., 2016). Further, syntactic in- and sentence error correction. Li et al.(2018) formation was also considered in the PBMT frame- proposed edit-based style transfer without parallel work, for example, constituency trees (Zhu et al., supervision. They replaced style-specific phrases 2010) and dependency trees (Bingel and Søgaard, with those in the target style, which are retrieved 2016). Narayan and Gardent(2014) performed from the training corpus. Miao et al.(2019) used probabilistic sentence splitting and deletion, fol- Metropolis–Hastings sampling for constrained sen- lowed by MT-based paraphrasing. tence generation. In this paper, we model text gen- Nisioi et al.(2017) employed neural machine eration as a search algorithm, and design search translation (NMT) for text simplification, using a objective and search actions specifically for text sequence-to-sequence (Seq2Seq) model (Sutskever simplification. Concurrent work further shows the et al., 2014). Zhang and Lapata(2017) used re- success of search-based unsupervised text genera- inforcement learning to optimize a reward based tion for paraphrasing (Liu et al., 2020) and summa- 7919 rization (Schumann et al., 2020). where PLM is the sentence probability given by Q the language model, PU(s) = w2s P (w) is the 3 Model product of the unigram probability of a word w in In this section, we first provide an overview of our the sentence, and jsj is the sentence length. approach, followed by a detailed description of SLOR essentially penalizes a plain LM’s prob- each component, namely, the scoring function, the ability by unigram likelihood and the length. It edit operations, and the stopping criteria. ensures that the fluency score of a sentence is not penalized by the presence of rare words. Consider 3.1 Overview two sentences, “I went to England for vacation” We first define a scoring function as our search and “I went to Senegal for vacation.” Even though objective. It allows us to impose both hard and both sentences are equally fluent, a standard LM soft constraints, balancing the fluency, simplicity, will give a higher score to the former, since the and adequacy of candidate simplified sentences word “England” is more likely to occur than “Sene- (Section 3.2). gal.” In simplification, SLOR is preferred for pre-
Recommended publications
  • Measuring Text Simplification with the Crowd
    Measuring Text Simplification with the Crowd Walter S. Lasecki Luz Rello Jeffrey P. Bigham ROC HCI HCI Institute HCI and LT Institutes Dept. of Computer Science School of Computer Science School of Computer Science University of Rochester Carnegie Mellon University Carnegie Mellon University [email protected] [email protected] [email protected] ABSTRACT the U.S. [41]1 and the European Guidelines for the Production of Text can often be complex and difficult to read, especially for peo­ Easy-to-Read Information in Europe [23]. ple with cognitive impairments or low literacy skills. Text simplifi­ Text simplification is an area of Natural Language Processing cation is a process that reduces the complexity of both wording and (NLP) that attempts to solve this problem automatically by reduc­ structure in a sentence, while retaining its meaning. However, this ing the complexity of both wording (lexicon) and structure (syn­ is currently a challenging task for machines, and thus, providing tax) in a sentence [46]. Previous efforts on automatic text simpli­ effective on-demand text simplification to those who need it re­ fication have focused on people with autism [20, 39], people with mains an unsolved problem. Even evaluating the simplicity of text Down syndrome [48], people with dyslexia [42, 43], and people remains a challenging problem for both computers, which cannot with aphasia [11, 18]. understand the meaning of text, and humans, who often struggle to However, automatic text simplification is in an early stage and agree on what constitutes a good simplification. still is not useful for the target users [20, 43, 48].
    [Show full text]
  • Proceedings of the 1St Workshop on Tools and Resources to Empower
    LREC 2020 Workshop Language Resources and Evaluation Conference 11–16 May 2020 1st Workshop on Tools and Resources to Empower People with REAding DIfficulties (READI) PROCEEDINGS Edited by Nuria´ Gala and Rodrigo Wilkens Proceedings of the LREC 2020 first workshop on Tools and Resources to Empower People with REAding DIfficulties (READI) Edited by: Núria Gala and Rodrigo Wilkens ISBN: 979-10-95546-44-3 EAN: 9791095546443 For more information: European Language Resources Association (ELRA) 9 rue des Cordelières 75013, Paris France http://www.elra.info Email: [email protected] c European Language Resources Association (ELRA) These workshop proceedings are licensed under a Creative Commons Attribution-NonCommercial 4.0 International License ii Preface Recent studies show that the number of children and adults facing difficulties in reading and understanding written texts is steadily growing. Reading challenges can show up early on and may include reading accuracy, speed, or comprehension to the extent that the impairment interferes with academic achievement or activities of daily life. Various technologies (text customization, text simplification, text to speech devices, screening for readers through games and web applications, to name a few) have been developed to help poor readers to get better access to information as well as to support reading development. Among those technologies, text simplification is a powerful way to leverage document accessibility by using NLP techniques. The “First Workshop on Tools and Resources to Empower People with REAding DIfficulties” (READI), collocated with the “International Conference on Language Resources and Evaluation” (LREC 2020), aims at presenting current state-of-the-art techniques and achievements for text simplification together with existing reading aids and resources for lifelong learning, addressing a variety of domains and languages, including natural language processing, linguistics, psycholinguistics, psychophysics of vision and education.
    [Show full text]
  • Data-Driven Text Simplification
    Data-Driven Text Simplification Sanja Štajner and Horacio Saggion [email protected] http://web.informatik.uni-mannheim.de/sstajner/index.html University of Mannheim, Germany [email protected] #TextSimplification2018 https://www.upf.edu/web/horacio-saggion University Pompeu Fabra, Spain COLING 2018 Tutorial Presenters • Sanja Stajner • Horacio Saggion • http://web.informatik.uni- • http://www.dtic.upf.edu/~hsaggion mannheim.de/sstajner • https://www.linkedin.com/pub/horacio- • https://www.linkedin.com/in/sanja- saggion/16/9b9/174 stajner-a6904738 • https://twitter.com/h_saggion • Data and Web Science Group • Large Scale Text Understanding • https://dws.informatik.uni - Systems Lab / TALN group mannheim.de/en/home/ • http://www.taln.upf.edu • University of Mannheim, Germany • Department of Information & Communication Technologies • Universitat Pompeu Fabra, Barcelona, Spain © 2018 by S. Štajner & H. Saggion 2 Tutorial antecedents • Previous tutorials on the topic given at: • IJCNLP 2013 and RANLP 2015 (H. Saggion) • RANLP 2017 (S. Štajner) • Automatic Text Simplification. H. Saggion. 2017. Morgan & Claypool. Synthesis Lectures on Human Language Technologies Series. https://www.morganclaypool.com/doi/abs/10.2200/S00700ED1V01Y201602 HLT032 © 2018 by S. Štajner & H. Saggion 3 Outline • Motivation for ATS • Automatic text simplification • TS projects • TS resources • Neural text simplification © 2018 by S. Štajner & H. Saggion 4 PART 1 Motivation for Text Simplification © 2018 by S. Štajner & H. Saggion 5 Text Simplification (TS) The process of transforming a text into an equivalent which is more readable and/or understandable by a target audience • During simplification, complex sentences are split into simple ones and uncommon vocabulary is replaced by more common expressions • TS is a complex task which encompasses a number of operations applied at different linguistic levels: • Lexical • Syntactic • Discourse • Started to attract the attention of natural language processing some years ago (1996) mainly as a pre-processing step © 2018 by S.
    [Show full text]
  • Classifier-Based Text Simplification for Improved Machine Translation
    Classifier-Based Text Simplification for Improved Machine Translation Shruti Tyagi Deepti Chopra Iti Mathur Nisheeth Joshi Department of Computer Department of Computer Department of Computer Department of Computer Science Science Science Science Banasthali University Banasthali University Banasthali University Banasthali University Rajasthan, India Rajasthan, India Rajasthan, India Rajasthan, India [email protected] [email protected] [email protected] [email protected] Abstract— Machine Translation is one of the research fields E. Text Summarization: Splitting of sentence or conversion of of Computational Linguistics. The objective of many MT long sentence into smaller ones helps in text summarization. Researchers is to develop an MT System that produce good quality and high accuracy output translations and which also There are also different approaches through which we can covers maximum language pairs. As internet and Globalization is apply text simplification. These are: increasing day by day, we need a way that improves the quality of translation. For this reason, we have developed a Classifier based Text Simplification Model for English-Hindi Machine A. Lexical Simplification: In this approach, identification of Translation Systems. We have used support vector machines and complex words takes place and generation of Naïve Bayes Classifier to develop this model. We have also evaluated the performance of these classifiers. substitutes/synonyms takes place accordingly. For example, in the example below, we have highlighted the complex words Keywords— Machine Translation, Text Simplification, Naïve and their respective substitutes. Bayes Classifier, Support Vector Machine Classifier Original Sentence: Audible word was originally named audire in Latin. I. INTRODUCTION Simplified Sentence: Audible word was first called audire in Text Simplification is the process that reduces the Latin.
    [Show full text]
  • Natural Language Processing Tools for Reading Level Assessment and Text Simplification for Bilingual Education
    Natural Language Processing Tools for Reading Level Assessment and Text Simplification for Bilingual Education Sarah E. Petersen A dissertation submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy University of Washington 2007 Program Authorized to Offer Degree: Computer Science & Engineering University of Washington Graduate School This is to certify that I have examined this copy of a doctoral dissertation by Sarah E. Petersen and have found that it is complete and satisfactory in all respects, and that any and all revisions required by the final examining committee have been made. Chair of the Supervisory Committee: Mari Ostendorf Reading Committee: Mari Ostendorf Oren Etzioni Henry Kautz Date: In presenting this dissertation in partial fulfillment of the requirements for the doctoral degree at the University of Washington, I agree that the Library shall make its copies freely available for inspection. I further agree that extensive copying of this dissertation is allowable only for scholarly purposes, consistent with “fair use” as prescribed in the U.S. Copyright Law. Requests for copying or reproduction of this dissertation may be referred to Proquest Information and Learning, 300 North Zeeb Road, Ann Arbor, MI 48106-1346, 1-800-521-0600, to whom the author has granted “the right to reproduce and sell (a) copies of the manuscript in microform and/or (b) printed copies of the manuscript made from microform.” Signature Date University of Washington Abstract Natural Language Processing Tools for Reading Level Assessment and Text Simplification for Bilingual Education Sarah E. Petersen Chair of the Supervisory Committee: Professor Mari Ostendorf Electrical Engineering Reading proficiency is a fundamental component of language competency.
    [Show full text]
  • Experimenting Sentence Split-And-Rephrase Using Part-Of-Speech Labels
    Experimenting Sentence Split-and-Rephrase Using Part-of-Speech Labels P. Berlanga Neto and E. Y. Okano and E. E. S. Ruiz Departamento de Computação e Matemática, FFCLRP Universidade de São Paulo (USP). Av. Bandeirantes, 3900, Monte Alegre. 14040-901, Ribeirão Preto, SP – Brazil [pauloberlanga, okano700, evandro]@usp.br Abstract. Text simplification (TS) is a natural language transformation process that reduces linguistic complexity while preserving semantics and retaining its original meaning. This work aims to present a research proposal for automatic simplification of texts, precisely a split-and-rephrase approach based on an encoder-decoder neural network model. The proposed method was trained against the WikiSplit English corpus with the help of a part-of-speech tagger and obtained a BLEU score validation of 74.72%. We also experimented with this trained model to split-and-rephrase sentences written in Portuguese with relative success, showing the method’s potential. CCS Concepts: • Computing methodologies → Natural language processing. Keywords: natural language processing, neural networks, sentence simplification 1. INTRODUCTION Text Simplification (TS) is the process of modifying natural language to reduce complexity and im- prove both readability and understandability [Shardlow 2014]. A simplified vocabulary or a simplified text structure can benefit different publics, such as people with low education levels, children, non- native individuals, people who have learning disorders (such as autism, dyslexia, and aphasia), among others [Štajner et al. 2015]. Although the simplicity of a text seems intuitively obvious, it does not have a precise definition in technical terms. Traditional assessment metrics consider factors such as sentence length, syllable count, and other linguistic features of the text to identify it as elaborate or not [Shardlow 2014].
    [Show full text]
  • Arxiv:2005.00352V2 [Cs.CL] 16 Apr 2021
    MUSS: Multilingual Unsupervised Sentence Simplification by Mining Paraphrases Louis Martin1;2 Angela Fan1;3 Éric de la Clergerie2 Antoine Bordes1 Benoît Sagot2 1Facebook AI Research, Paris, France 2Inria, Paris, France 3LORIA, Nancy, France {louismartin, angelafan, abordes}@fb.com {eric.de_la_clergerie, benoit.sagot}@inria.fr Abstract in multiple ways, and depend on the target audi- Progress in sentence simplification has been ence. Simplification guidelines are not uniquely hindered by a lack of labeled parallel simpli- defined, outlined by the stark differences in English fication data, particularly in languages other simplification benchmarks (Alva-Manchego et al., than English. We introduce MUSS, a Multi- 2020a). This highlights the need for more general lingual Unsupervised Sentence Simplification models that can adjust to different simplification system that does not require labeled simplifica- contexts and scenarios. tion data. MUSS uses a novel approach to sen- In this paper, we propose to train controllable tence simplification that trains strong models using sentence-level paraphrase data instead models using sentence-level paraphrase data only, of proper simplification data. These models i.e. parallel sentences that have the same meaning leverage unsupervised pretraining and control- but phrased differently. In order to generate sim- lable generation mechanisms to flexibly adjust plifications and not paraphrases, we use ACCESS attributes such as length and lexical complex- (Martin et al., 2020) to control attributes such as ity at inference time. We further present a length, lexical and syntactic complexity. Para- method to mine such paraphrase data in any phrase data is more readily available, and opens the language from Common Crawl using semantic sentence embeddings, thus removing the need door to training flexible models that can adjust to for labeled data.
    [Show full text]
  • Text Simplification Using Typed Dependencies
    Text Simplification using Typed Dependencies: A Comparison of the Robustness of Different Generation Strategies Advaith Siddharthan University of Aberdeen Department of Computing Science [email protected] Abstract The original police inquiry, which led to Mulcaire being jailed in 2007, also dis- We present a framework for text simplification covered evidence that he has successfully based on applying transformation rules to a intercepted voicemail messages belonging typed dependency representation produced by to Rebekah Brooks, who was editor of the the Stanford parser. We test two approaches Sun when Mulcaire was working exclu- to regeneration from typed dependencies: (a) sively for its Sunday stablemate. gen-light, where the transformed dependency graphs are linearised using the word order and to: morphology of the original sentence, with any changes coded into the transformation rules, The original police inquiry led to Mulcaire and (b) gen-heavy, where the Stanford depen- being jailed in 2007. The police inquiry dencies are reduced to a DSyntS representa- also discovered evidence that he has suc- tion and sentences are generating formally us- ing the RealPro surface realiser. The main cessfully intercepted voicemail messages contribution of this paper is to compare the belonging to Rebekah Brooks. Rebekah robustness of these approaches in the presence Brooks was editor of the Sun. This was of parsing errors, using both a single parse and when Mulcaire was working exclusively an n-best parse setting in an overgenerate and for its Sunday stablemate. rank approach. We find that the gen-light ap- proach is robust to parser error, particularly in The main aim of this paper is to describe and com- the n-best parse setting.
    [Show full text]
  • Workshopabstracts
    TENTH INTERNATIONAL CONFERENCE ON LANGUAGE RESOURCES AND EVALUATION MAY 23 – 28, 2016 GRAND HOTEL BERNARDIN CONFERENCE CENTRE Portorož , SLOVENIA WORKSHOP ABSTRACTS Editors: Please refer to each single workshop list of editors. Assistant Editors: Sara Goggi, Hélène Mazo The LREC 2016 Proceedings are licensed under a Creative Commons Attribution- NonCommercial 4.0 International License LREC 2016, TENTH INTERNATIONAL CONFERENCE ON LANGUAGE RESOURCES AND EVALUATION Title: LREC 2016 Workshop Abstracts Distributed by: ELRA – European Language Resources Association 9, rue des Cordelières 75013 Paris France Tel.: +33 1 43 13 33 33 Fax: +33 1 43 13 33 30 www.elra.info and www.elda.org Email: [email protected] and [email protected] ISBN 978-2-9517408-9-1 EAN 9782951740891 ii TABLE OF CONTENTS W12 Joint 2nd Workshop on Language & Ontology (LangOnto2) & Terminology & Knowledge Structures (TermiKS) …………………………………………………………………………….. 1 W5 Cross -Platform Text Mining & Natural Language Processing Interoperability ……. 12 W39 9th Workshop on Building & Using Comparable Corpora (BUCC 2016)…….…….. 23 W19 Collaboration & Computing for Under-Resourced Languages (CCURL 2016).….. 31 W31 Improving Social Inclusion using NLP: Tools & Resources ……………………………….. 43 W9 Resources & ProcessIng of linguistic & extra-linguistic Data from people with various forms of cognitive / psychiatric impairments (RaPID)………………………………….. 49 W25 Emotion & Sentiment Analysis (ESA 2016)…………..………………………………………….. 58 W28 2nd Workshop on Visualization as added value in the development, use & evaluation of LRs (VisLR II)……….……………………………………………………………………………… 68 W15 Text Analytics for Cybersecurity & Online Safety (TA-COS)……………………………… 75 W13 5th Workshop on Linked Data in Linguistics (LDL-2016)………………………………….. 83 W10 Lexicographic Resources for Human Language Technology (GLOBALEX 2016)… 93 W18 Translation Evaluation: From Fragmented Tools & Data Sets to an Integrated Ecosystem?..................................................................................................................
    [Show full text]
  • Par4sim – Adaptive Paraphrasing for Text Simplification
    Par4Sim – Adaptive Paraphrasing for Text Simplification Seid Muhie Yimam Chris Biemann Language Technology Group Department of Informatics, MIN Faculty Universität Hamburg, Germany {yimam,biemann}@informatik.uni-hamburg.de Abstract Learning from a real-world data stream and continuously updating the model without explicit supervision is a new challenge for NLP applications with machine learning components. In this work, we have developed an adaptive learning system for text simplification, which improves the underlying learning-to-rank model from usage data, i.e. how users have employed the system for the task of simplification. Our experimental result shows that, over a period of time, the performance of the embedded paraphrase ranking model increases steadily improving from a score of 62.88% up to 75.70% based on the NDCG@10 evaluation metrics. To our knowledge, this is the first study where an NLP component is adaptively improved through usage. Title and Abstract in Amharic Par4Sim -- የሚጣጣም መልሶ መጻፍ፤ ፅሁፍን ለማቅለል ከገሃዱ ዓለም የመረጃ ፍሰት መማርና ቀጥተኛ ድጋፍ ሳያስፈልገው ሞዴሉን በተከታታይ ለማሻሻል ማሽን ለርኒንግ (በራሱ መማር የሚችል የኮምፒዩተር መርሃ ግብር) በሚያካትቱ የተፈጥሯዊ የቋንቋ ቴክኖሎጂ (ተ.ቋ.ቴ - NLP) ጥናት አዲስ ፈተና ሆኗል። በዚህ ምርምር፤ ተጠቃሚዎች እንድን መተግበሪያ በመጠቀም ላይ ሳሉ ማለትም በተጠቃሚዎች የተለያዩ ድርጊቶች መሰረት ውህቦችን ከበስተጀርባ ሆኖ በመሰብስሰብ የማሽን ለርኒንጉን ሞዴል በማዘመን እየተጣጣመ መማር የሚችል የጽሁፍ አቅላይ ስርዓት ሰርተናል። የሲስተማችንን ውጤታማነት ለማረጋገጥ፤ አንድን ፅሁፍ ለተለያዩ ተጠቃሚዎች በቀላሉ እንዲገባቸው ለማድረግ ተጣጣሚ ትርጓሜዎችን እንደ ምሳሌ ወስደናል። በመሆኑም፤ አንድ ተጠቃሚ አንድን ፅሁፍ መረዳት ሲያቅተው፤ የኛን ተንታኝ መተግበሪያ ተጠቅሞ አማራጭ ቃል ወይንም ሐረግ በመተካት ፅሁፍን የበለጠ ቀላል ማድረግ ይችላል። የሙከራ ውጤታችን እንደሚያሳየው ከሆነ፤ በተከታታይ ጊዜ ውስጥ እንዲማር/እንዲላመድ በሲስተሙ ውስጥ የተሸጎጠው ደረጃ መዳቢ ሞዴል፤ በNDCG@10 የግምገማ ልኬቶች መሰረት፣ ሳያቋርጥ በመጨመር ከ62.88% እስከ 75.70% ድረስ መሻሻል አሳይቷል። እኛ እስከምናውቀው ድረስ፤ ይህ ጥናት፤ የተፈጥሯዊ የቋንቋ ቴክኖሎጂ (ተ.ቋ.ቴ - NLP) ትግበራዎች በአግልግሎት አጠቃቀም ጊዜ ውህቦችን በመሰብስብ የማሽን ለርኒንግ ስልተ ቀመር ሞዴል አገልግሎት በሂደት ውስጥ እያለ እንዲሻሻል/እንዲላመድ የሚያደርግ የመጀመሪያው ጥናት ነው። 1 Introduction Traditionally, training data for machine learning-based applications are collected amass, using a specific annotation tool.
    [Show full text]
  • Automatic Text Simplification
    Book Review Automatic Text Simplification Horacio Saggion (Universitat Pompeu Fabra) Morgan & Claypool (Synthesis Lectures on Human Language Technologies, edited by Graeme Hirst, volume 37), 2017, xvi+121 pp; paperback, ISBN 978-1-62705-868-1; hardcover, ISBN 9781681732145, $69.95; ebook, ISBN 978-1-62705-869-8, $39.96; doi:10.2200/S00700ED1V01Y201602HLT032 Reviewed by Xiaojun Wan Peking University Automatic text simplification is a special task of text-to-text generation, and it converts a text into another text that is easier to read and understand, while the underlying meaning and information remains the same. A text simplification system usually re- places difficult or unknown phrases with simpler equivalents and transforms long and syntactically complex sentences into shorter and less complex ones. Here is an example from Siddharthan (2006). The first sentence contains two relative clauses and one conjoined verb phrase, and the text below is the simplified version. • Also contributing to the firmness in copper, the analyst noted, was a report by Chicago purchasing agents, which precedes the full purchasing agents report that is due out today and gives an indication of what the full report might hold. • Also contributing to the firmness in copper, the analyst noted, was a report by Chicago purchasing agents. The Chicago report precedes the full purchasing agents report. The Chicago report gives an indication of what the full report might hold. The full report is due out today. Research on automatic text simplification started 20 years ago, and it has become a very important area in natural language processing (NLP) and attracted much attention in recent years.
    [Show full text]
  • Discourse Level Factors for Sentence Deletion in Text Simplification
    Discourse Level Factors for Sentence Deletion in Text Simplification Yang Zhong,*1 Chao Jiang,1 Wei Xu,1 Junyi Jessy Li2 1 Department of Computer Science and Engineering, The Ohio State University 2 Department of Linguistics, The University of Texas at Austin fzhong.536, jiang.1530, [email protected] [email protected] Abstract most prevalent, as simplified texts tend to be shorter (Pe- tersen and Ostendorf 2007; Drndarevic and Saggion 2012; This paper presents a data-driven study focusing on analyz- Woodsend and Lapata 2011). ing and predicting sentence deletion — a prevalent but under- This work aims to facilitate better understanding of sen- studied phenomenon in document simplification — on a large tence deletion in document-level text simplification. While English text simplification corpus. We inspect various docu- ment and discourse factors associated with sentence deletion, prior work analyzed sentence position and content in a cor- using a new manually annotated sentence alignment corpus pus study (Petersen and Ostendorf 2007), we hypothesize we collected. We reveal that professional editors utilize differ- and show that sentence deletion is driven partially by con- ent strategies to meet readability standards of elementary and textual, discourse-level information, in addition to the con- middle schools. To predict whether a sentence will be deleted tent within a sentence. during simplification to a certain level, we harness automat- We utilize the Newsela2 corpus (Xu, Callison-Burch, and ically aligned data to train a classification model. Evaluated Napoles 2015) which contains multiple versions of a docu- on our manually annotated data, our best models reached F1 ment rewritten by professional editors.
    [Show full text]