Arxiv:1805.02282V1 [Cs.CL] 6 May 2018 Omn

Total Page:16

File Type:pdf, Size:1020Kb

Arxiv:1805.02282V1 [Cs.CL] 6 May 2018 Omn Multi-Domain Neural Machine Translation Sander Tars and Mark Fishel Institute of Computer Science University of Tartu, Estonia [email protected], [email protected] Abstract lating multiple domains one has to run an individ- ual NMT system for each domain. We present an approach to neural ma- In this work we treat text domains as distinct chine translation (NMT) that supports mul- languages: for example, instead of English- tiple domains in a single model and al- to-Estonian translation we see it as translating lows switching between the domains when English news to Estonian news. We test two mul- translating. The core idea is to treat text tilingual NMT approaches (Johnson et al., 2016; domains as distinct languages and use mul- Ostling¨ and Tiedemann, 2017) in a bilingual tilingual NMT methods to create multi- multi-domain setting and show that both outper- domain translation systems; we show that form single-domain fine-tuning on all the text this approach results in significant trans- domains in our experiments. lation quality gains over fine-tuning. We However, this only works when the text domain also explore whether the knowledge of pre- is known both when training and translating. In specified text domains is necessary; turns some cases the text domain of the input segment out that it is after all, but also that when it is unknown – for example, web MT systems have is not known quite high translation quality to cope with a variety of text domains. Also, can be reached, and even higher than with some parallel texts do not have a single domain known domains in some cases. while they are either a mix of texts from different sources (like crawled corpora) or naturally consti- 1 Introduction tute a highly heterogeneous mix of texts (like sub- titles or Wikipedia articles). Data-driven machine translation (MT) systems de- We address these issues by replacing known do- pends on the text domain of their training data. In mains with automatically derived ones. At training a typical in-domain MT scenario the amount of time we cluster parallel sentences and then apply- arXiv:1805.02282v1 [cs.CL] 6 May 2018 parallel texts from a single domain is not enough ing the multi-domain approach to these clusters. to train a good translation system, even more so When translating, the input segments are classified for neural machine translation (NMT; Bahdanau as belonging to one of these clusters and translated et al., 2014); thus models are commonly trained with this automatically derived information. on a mixture of parallel texts from different do- In the following we review related work in Sec- mains and then later fine-tuned to in-domain texts tion 2, then present our methodology of multi- (Luong and Manning, 2015). domain NMT and sentence clustering in Section 3. In-domain fine-tuning has two main shortcom- After that, we describe our experiments in Sec- ings: it depends on the availability of sufficient tions 4 and 5 and discuss the results in Section 6. amounts of in-domain data in order to avoid over- Section 7 concludes the paper. fitting and it results in degraded performance for all other domains. The latter means that for trans- 2 Related Work c 2018 The authors. This article is licensed under a Creative Commons 3.0 licence, no derivative works, attribution, CC- The baseline to which we compare our work is BY-ND. fine-tuning NMT systems to a single text domain (Luong and Manning, 2015). There, the NMT sys- to the beginning of the source sequence. No tem is first trained on a mix of parallel texts changes to the NMT architecture are required from different domains and then fine-tuned via with this approach. They show that the method continued training on just the in-domain texts. improves NMT for all languages involved; as The method shows improved performance on in- an additional benefit, there is no increase in the domain test data but degrades performance on number of parameters, since all language pairs are other domains. included in the same model. In (Sennrich et al., 2016a) the NMT system is We adapt the language tag approach to parametrized with one additional input feature (po- text domains, appending the domain ID to liteness), which is included as part of the input se- each source sentence; thus, for instance, quence, similarly to one of our two approaches (in “How you doin’ ?” from OpenSubti- our work – the domain tag approach). However, tles2016 (Lison and Tiedemann, 2016) becomes their goal is different from ours. “ OpenSubs How you doin’ ?”. In (Kobus et al., 2017) additional word features The described method has two advantages. are used for specifying the text domain together Firstly, it is independent of the NMT architecture, with the same approach as (Sennrich et al., 2016a). and scaling to more domains means simply adding Although both methods overlap with the first part data for these domains. We can assign a domain to or our work (domain features and domain tags), each sentence pair of the training set sentence pair, they only test these methods on pre-specified do- or set the domain to “other” for sentences whose mains, while we include automatic domain clus- domain we cannot or do not want to identify. tering and identification. Also, they use in-domain Secondly, in a multilingual NMT model, all pa- trained NMT systems as baselines even for small rameters are implicitly shared by all the language parallel corpora and do experiments with a differ- pairs being modeled. This forces the model to gen- ent NMT architecture. Finally, their results show eralize across language boundaries during training. very modest improvements, while in our case the It is observed that when language pairs with lit- improvements are much greater. tle available data and language pairs with abun- Other approaches also define a mixture dant data are mixed into a single model, transla- of domains, for example (Britz et al., 2017; tion quality on the low resource language pair is Chen et al., 2016). However, both define custom significantly improved. NMT methods and also limit the experiments to We expect this to be even more useful for text the cases where the text domain is known. domains. Traditional tuning to a low-resource do- main, or for any specific domain for that matter, 3 Methodology would result in a likely over-fitting to that domain. In the following we describe two different ap- Our approach, where all parameters are shared, proaches to treating text domains as distinct learns target domain representations without harm- languages and using multi-lingual methods, re- ing other domains’ results while maintaining the sulting in multi-domain NMT models. The ability to generalize also on in-domain translation, first approach is inspired by Google’s multilin- because little to no over-fitting will be caused. Fur- gual NMT (Johnson et al., 2016) and the sec- thermore, since domains are much more similar ond one by the cross-lingual language mod- than languages, we expect the parameter sharing els (Ostling¨ and Tiedemann, 2017). Then we de- to have a stronger effect. scribe our methods of unsupervised domain seg- mentation used in our experiments in comparison 3.2 Domain as a Feature with the pre-specified text domains. The second approach is based on (Ostling¨ and Tiedemann, 2017) for continu- 3.1 Domain as a Tag ous multilingual language models. The authors The first approach is based on propose to use a single RNN model with language (Johnson et al., 2016). Their method of mul- vectors that indicate what language is used. As a tilingual translation is based on training the NMT result each language gets its own embedding, thus model on data from multiple language pairs, while ending up with a language model with a predictive appending a token specifying the target language distribution p(xt|x1...t−1, l) which is a continuous function of the language vector l. (Pagliardini et al., 2017). After that, we apply In our approach the same idea is im- KMeans clustering to identify the clusters in the plemented via word features of Nematus set of calculated sentence vectors. Finally, we tag (Sennrich et al., 2017), with their learned em- each sentence with the label that it was assigned by beddings replacing the language vector of KMeans. To find the optimal number of clusters, (Ostling¨ and Tiedemann, 2017). For example, we create several versions with different numbers translating ”This is a sentence .” to the Estonian of clusters. Wikipedia domain would mean an input of To tag the test/dev set sentences, we ”This|2wi is|2wi a|2wi sentence|2wi .|2wi”1 train a FastText (Bojanowski et al., 2016) Having a single language model learn (Joulin et al., 2016) supervised classification several languages helps similar lan- model on the tagged training set. For each of the guages improve each others representations cluster versions and for each language pair, we (Ostling¨ and Tiedemann, 2017). Also, they point train a separate FastText model. The additional out that this greatly alleviates the problem of benefit of this kind of clustering is that each sparse data for smaller languages. We expect new input sentence can be efficiently assigned the same effect for text domains, especially its cluster. Also, because of more potentially since similarity between different domains of the homogenous train-set clusters, the new sentence is same languages is higher than between different hypothetically assigned more appropriate domain languages. Moreover, similarly to the domain than it would be assigned in case of the pre-defined tag approach, the usage of many domains in one domains.
Recommended publications
  • The Misadventures of the New Satan Free
    FREE THE MISADVENTURES OF THE NEW SATAN PDF Anton Tammsaare,Christopher Moseley | 256 pages | 01 Oct 2009 | Norvik Press | 9781870041805 | English | Norwich, United Kingdom Jüri Müür – Movies, Bio and Lists on MUBI The Misadventures of the New Satan 0. Tasub kohal olla omaenese elus. Sinu ostukorv:. Satan has a problem: God has come to the conclusion that it is unfair to send souls to hell if they are fundamentally incapable of living a decent life on earth. If this is the case, then hell will be shut down, and The Misadventures of the New Satan human race written off as an unfortunate mistake. Satan is given the chance to prove that human beings are capable of salvation - thus ensuring the survival of hell - if he agrees to live as a human being and demonstrate that it is possible to live a righteous life. St Peter suggests that life as a farmer might offer Satan the best chance of success, because of the catalogue of privations he will be forced to endure. And so Satan ends up back on earth, living as Jurka, a great bear of a man, the put-upon tenant of a run-down Estonian farm. His patience and good nature are sorely tested by the machinations of his scheming, unscrupulous landlord and the social and religious hypocrisy he encounters. The Misadventures of the New Satan is the last novel by Estonia's greatest twentieth-century writer, Anton Tammsaareand it constitutes a fitting summation of the themes that occupied him throughout his writing: the search for truth and social justice, and the struggle against corruption and greed.
    [Show full text]
  • QUARTERLY CHECK-IN Technology (Services) TECH GOAL QUADRANT
    QUARTERLY CHECK-IN Technology (Services) TECH GOAL QUADRANT C Features that we build to improve our technology A Foundation level goals offering B Features we build for others D Modernization, renewal and tech debt goals The goals in each team pack are annotated using this scheme illustrate the broad trends in our priorities Agenda ● CTO Team ● Research and Data ● Design Research ● Performance ● Release Engineering ● Security ● Technical Operations Photos (left to right) Technology (Services) CTO July 2017 quarterly check-in All content is © Wikimedia Foundation & available under CC BY-SA 4.0, unless noted otherwise. CTO Team ● Victoria Coleman - Chief Technology Officer ● Joel Aufrecht - Program Manager (Technology) ● Lani Goto - Project Assistant ● Megan Neisler - Senior Project Coordinator ● Sarah Rodlund - Senior Project Coordinator ● Kevin Smith - Program Manager (Engineering) Photos (left to right) CHECK IN TEAM/DEPT PROGRAM WIKIMEDIA FOUNDATION July 2017 CTO 4.5 [LINK] ANNUAL PLAN GOAL: expand and strengthen our technical communities What is your objective / Who are you working with? What impact / deliverables are you expecting? workflow? Program 4: Technical LAST QUARTER community building (none) Outcome 5: Organize Wikimedia Developer Summit NEXT QUARTER Objective 1: Developer Technical Collaboration Decide on event location, dates, theme, deadlines, etc. Summit web page and publicize the information published four months before the event (B) STATUS: OBJECTIVE IN PROGRESS Technology (Services) Research and Data July, 2017 quarterly
    [Show full text]
  • Estonian Academy of Sciences Yearbook 2018 XXIV
    Facta non solum verba ESTONIAN ACADEMY OF SCIENCES YEARBOOK FACTS AND FIGURES ANNALES ACADEMIAE SCIENTIARUM ESTONICAE XXIV (51) 2018 TALLINN 2019 This book was compiled by: Jaak Järv (editor-in-chief) Editorial team: Siiri Jakobson, Ebe Pilt, Marika Pärn, Tiina Rahkama, Ülle Raud, Ülle Sirk Translator: Kaija Viitpoom Layout: Erje Hakman Photos: Annika Haas p. 30, 31, 48, Reti Kokk p. 12, 41, 42, 45, 46, 47, 49, 52, 53, Janis Salins p. 33. The rest of the photos are from the archive of the Academy. Thanks to all authos for their contributions: Jaak Aaviksoo, Agnes Aljas, Madis Arukask, Villem Aruoja, Toomas Asser, Jüri Engelbrecht, Arvi Hamburg, Sirje Helme, Marin Jänes, Jelena Kallas, Marko Kass, Meelis Kitsing, Mati Koppel, Kerri Kotta, Urmas Kõljalg, Jakob Kübarsepp, Maris Laan, Marju Luts-Sootak, Märt Läänemets, Olga Mazina, Killu Mei, Andres Metspalu, Leo Mõtus, Peeter Müürsepp, Ülo Niine, Jüri Plado, Katre Pärn, Anu Reinart, Kaido Reivelt, Andrus Ristkok, Ave Soeorg, Tarmo Soomere, Külliki Steinberg, Evelin Tamm, Urmas Tartes, Jaana Tõnisson, Marja Unt, Tiit Vaasma, Rein Vaikmäe, Urmas Varblane, Eero Vasar Printed in Priting House Paar ISSN 1406-1503 (printed version) © EESTI TEADUSTE AKADEEMIA ISSN 2674-2446 (web version) CONTENTS FOREWORD ...........................................................................................................................................5 CHRONICLE 2018 ..................................................................................................................................7 MEMBERSHIP
    [Show full text]
  • Baltic States And
    UNCLASSIFIED Asymmetric Operations Working Group Ambiguous Threats and External Influences in the Baltic States and Poland Phase 1: Understanding the Threat October 2014 UNCLASSIFIED UNCLASSIFIED Cover image credits (clockwise): Pro-Russian Militants Seize More Public Buildings in Eastern Ukraine (Donetsk). By Voice of America website (VOA) [Public domain], via Wikimedia Commons, http://commons.wikimedia.org/wiki/File:VOAPro- Russian_Militants_Seize_More_Public_Buildings_in_Eastern_Ukraine.jpg. Ceremony Signing the Laws on Admitting Crimea and Sevastopol to the Russian Federation. The website of the President of the Russian Federation (www.kremlin.ru) [CC-BY-3.0 (http://creativecommons.org/ licenses/by/3.0)], via Wikimedia Commons, http://commons.wikimedia.org/wiki/File:Ceremony_signing_ the_laws_on_admitting_Crimea_and_Sevastopol_to_the_Russian_Federation_1.jpg. Sloviansk—Self-Defense Forces Climb into Armored Personnel Carrier. By Graham William Phillips [CCBY-3.0 (http://creativecommons.org/licenses/by/3.0)], via Wikimedia Commons, http://commons.wikimedia. org/wiki/File:BMDs_of_Sloviansk_self-defense.jpg. Dynamivska str Barricades on Fire, Euromaidan Protests. By Mstyslav Chernov (http://www.unframe.com/ mstyslav- chernov/) (Own work) [CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0)], via Wikimedia Commons, http://commons.wikimedia.org/wiki/File:Dynamivska_str_barricades_on_fire._ Euromaidan_Protests._Events_of_Jan_19,_2014-9.jpg. Antiwar Protests in Russia. By Nessa Gnatoush [CC-BY-2.0 (http://creativecommons.org/licenses/by/2.0)], via Wikimedia Commons, http://commons.wikimedia.org/wiki/File:Euromaidan_Kyiv_1-12-13_by_ Gnatoush_005.jpg. Military Base at Perevalne during the 2014 Crimean Crisis. By Anton Holoborodko (http://www. ex.ua/76677715) [CC-BY-SA-3.0 (http://creativecommons.org/licenses/by-sa/3.0)], via Wikimedia Commons, http://commons.wikimedia.org/wiki/File:2014-03-09_-_Perevalne_military_base_-_0180.JPG.
    [Show full text]
  • Crimea After the Georgian Crisis
    Crimea after the Georgian Crisis Crimea After the Georgian Crisis Following the Georgian Crisis, there was frequent speculation in the international media Crimea theCrisis Georgian after about the Ukrainian peninsula of Crimea as the next likely target of Russian military intervention. Logic suggests that Crimea, the only region in Ukraine with an ethnic Russian JAKOB HEDENSKOG majority, with its historical links to Russia and contested affiliation to Ukraine, and with its Hero City Sevastopol (the base of the Russian Black Sea Fleet), would be an easy target for the Kremlin’s neo-imperialist policy. This report aims to compare the situation around Crimea with that regarding South Ossetia and Abkhazia, which led to the Georgian Crisis. The main objective is to identify similarities and differences concerning both the situation on the ground and Russia’s policy towards the regions, in order to determine whether a military scenario for Crimea is impossible, Jakob Hedenskog possible or even likely. For a study (in Swedish) on the Georgian Crisis and its consequences, see Larsson, Robert L., et al. Det kaukasiska lackmustestet: Konsekvenser och lärdomar av det rysk-georgiska kriget i augusti 2008, FOI-R--2563--SE, september 2008. Front cover photo: The chief of the Russian Black Sea Fleet and the Chief of the Ukrainian Marine jointly celebrate the 60th Anniversary of Victory Day, 9 May 2005, © Jakob Hedenskog (2005) FOI, Swedish Defence Research Agency, is a mainly assignment-funded agency under the Ministry of Defence. The core activities are research, method and technology development, as well as studies conducted in the interests of Swedish defence and the safety and security of society.
    [Show full text]
  • Russia-Crimea-Ukraine
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Calhoun, Institutional Archive of the Naval Postgraduate School Calhoun: The NPS Institutional Archive Theses and Dissertations Thesis Collection 2008-03 The Crimean Tatars and their influence on the 'triangle of conflict' Russia-Crimea-Ukraine Davydov, Igor. Monterey, California. Naval Postgraduate School http://hdl.handle.net/10945/4255 NAVAL POSTGRADUATE SCHOOL MONTEREY, CALIFORNIA THESIS THE CRIMEAN TATARS AND THEIR INFLUENCE ON THE ‘TRIANGLE OF CONFLICT’ — RUSSIA-CRIMEA-UKRAINE by Igor Davydov March 2008 Thesis Advisor: Mikhail Tsypkin Thesis Co-Advisor: Daniel Moran Approved for public release; distribution is unlimited THIS PAGE INTENTIONALLY LEFT BLANK REPORT DOCUMENTATION PAGE Form Approved OMB No. 0704-0188 Public reporting burden for this collection of information is estimated to average 1 hour per response, including the time for reviewing instruction, searching existing data sources, gathering and maintaining the data needed, and completing and reviewing the collection of information. Send comments regarding this burden estimate or any other aspect of this collection of information, including suggestions for reducing this burden, to Washington headquarters Services, Directorate for Information Operations and Reports, 1215 Jefferson Davis Highway, Suite 1204, Arlington, VA 22202- 4302, and to the Office of Management and Budget, Paperwork Reduction Project (0704-0188) Washington DC 20503. 1. AGENCY USE ONLY (Leave 2. REPORT DATE 3. REPORT TYPE AND DATES COVERED blank) March 2008 Master’s Thesis 4. TITLE AND SUBTITLE: The Crimean Tatars and Their Influence on the 5. FUNDING NUMBERS ‘Triangle of Conflict’ — Russia-Crimea-Ukraine 6. AUTHOR(S) Igor Davydov 7.
    [Show full text]
  • The Estonian Language in the Digital Age Eesti Keel
    White Paper Series Valge raamatu sari THE ESTONIAN EESTI LANGUAGE IN KEEL THE DIGITAL DIGIAJASTUL AGE Krista Liin Kadri Muischnek Kaili Müürisep Kadri Vider White Paper Series Valge raamatu sari THE ESTONIAN EESTI LANGUAGE IN KEEL THE DIGITAL DIGIAJASTUL AGE Krista Liin Tartu Ülikool Kadri Muischnek Tartu Ülikool Kaili Müürisep Tartu Ülikool Kadri Vider Tartu Ülikool Georg Rehm, Hans Uszkoreit (toimetajad, editors) EESSÕNA PREFACE Eesti keele raport kuulub META-NETi väljaannete is white paper is part of a series that promotes sarja, mille eesmärgiks on tutvustada keeletehnoloogia- knowledge about language technology and its poten- alaseid teadmisi ja selle ala potentsiaali. Väljaande siht- tial. It addresses journalists, politicians, language com- grupiks on õpetajad, ajakirjanikud, poliitikud, kogu munities, educators and others. e availability and keelekogukond ja teised teemast huvitatud. use of language technology in Europe varies between Keeletehnoloogia kättesaadavus ja kasutamine on Eu- languages. Consequently, the actions that are required roopa keeliti väga erinev. Nii on ka meetmed, mida on to further support research and development of lan- vaja rakendada keeletehnoloogia arendamise ja uuri- guage technologies also differ. e required actions mise edasiseks toetamiseks, erinevatele keeltele väga depend on many factors, such as the complexity of a erinevad, sõltudes näiteks keele keerukusest ja selle kõ- given language and the size of its community. nelejate arvust. META-NET, a Network of Excellence funded by the Euroopa Komisjoni rahastatud tippteadmiste võrgus- European Commission, has conducted an analysis of tik META-NET viis läbi keeleressursside ja -tehno- current language resources and technologies in this loogiate alase uurimuse, mis keskendus 23 ametlikule white paper series (p.
    [Show full text]
  • Improving the Openstreetmap Data Set Using Deep Learning
    Improving the OpenStreetMap Data Set using Deep Learning Hampus Londögård Hannah Lindblad [email protected] [email protected] June 19, 2018 Master’s thesis work carried out at ÅF Digital Solutions. Supervisors: Pierre Nugues, [email protected] Thomas Hermansson, [email protected] Examiner: Jacek Malec, [email protected] Abstract OpenStreetMap is an open source of geographical data where contributors can change, add, or remove data. Since anyone can contribute, the data set is prone to contain data of varying quality. In this work, we focus on three approaches for correcting Way component name tags in the data set: Correct- ing misspellings, flagging anomalies, and generating suggestions for missing names. Today, spell correction systems have achieved a high correction accuracy. However, the use of a language context is an important factor to the success of these systems. We present a way for performing spell correction without context through the use of a deep neural network. The structure of the network also makes it possible to adapt it to a different language by changing the training resources. The implementation achieves an F1 score of 0.86 (ACR 0.69) for Way names in Denmark. Keywords: MSc, Machine Learning, OpenStreetMap, Random Forest, Neural Net- work, Sequence-2-Sequence 2 Acknowledgements We would like to thank Pierre Nugues for the feedback he has given us on this thesis. We would also like to thank Marcus Klang for his invaluable input on neural networks and Daniel Palmqvist for his feedback and knowledge of algorithms and geographical in- formation systems.
    [Show full text]
  • The Holocaust in Ukraine: New Sources and Perspectives
    THE CENTER FOR ADVANCED HOLOCAUST STUDIES of the United States Holocaust Memorial Museum promotes the growth of the field of Holocaust studies, including the dissemination of scholarly output in the field. It also strives to facilitate the training of future generations of scholars specializing in the Holocaust. Under the guidance of the Academic Committee of the United States Holocaust Memorial Council, the Center provides a fertile atmosphere for scholarly discourse and debate through research and publication projects, conferences, fellowship and visiting scholar opportunities, and a network of cooperative programs with universities and other institutions in the United States and abroad. In furtherance of this program the Center has established a series of working and occasional papers prepared by scholars in history, political science, philosophy, religion, sociology, literature, psychology, and other disciplines. Selected from Center-sponsored lectures and conferences, THE HOLOCAUST or the result of other activities related to the Center’s mission, these publications are designed to make this research available in a timely IN UKRAINE fashion to other researchers and to the general public. New Sources and Perspectives Conference Presentations 100 Raoul Wallenberg Place, SW Washington, DC 20024-2126 ushmm.org The Holocaust in Ukraine: New Sources and Perspectives Conference Presentations CENTER FOR ADVANCED HOLOCAUST STUDIES UNITED STATES HOLOCAUST MEMORIAL MUSEUM 2013 The assertions, opinions, and conclusions in this occasional paper are those of the authors. They do not necessarily reflect those of the United States Holocaust Memorial Museum. The articles in this collection are not transcripts of the papers as presented, but rather extended or revised versions that incorporate additional information and citations.
    [Show full text]
  • Audiences 1 Contributors
    Audiences 1 Contributors January 2018 quarterly check-in All content is © Wikimedia Foundation & available under CC BY-SA 4.0, unless noted otherwise. We build collaborative, inclusive tools for creating and editing free knowledge. Images from https://wikimediafoundation.org/wiki/Staff_and_contractors used under CC-BY by Guillaume Paumier, CC-BY-SA by Ed Sanders and Myleen Hollero, Alolita Sharma, Victor Grigas, and User:Helpameout Program 3: Increase editing device support Editor modernisation Program 3, Goal 1 What & why ● Users now see multiple editing tools: visual ● The 2017 wikitext editor aims to standardise editor, 2010 & 2006 wikitext editors, etc. the wikitext editor with the visual editor, and allows users to use tools such as the ● Inconsistencies and lack of standardisation Citoid citation tool when editing wikitext. causes confusion for some newer editors; early findings from New Editor Experiences ● The Editing team aims to roll it out as the appear to validate this hypothesis. default for new users only. ● Changing the old 2010 wikitext editor to be ● Using the 2010 wikitext editor will remain an accessible, consistent and welcoming to option for all without any major changes. new users would be disruptive to existing Experienced editors will get no change to users. their default editing experience. CHECK IN TEAM/DEPT PROGRAM WIKIMEDIA FOUNDATION Jan 2018 Audiences > Contributors <3> [LINK] ANNUAL PLAN GOAL: Support content contribution on mobile devices What is your objective? Who are you working with? What impact / deliverables are you expecting? 1: Improve and LAST QUARTER consolidate our unified editing platform so that Editing team with Community We instrumented and measured the load performance it's great on all devices Liaisons and Performance.
    [Show full text]
  • Uralic Language Identification
    Uralic Language Identification (ULI) 2020 shared task dataset and the Wanca 2017 corpora Tommi Jauhiainen Heidi Jauhiainen Department of Digital Humanities Department of Digital Humanities University of Helsinki University of Helsinki [email protected] [email protected] Niko Partanen Krister Linden´ Department of Finnish, Finno-Ugrian Department of Digital Humanities and Scandinavian Studies University of Helsinki University of Helsinki [email protected] [email protected] Abstract This article introduces the Wanca 2017 web corpora from which the sentences written in minor Uralic languages were collected for the test set of the Uralic Language Identification (ULI) 2020 shared task. We describe the ULI shared task and how the test set was constructed using the Wanca 2017 corpora and texts in different languages from the Leipzig corpora collection. We also provide the results of a baseline language identification experiment conducted using the ULI 2020 dataset. 1 Introduction As part of the Finno-Ugric Languages and the Internet project, (SUKI)1 we have collected textual mate- rial for some of the more endangered Uralic languages from the Internet (Jauhiainen et al., 2015a). In this paper, we introduce the Wanca 2017 corpora which will be published in the Language Bank of Finland2 as a downloadable package as well as through the Korp3 concordance service. The Uralic Language Identification (ULI) 2020 shared task4 was organized as part of the VarDial 2020 Evaluation campaign.5 In order to create a training dataset for the shared task, we used the earlier version of the corpora, Wanca 20166 (Jauhiainen et al., 2019a), together with corpora available from the Leipzig corpora collection7 (Goldhahn et al., 2012).
    [Show full text]
  • The Estonian Language in the Digital Age Eesti Keel
    White Paper Series Valge raamatu sari THE ESTONIAN EESTI LANGUAGE IN KEEL THE DIGITAL DIGIAJASTUL AGE Krista Liin Kadri Muischnek Kaili Müürisep Kadri Vider White Paper Series Valge raamatu sari THE ESTONIAN EESTI LANGUAGE IN KEEL THE DIGITAL DIGIAJASTUL AGE Krista Liin Tartu Ülikool Kadri Muischnek Tartu Ülikool Kaili Müürisep Tartu Ülikool Kadri Vider Tartu Ülikool Georg Rehm, Hans Uszkoreit (toimetajad, editors) EESSÕNA PREFACE Eesti keele raport kuulub META-NETi väljaannete is white paper is part of a series that promotes sarja, mille eesmärgiks on tutvustada keeletehnoloogia- knowledge about language technology and its poten- alaseid teadmisi ja selle ala potentsiaali. Väljaande siht- tial. It addresses journalists, politicians, language com- grupiks on õpetajad, ajakirjanikud, poliitikud, kogu munities, educators and others. e availability and keelekogukond ja teised teemast huvitatud. use of language technology in Europe varies between Keeletehnoloogia kättesaadavus ja kasutamine on Eu- languages. Consequently, the actions that are required roopa keeliti väga erinev. Nii on ka meetmed, mida on to further support research and development of lan- vaja rakendada keeletehnoloogia arendamise ja uuri- guage technologies also differ. e required actions mise edasiseks toetamiseks, erinevatele keeltele väga depend on many factors, such as the complexity of a erinevad, sõltudes näiteks keele keerukusest ja selle kõ- given language and the size of its community. nelejate arvust. META-NET, a Network of Excellence funded by the Euroopa Komisjoni rahastatud tippteadmiste võrgus- European Commission, has conducted an analysis of tik META-NET viis läbi keeleressursside ja -tehno- current language resources and technologies in this loogiate alase uurimuse, mis keskendus 23 ametlikule white paper series (p.
    [Show full text]