Arxiv:2103.16789V2 [Cs.CL] 4 Apr 2021

Total Page:16

File Type:pdf, Size:1020Kb

Arxiv:2103.16789V2 [Cs.CL] 4 Apr 2021 An Exploration of Data Augmentation Techniques for Improving English to Tigrinya Translation Lidia Kidane| Sachin Kumar} Yulia Tsvetkov} |African Institute for Mathematical Sciences, Kigali, Rwanda }Language Technologies Institute, Carnegie Mellon University, Pittsburgh, PA, USA [email protected], [email protected], [email protected] Abstract 2018c) has been shown to perform well under low data conditions but is challenging to develop for It has been shown that the performance of neu- ral machine translation (NMT) drops starkly in Tigrinya owing to its complex morphological struc- low-resource conditions, often requiring large ture (Keleta et al., 2016). For many low-resource amounts of auxiliary data to achieve compet- languages, this challenge has led to various propos- itive results. An effective method of generat- als for leveraging monolingual data that exist in ei- ing auxiliary data is back-translation of target ther or both source and target languages, which are language sentences. In this work, we present usually more abundant. Prior approaches include a case study of Tigrinya where we investigate self-training (Imamura and Sumita, 2018), transfer several back-translation methods to generate learning (Zoph et al., 2016) and data-augmentation synthetic source sentences. We find that in low-resource conditions, back-translation by techniques like forward translation (Zhang and pivoting through a higher-resource language Zong, 2016) and back-translation (Sennrich et al., related to the target language, proves most ef- 2016a). fective resulting in substantial improvements over baselines. Back-translation has been used in current state- of-the-art NMT systems, outperforming other ap- 1 Introduction proaches in high resource languages (Ng et al., 2019) and improving performance in low resource Tigrinya is a Semitic language spoken by around 8 conditions (Hoang et al., 2018). The approach million people in the African countries of Eritrea, involves training a target-to-source (backward) accounting for more than half of its population, model on the available parallel data and using that and Ethiopia where it is used as informal lingua model to generate synthetic translations of a large franca. However, over 60% of the internet’s con- number of monolingual sentences in the target lan- tent is in English, while Tigrinya, for example, ac- guage. The available authentic parallel data is then counts for less than 0.1% of it (W3Techs, 2020). mixed with the generated synthetic parallel data With 40% of the Tigrinya speakers being mono- without differentiating between the two (Sennrich lingual1, this essentially locks away the majority et al., 2016a) to train a final source-to-target (for- of the internet content for them. Availability of ward) model. However, in low resource scenarios, machine translation systems capable for translating arXiv:2103.16789v2 [cs.CL] 4 Apr 2021 the authentic parallel data available is not sufficient English to Tigrinya and vice-versa is an impera- to train a backward model that will generate quality tive for its speakers to be able to function in an synthetic data. increasingly-global online world. Despite recent advances in neural machine trans- In this work, we explore this setting in de- lation (Bahdanau et al., 2015; Vaswani et al., 2017), tail. Combining techniques from transfer learn- such systems are difficult to develop for many ing and back-translation, we propose several data- African languages including Tigrinya primarily due augmentation strategies to improve English-to- to the lack of large amounts of high quality paral- Tigrinya translation. In our experiments, we show lel data. Phrase-based statistical machine transla- that leveraging Amharic—a higher resource lan- tion (PBSMT) (Koehn et al., 2003; Lample et al., guage closely related to Tigrinya—for data aug- 1https://african-languages.com/ mentation, gives improvements of up to +7 BLEU tigrinya-language/ points over baselines. 2 Background and Methods one to translate TGT!REL and another to translate REL!SRC. For the former, depending on avail- We first formalize the task setup. Given a source able parallel and monolingual resources in TGT language (SRC), a target language (TGT) and a and REL, the TGT!REL model can be trained ei- typologically related language of TGT, REL, our ther in (1) a supervised manner (we refer to this goal is train a model f(·; θ) which takes a SRC setting as BT-PIVOT-SUP), or (2) in an unsuper- sentence x as input and generates its translation, vised manner (Lample et al., 2018d)(BT-PIVOT- ^y = f(x; θ). Here, θ are learnable parameters TGT UNSUP). The latter is trained with more easily of f. We are given sentence aligned SRC–TGT, available SRC–REL parallel data. To backtranslate SRC–REL, REL–TGT parallel corpora, and mono- a given TGT sentence, we first translate it to REL lingual corpora in REL and TGT. using the TGT!REL model, and then to SRC using In this work, we use transformer based encoder- the REL!SRC model. decoder models (Vaswani et al., 2017) as f, We assume that the parallel SRC–TGT corpus is 3 Experimental Setup small, which makes training f challenging (Sen- nrich and Zhang, 2019). We now describe ways Datasets We evaluate our methods with English of leveraging the available monolingual data in (EN), Tigrinya (TI) and Amharic (AN) as SRC, TGT TGT and resources in REL to generate synthetic and REL. Both TI and AM are Ge’ez-scripted SRC!TGT sentences which can be augmented with Semitic languages and have considerable morpho- the authentic SRC–TGT corpus to improve the gen- logical and lexical similarity (Feleke, 2017). The eration quality of f. EN–TI and AM–TI parallel data are taken from Opus (JW300) (Tiedemann, 2012) and consist of BT-DIRECT: TGT!SRC This is most common 300K and 36K sentence pairs respectively contain- way to create synthetic parallel data by translat- ing text from religious domain. The EN–AM data ing TGT monolingual data to SRC (Sennrich et al., consists of a total of 900K sentence pairs taken 2016a). The backward model TGT!SRC is trained from Opus (JW300) and Teferra Abate et al.(2018) using the available SRC-TGT parallel data. While (News domain). After deduplication, we created this provides a natural way to utilize monolingual dev/test sets of 2K sentences each for both language data, when the parallel data is scarce, the backward pairs (EN-TI and EN-AM) by randomly sampling model’s quality is as limited as the vanilla forward from the JW300 corpora. We use the remaining model. This results in poor quality synthetic data sentences as training set. To train unsupervised MT which is detrimental, as we show in our experi- models, we use the REL and TGT size of the parallel ments. Hoang et al.(2018) proposed an iterative corpora as the monolingual corpus. To create syn- BT to alleviate this issue, but this technique re- thetic parallel data by back-translation, we create a quires multiple rounds of retraining models in both monolingual Tigrinya corpus by crawling sentences directions which are slow and expensive. from the official website of Eritrean Ministry of In- formation2. After cleaning and deduplication, we BT-INDIRECT: REL!SRC We train a get a corpus with 100K sentences. REL!SRC model using more abundant REL-SRC parallel data and use this model to translate Implementation and Evaluation We use a monolingual data in TGT to SRC. Given that transformer based encoder-decoder model to con- REL and TGT are closely related and written duct all our experiments (Vaswani et al., 2017). in the same script, this can serve as a proxy We use the BASE architecture which consists of back-translation model allowing transfer between 6 encoder and decoder layers with 8 attention the two languages. heads. We first tokenize all the sentences us- ing Moses (Koehn et al., 2007). For each lan- BT-PIVOT: TGT!REL!SRC Despite close- guage pair considered, we then tokenize the cor- ness of REL and TGT, back-translating TGT us- pora using a BPE (Sennrich et al., 2016b) model STD!SRC ing a model can result in noisy trans- trained on the concatenation of the parallel corpora lations which can hurt the final performance of with 32K merge operations. We use OpenNMT- SRC!TGT REL . Here, we exploit closeness of py toolkit (Klein et al., 2017) for all our exper- and TGT using the following method to generate synthetic SRC–TGT data. We train two models, 2https://www.shabait.com/ iments, with the hyperparameters recommended Method BLEU by Vaswani et al.(2017). We train all our super- UNSUP(SRC!TGT) 2.01 vised models (with or without data-augmentation) SUP(SRC!TGT) 7.4 for 200K steps with early stopping based on val- PIVOT:SUP(SRC!REL)+SUP(REL!TGT) 8.4 PIVOT:SUP(SRC!REL)+UNSUP(REL!TGT) 5.6 idation loss. Finally, we evaluate the generated BT-DIRECT 10.9 translations using the BLEU score (Papineni et al., BT-INDIRECT 6.2 2002)3. BT-PIVOT-SUP 11.54 BT-PIVOT-UNSUP 15.52 Baselines We compare the data-augmentation methods described in §2 with the following base- Table 1: BLEU scores obtained for EN-TI translation lines using different baselines and data-augmentation meth- ods described in §2 UNSUP(SRC!TGT) To evaluate the impact of available parallel data and feasibility of translating between unrelated languages SRC and TGT, we tables of the encoder and decoder with the aligned train an unsupervised NMT model to translate SRC embeddings and train the model parameters using to TGT using the available monolingual corpora autoencoding and iterative back-translation based only in the two languages. objectives as described in Lample et al.(2018a). SUP(SRC!TGT) Here, we train a supervised EN!TI model with available parallel data only.
Recommended publications
  • Forging Plowshares in Eritrea Written by Louis Werner Photographed by Lorraine Chittock
    Forging Plowshares in Eritrea Written by Louis Werner Photographed by Lorraine Chittock North of the horn of Africa, between the regions known in Pharaonic times as Kush and punt-now northeastern Sudan and Somalia, respectively-one of the ancient world's oldest trading lands has become one of the modern world's youngest sovereign states. A funnel-shaped country as large as Pennsylvania, slightly smaller than England, Eritrea's narrow "spout" runs northwest to southeast between the Red Sea and Ethiopia. At its southern end, it borders diminutive Djibouti. In the north, the mouth of the funnel opens toward Sudan. Geography and history have given Eritrea its name, which comes from the Greek word erythros, "reddish," and the Greek name for the Red Sea, Erythra Thalassa. At the throat of the Eritrean funnel, a high central plateau, the site of Asmara, the capital, separates a sweltering coastal strip from game-rich lowlands in the northwest. In the south, the Danakil Depression lies 116 meters (380') below sea-level; the highlands of the north reach up to 2700 meters (8000'). This topographically and climatically diverse land was given its form by the same violent plate tectonics that began opening the Red Sea and ripping apart Africa's Rift Valley some 25 million years ago. Eritrea's physical diversity has its analogue in the nation's citizenry. When Italian ethnographer Conti Rossini called neighboring Ethiopia "a museum of peoples," he might well have included Eritrea in his assessment. The country's 3.8 million citizens are evenly divided between Muslims and Christians, and include nine major ethnic groups speaking nine different tongues classified in language groups from Nilo-Saharan to Kushitic and Semitic.
    [Show full text]
  • Handling of Out-Of-Vocabulary Words in Japanese-English Machine
    International Journal of Asian Language Processing 27(2): 95-110 95 Morphological Segmentation for English-to-Tigrinya Statistical Machine Translation Yemane Tedla and Kazuhide Yamamoto Natural Language Processing Lab Nagaoka University of Technology Nagaoka city, Niigata 940-2188, Japan [email protected], [email protected] Abstract We investigate the effect of morphological segmentation schemes on the performance of English-to-Tigrinya statistical machine translation. Tigrinya is a highly inflected Semitic language spoken in Eritrea and Ethiopia. Translation involving morphologically complex and low-resource languages is challenged by a number of factors including data sparseness, word alignment and language model. We try addressing these problems through morphological segmentation of Tigrinya words. As a result of segmentation, out-of-vocabulary and perplexity of the language models were greatly reduced. We analyzed phrase-based translation with unsegmented, stemmed, and morphologically segmented corpus to examine their impact on translation quality. Our results from a relatively small parallel corpus show improvement of 1.4 BLEU or 2.4 METEOR points between the raw text model and the morphologically segmented models suggesting that segmentation affects performance of English-to-Tigrinya machine translation significantly. Keywords Tigrinya language; statistical machine translation; low-resource; morphological segmentation 1. Introduction Machine translation systems translate one natural language, the source language, to another, the target language, automatically. The accuracy of statistical machine translation (SMT) systems may not be consistently perfect but often produces a sufficient comprehension of 96 Yemane Tedla and Yamamoto Kazuhide the information in the source language. The research presented here investigates English-to-Tigrinya translation system, using the Christian Holy Bible (“the Bible” hereafter) as a parallel corpus.
    [Show full text]
  • A Mobile Based Tigrigna Language Learning Tool
    PAPER A MOBILE BASED TIGRIGNA LANGUAGE LEARNING TOOL A Mobile Based Tigrigna Language Learning Tool http://dx.doi.org/10.3991/ijim.v9i2.4322 Hailay Kidu University of Gondar, Gondar, Ethiopia Abstract—Mobile learning (ML) refers to the use of mobile Currently many people visit Tigray - or hope to do so and handheld IT devices such as Personal Digital Assistants one day - because of the remarkable manner in which (PDAs), mobile telephones, laptops and tablet PC technolo- ancient historical traditions have been preserved. There- gies, in teaching and learning. Mobile learning is a new form fore anybody who wishes to visit or stay in Tigray and in of learning, using mobile network and tools, expanding Eritrea can learn the language for communication in for- digital learning channel, gaining educational information, mal class from schools, colleges or Universities. But there educational resources and educational services anytime, is no why that provides learning out of the formal class anywhere .Mobile phone is superior to a computer in porta- [2][3]. bility. This technology also facilitates the learning by your- Tigrigna is the third most spoken language in Ethiopia, self process. Learning without teacher is easy in this scenar- after Amharic and Oromo, and by far the most spoken in io. The technology encourages learn anytime and anywhere. Eritrea. It is also spoken by large immigrant communities Learning a language is different from any other subject as it around the world, in countries including Sudan, Saudi combines explicit learning of vocabulary and language rules Arabia, Germany, Italy, Sweden, the United Kingdom, with unconscious skills development in the fluent applica- tion of both these things.
    [Show full text]
  • A Tigrinya Language Council
    NOTES AND NEWS 63 The main principle is that an Ngombe word is recognized as belonging to one or other word-group (' part of speech '), not, as in English, by its use and meaning, but by its form. As everybody knows, a Bantu word generally consists of a core or radical, to which are attached various prefixes, infixes, and suffixes. Except in ideophones, this radical in Ngombe has a tone, integral and fixed, high or low. Its basic form is Consonant-Vowel-Consonant, e.g. -OIP- (' shut'). The affixes modify the intrinsic meaning carried by the core and bind the structure of the sentence. There are four major groups of words. The nominals, containing each a fixed prefix, are invariable. The distinction between ' singular ' and 'plural' has no grammatical significance: for example, molangi (' bottle ') and milangi (' bottles ') are two independent words existing each in its own right. There are independent and dependent nominals, the latter containing a variable prefix which imitates the initial syllable of the in- dependent nominals with which they are linked. Older grammarians would call these ' adjectives ', ' pronouns ', ' adverbs ', 'conjunctions '. The next group, the verbals, differ from nominals in that alternating affixes occur both before and after the central core, the prefixes referring to the preceding independent nominal. The remaining words in Ngombe are either particles, which are used to associate words in sentence-construction, or ideophones. The independent nominals are grouped in genders—' classes ', we used to call them. Mr. Price proceeds to divide dependent nominals into adnominals and pronominals, corresponding roughly to ' adjectives ' and ' pronouns '.
    [Show full text]
  • Aspects of Tigrinya Literature
    ASPECTS OF TIGRINYA LITERATURE (UNTIL 1974) BY HAILTJ HABTU Thesis submitted for the degree of M*Phil® at the School of Oriental and African Studies, University of London* June* 1981* ProQuest Number: 10673017 All rights reserved INFORMATION TO ALL USERS The quality of this reproduction is dependent upon the quality of the copy submitted. In the unlikely event that the author did not send a complete manuscript and there are missing pages, these will be noted. Also, if material had to be removed, a note will indicate the deletion. uest ProQuest 10673017 Published by ProQuest LLC(2017). Copyright of the Dissertation is held by the Author. All rights reserved. This work is protected against unauthorized copying under Title 17, United States Code Microform Edition © ProQuest LLC. ProQuest LLC. 789 East Eisenhower Parkway P.O. Box 1346 Ann Arbor, Ml 4 8 1 0 6 - 1346 ABSTRACT This dissertation aims to study the origin and deve­ lopment of Tigrinya as a written language-a topic that has so far received little scholarly attention. As time and the easy accessibility of all the relevant material are limiting factors,this investigation is necessarily selective. Chapter One takes stock of all available writing in the Tigrinya language frcm its beginning in the middle of the last century up to 1974. Chapter Two briefly investigates the development of writ­ ten Tigrinya to serve varying functions and ends and the general direction that its development took. Chapter Three provides a glimpse of the breadth and variety of literature incorporated in the Eritrean Weekly News published in Asmara by the British Information Services frcm 1942 to 1952.
    [Show full text]
  • English Literacy in Schools and Public Places in Multilingual Eritrea
    ENGLISH LITERACY IN SCHOOLS AND PUBLIC PLACES IN MULTILINGUAL ERITREA Yonas Mesfun Asfaha, Tilburg University 1 Introduction As in many countries of Africa, the English language plays an important role in Eritrea. English is the language of educational instruction in junior, secondary and higher levels of education. English is also in use in governmental offices, international businesses and in service rendering institutions (e.g., restaurants, hotels, groceries) in major urban centres in the country. However, unlike many countries in Africa, Eritrea does not accord official language status to English or any of its national languages. With the aim of highlighting the role of the English language and literacy in Eritrea, this contribution describes the general language policy in the country, the use of English in schools and the display of English signs and messages in public places. Eritrea is a small country in the Horn of Africa on the Red Sea. Eritrea was colonized for over a century by Italy, Great Britain and Ethiopia respectively, before gaining independence in 1993. Eritrea is a linguistically diverse country with 3.6 million inhabitants belonging to nine different language groups, representing three language families and three different scripts. The Semitic languages Tigrinya and Tigre use a syllabic script called Ge’ez (alternatively known as Fidel or Ethiopic script), the Nilo- Saharan languages Kunama and Nara, as well as the Cushitic languages Afar, Saho, Bilen and Bidhaawyeet, use alphabetic Latin script, and Arabic is written in a consonantal alphabetic Arabic script. Concerning the provisions of the language policy in education, all nine Eritrean languages and the three scripts are used in elementary education throughout the country (Department of Education, 1991).
    [Show full text]
  • Tilburg University Relational Presence Mahaffy, S.G
    Tilburg University Relational presence Mahaffy, S.G. Publication date: 2013 Link to publication in Tilburg University Research Portal Citation for published version (APA): Mahaffy, S. G. (2013). Relational presence: The spatiality of breakthrough decision making through a relational constructionist lens. [s.n.]. General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. • Users may download and print one copy of any publication from the public portal for the purpose of private study or research. • You may not further distribute the material or use it for any profit-making activity or commercial gain • You may freely distribute the URL identifying the publication in the public portal Take down policy If you believe that this document breaches copyright please contact us providing details, and we will remove access to the work immediately and investigate your claim. Download date: 02. okt. 2021 Relational Presence: The Spatiality of Breakthrough Decision Making through a Relational Constructionist Lens Proefschrift ter verkrijging van de graad van doctor aan Tilburg University op gezag van de rector magnificus, prof. dr. Ph. Eijlander, in het openbaar te verdedigen ten overstaan van een door het college voor promoties aangewezen commissie in de Ruth First zaal van de Universiteit op maandag 13 mei 2013 om 10.15 uur door Samuel George Mahaffy geboren op 21 augustus 1952 te Asmara, Eritrea RELATIONAL PRESENCE IN DECISION MAKING 2 Promotores: prof.dr.
    [Show full text]
  • Tigrinya Part-Of-Speech Tagging with Morphological Patterns and the New Nagaoka Tigrinya Corpus
    International Journal of Computer Applications (0975 – 8887) Volume 146 – No.14, July 2016 Tigrinya Part-of-Speech Tagging with Morphological Patterns and the New Nagaoka Tigrinya Corpus Yemane Keleta Tedla Kazuhide Yamamoto Ashuboda Marasinghe Nagaoka University of Nagaoka University of Nagaoka University of Technology Technology Technology 1603-1 Kamitomioka, Nagaoka 1603-1 Kamitomioka, Nagaoka 1603-1 Kamitomioka, Nagaoka Niigata, 940-2188 Japan Niigata, 940-2188 Japan Niigata, 940-2188 Japan ABSTRACT Although a few electronic dictionaries and a lexicon of This paper presents the first part-of-speech (POS) tagging automatically extracted Tigrinya words exist, a text corpus research for Tigrinya (Semitic language) from the newly that has linguistic information is not available for the public. constructed Nagaoka Tigrinya Corpus. The raw text was Given this circumstance, new research needed to initiate the extracted from a newspaper published in Eritrea in the NLP research from the foundation by constructing a corpus, Tigrinya language. This initial corpus was cleaned and and thereby language tools, for the advancement of formatted in plaintext and the Text Encoding Initiative (TEI) information access in Tigrinya. Specifically, the objectives of XML format. A tagset of 73 tags was designed, and the this research are constructing a new POS-tagged corpus and corpus for POS was manually annotated. This tagset developing a POS tagger using two state-of-the-art supervised encompasses three levels of grammatical information, which machine learning algorithms, augmented with morphological are the main POS categories, subcategories, and POS clitics. features of the Tigrinya language. The POS tagged corpus contains 72,080 tokens. Tigrinya has The remaining content is organized into seven sections.
    [Show full text]
  • Nagaoka Tigrinya Corpus: Design and Development of Part-Of-Speech Tagged Corpus
    言語処理学会 第22回年次大会 発表論文集 (2016年3月) Nagaoka Tigrinya Corpus: Design and Development of Part-of-speech Tagged Corpus Yemane Keleta Tedla Kazuhide Yamamoto Ashuboda Marasinghe [email protected] [email protected] [email protected] Nagaoka University of Technology 1603-1 Kamitomioka, Nagaoka Niigata, 940-2188 Japan 1 Introduction TEI1 text corpus encoding in XML2. A text corpus is more useful when augmented with A text corpus is a collection of text data that linguistic information. In light of this fact, represents an instance of the language in use. part-of-speech information has been added by It is a fundamental resource for the devel- manually tagging the data. Tagging guidelines opment of statistical and corpus-based Natu- used in the process of manual tagging were ral Language Processing (NLP) tasks. In gen- prepared following a study on Tigrinya gram- eral, with resource poor languages, the sup- mar. Accordingly, a tagset comprising of 73 port for working with electronic data is ei- tags was designed to encompass three levels ther insufficient or may be not available alto- of grammatical information: (1) the main POS gether [11]. We present the development of category, (2) its subcategory or type, and (3) the first Part-of-Speech (POS) tagged text cor- POS affixes (clitics). Finally, these POS labels, pus for a Semitic language, Tigrinya. Tigrinya were employed in tagging a corpus of 72,080 is spoken by estimated 7 million people in the tokens arranged into 4656 sentences. East African countries of Eritrea and North- ern Ethiopia. Other Semitic languages include Arabic, Hebrew, Amharic, Maltese and Tigre.
    [Show full text]
  • Tigriyna Dictionary
    TIGRIYNA DICTIONARY 1st edition TIGRIYNA-ITALIAN-ENGLISH MODERN DICTIONARY 1 by EYOB GHEBREZIABHIER BEIN Tigriyna Dictionary, Tigriyna - Italian - English Modern Dictionary 1st Edition,edition, Switzerland,Switzerland, MayMay 20152015 Author/publishing house: Eyob Ghebreziabhier Bein, Mühlematt 6, CH-6020 Emmenbrücke, Switzerland, Tel. +41 41 543 00 39, www.gizie-lewti.com All rights reserved. No part of this book may be reproduced, transmitted or stored in an information retrievalretrieval system in any form or by any means, graphic, electronic or mechanical, including photocopying, taping ad recording, without prior written permission from the author. Prepress/cover: MULTI REFLEX AG, Luzern ISBN 978-3-9524462-0-1 >GKº(TT; ^Tigriyna syllabary Tavola di Tigrino sillabe number 1st form 2nd form 3rd form 4th form 5th form 6th form 7th form of letters ùùùÃùÃÃÃ()ÊÊÊ ¢Ã`¢Ã`¢Ã` 686868 .`Ã.`Ã.`à 8 8 6á86á86á8 6Ã`6Ã`6Ã` 1st #he #ohu $Éhi $ha $zhie %h &ho 2nd 'ůe 'qůu 'vůi (ůa 'sůie )ů '§ůo 3rd *he *qhu *vhi +ha *shie ,h -ho 4th . me .o mu /É mi / ma /z mie 0m 1 mo 5th 6re 7ru 8ri 9ra :rie ;r <ro 6th >se >o su >v si ? sa >y sie @s A so 7th Bshe Bt shu BÉ shi C sha Bz shie Dsh Esho 8th Fqe Frqu Fwqi Gqa F| qie Hq Iqo 9th FKqhe FKrqhu FKw qhi GK qha FK|| qhie L qh Mqho 10th FKqhue FK~qhui FKqhua FKÍqhuie FK¨qhué 11th F que F~ qui F qua FÍquie F¨ qué 12th N be No bu Nv bi O ba Ny bie PNb Q bo 13th N\ ve N\q vu N\v vi O\ va N\y vie PN\v Q\ vo 14th Rte Rr tu Rw ti S ta R| tie T t U to 15th ]ne ]q nu ]É ni ^na ]x nie _n ` no 16th °e °qu °vi a
    [Show full text]
  • Country of Origin Information Report Eritrea June 2010
    COUNTRY OF ORIGIN INFORMATION REPORT ERITREA 8 JUNE 2010 UK Border Agency COUNTRY OF ORIGIN INFORMATION SERVICE ERITREA 8 JUNE 2010 Contents Preface Paragraphs Background Information 1. GEOGRAPHY ......................................................................................... 1.01 Maps .............................................................................................. 1.06 2. ECONOMY ............................................................................................. 2.01 3. HISTORY ............................................................................................... 3.01 Independence and Transitional Government 1991-1993 .......... 3.02 The People’s Front for Democracy and Justice and constitutional developments 1994-2001 .................................... 3.04 Border conflict with Ethiopia 1998-2000 .................................... 3.07 Border tensions with neighbouring countries, 2005-2009 ....... 3.09 Domestic political developments from September 2001 to August 2009 .................................................................................. 3.15 4. RECENT DEVELOPMENTS (DECEMBER 2009 - JUNE 2010) ...................... 4.01 Useful sources for further information...................................... 4.05 5. CONSTITUTION ...................................................................................... 5.01 6. POLITICAL SYSTEM ................................................................................ 6.01 Human Rights 7. INTRODUCTION .....................................................................................
    [Show full text]
  • Islam in World Cultures
    Islam in World Cultures Islam in World Cultures Comparative Perspectives Edited by R. MICHAEL FEENER Santa Barbara, California Denver, Colorado Oxford, England Copyright 2004 by R. Michael Feener All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, except for the inclusion of brief quotations in a review, without prior permission in writing from the publishers. Library of Congress Cataloging-in-Publication Data Islam in world cultures : comparative perspectives / R. Michael Feener, editor. p. cm. Includes bibliographical references and index. ISBN 1-57607-516-8 (hardback : alk. paper) ISBN 1-57607-519-2 (e-book) 1. Islam—21st century. 2. Islam and civil society. 3. Islam and state—Islamic countries. 4. Islamic countries—Civilization—21st century. I. Feener, R. Michael. BP161.3.I74 2004 297’.09—dc22 2004017397 08 07 06 05 04 10 9 8 7 6 5 4 3 2 1 This book is also available on the World Wide Web as an e-book. Visit abc-clio.com for details. ABC-CLIO, Inc. 130 Cremona Drive, P.O. Box 1911 Santa Barbara, California 93116-1911 This book is printed on acid-free paper. Manufactured in the United States of America For Mom and Dad, with love and gratitude Contents C o n t r i b u t o r s ,ix Islam in World Cultures Comparative Perspectives Chapter One I s l a m : H i s t o r i c a l I n t r o d u c t i o n a n d O v e r v i e w R.
    [Show full text]