Arxiv:1908.09282V3 [Cs.CL] 31 Oct 2019 Place in Modern Korean

Total Page:16

File Type:pdf, Size:1020Kb

Arxiv:1908.09282V3 [Cs.CL] 31 Oct 2019 Place in Modern Korean Don’t Just Scratch the Surface: Enhancing Word Representations for Korean with Hanja Kang Min Yoo∗, Taeuk Kim∗ and Sang-goo Lee Department of Computer Science and Engineering Seoul National University, Seoul, Korea fkangminyoo,taeuk,[email protected] Abstract We propose a simple yet effective approach for improving Korean word representations using additional linguistic annotation (i.e. Hanja). We employ cross-lingual transfer learning in training word representations by leveraging the fact that Hanja is closely related to Chi- nese. We evaluate the intrinsic quality of rep- resentations learned through our approach us- ing the word analogy and similarity tests. In Figure 1: An example of a Korean word showing its addition, we demonstrate their effectiveness form and multi-level meanings. The Sino-Korean word KR on several downstream tasks, including a novel consists of Hangul phonograms ( ) and Hanja lo- HJ Korean news headline generation task. gograms ( ). Although annotation of Hanja is op- tional, it offers deeper insight into the word meaning due to its association with the Chinese characters (CN). 1 Introduction There is a strong connection between the Korean Information Skip-Gram), for capturing the seman- and Chinese languages due to cultural and histori- tics of Hanja and subword structures of Korean cal reasons (Lee and Ramsey, 2011). Specifically, and introducing them into the vector space. Note a set of logograms with very similar forms to the that it is also quite intuitive for native Koreans 1 Chinese characters, called Hanja , served in the to resolve the ambiguity of (Sino-)Korean words past as the only medium for written Korean until with the aid of Hanja. We conjecture this heuris- Hangul, the Korean alphabet, and Jamo came into tic is attributed to the fact that Hanja characters existence in 1443 (Sohn, 2001). Considering this are logograms, each of which contains more lex- etymological background, a substantial portion of ical meaning when compared against its counter- Korean words are classified as Sino-Korean, a set part, the Hangul character, which is a phonogram. of Korean words that had originated from Chinese Accordingly, in this work, we focus on exploiting and can be expressed in both Hanja and Hangul the rich extra information from Hanja as a means (Taylor, 1997), with the latter becoming common- of constructing better Korean word embeddings. arXiv:1908.09282v3 [cs.CL] 31 Oct 2019 place in modern Korean. Furthermore, our approach enables us to empir- Based on these facts, we assume the introduc- ically investigate the potential of character-level tion of Hanja-level information will aid in ground- cross-lingual knowledge transfer with a case study ing better representation for the meaning of Ko- of Chinese and Hanja. rean words (e.g. see Fig.1). To validate our To sum up, our contributions are threefold: hypothesis, we propose a simple yet effective ap- proach to training Korean word representations, • We introduce a novel way of training Korean named Hanja-level SISG (Hanja-level Subword word embeddings with an expanded Korean alphabet vocabulary using Hanja in addition ∗Equal contribution. 1Hanja and traditional Chinese characters are very similar to the existing Korean characters, Hangul. but not completely identical. Some differences in strokes and language-exclusive characters exist. • We also explore the possibility of character- level knowledge transfer between two lan- However, due to the deconstructible structure guages by initializing Hanja embeddings of Korean characters and the agglutinative na- with Chinese character embeddings before ture of the language, the model proposed by Bo- training skip-gram. janowski et al.(2017) comes short in capturing sub-character and inter-character information spe- • We prove the effectiveness of our method in cific to Korean understanding. As a remedy, the two ways, one of which is intrinsic evaluation model proposed by Park et al.(2018) introduces (the word analogy and similarity tests), and jamo-level n-grams g(j), whose vectors can be as- the other being two downstream tasks includ- sociated with the target context as well. Given that ing a newly proposed Korean news headline a Korean word w can be split into a set of jamo generation task. (j) (j) n (j) (j)o n-grams Gw ⊂ G = g1 ; : : : ; gJ , where 2 Model Description G(j) is the set of all possible jamo n-grams in the corpus, the updated scoring function for jamo- 2.1 Skip-Gram (SG) level skip-gram s(j) is thus Given a corpus as a sequence of words (w1; w2; : : : ; wT ), the goal of a skip-gram model (j) X (Mikolov et al., 2013) is to maximize the log- s (w; c) = s (w; c) + zjvc: (4) (j) probabilities of context words given a target word j2Gw wi: 2.3 Hanja-level SISG2 X X log p (wcjwi); (1) Another semantic level in Korean lies in Hanja i2f1;:::;T g c2C(i) logograms. Hanja characters can be mapped to Hangul phonograms, hence Hanja annotations are where C returns a set of context word indices given sufficient but not necessary in conveying mean- a word index. The usual choice for training the ings (Fig.1). As each Hanja character is associ- parameterized probability function p (wcjwi) is to ated with semantics, their presence could provide reframe the problem as a set of binary classifica- meaningful aid in capturing word-level semantics tion tasks of the target context word c and other in the vector space. negative samples chosen from the entire dictionary We propose incorporating Hanja n-grams in the (negative sampling). The objective is thus learning of word representations by allowing the scoring function to associate each Hanja n-gram X with the target context word. Concretely, given L (s (wi; wc)) + L (−s (wi; wj)) ; (2) j2N (i;c) that a Korean word w contains a set of Hanja se- quences Hw = (hw;1; : : : ; hw;Hw ) (e.g. for the −x where L (x) = log (1 + e ), the binary logis- example in Fig.1 hw;1 = “>會” and hw;2 = “型”) tic loss. N returns a set of negative sample in- and that Ih is the set of Hanja n-grams for a Hanja dices given target word and context indices. In the sequence h (e.g. Ihw;2 = f“型”, “<boh>型”, vanilla SG model, the scoring function s is the dot “型<eoh>”g, when n is equal to 2), all Hanja (h) product between the two word vectors: vw and vc. n-grams Gw for the word w are the union of Hanja n-grams of Hanja sequences present in w: 2.2 Subword Information SG (SISG) and S I . The length of Hanja n-grams in I is a Jamo-level SISG h2Hw h h hyperparameter. Then the new score function for In Bojanowski et al.(2017), the scoring func- Hanja-level SISG is tion incorporates subword information. Specifi- cally, given all possible n-gram character sets G = (h) (j) X fg1; : : : ; gGg in the corpus and that the n-gram set s (w; c) = s (w; c) + zhvc; (5) (h) of a particular word w is Gw ⊂ G, the scoring h2Gw function is thus the sum of dot products between where zh is the n-gram vector for a Hanja se- all n-gram vectors z and the context vector vc: quence h. X 2 s (w; c) = zgvc: (3) The code and models are publicly available online at https://github.com/kaniblu/hanja-sisg g2Gw Analogy Similarity 2.4 Character-level Knowledge Transfer Method Sem. Syn. All Pr. Sp. Since Hanja characters essentially share deep SISG(cj)y .478 .385 .432 - .677 roots with Chinese characters, many of them can SG .423 .495 .459 .608 .627 SISG(c) .450 .591 .520 .620 .612 be mapped by one-to-one correspondence. By SISG(cj) .398 .484 .441 .665 .671 converting Korean characters into simplified Chi- SISG(cj)z .414 .487 .451 .654 .674 nese characters or vice versa, it is possible to uti- SISG(cjh3) .340 .450 .395 .634 .633 lize pre-trained Chinese embeddings in the pro- SISG(cjh4) .349 .456 .402 .624 .617 SISG(cjhr) .355 .462 .409 .650 .647 cess of training Hanja-level SISG. In our case, we y reported by Park et al.(2018) propose leveraging advances in Chinese word em- z pre-trained embeddings provided by the authors of beddings from the Chinese community by initial- Park et al.(2018) run with our evaluation script izing Hanja n-grams vectors zh with the state-of- the-art Chinese embeddings (Li et al., 2018) and Table 1: Word analogy and similarity evaluation re- training with the score function in Equation5. sults. For word analogy test, the table shows cosine distances averaged over semantic and syntactic word pairs (lower is better). For word similarity test, we 3 Experiments report on Pearson and Spearman correlations between 3.1 Word Representation Learning predictions and ground truth scores. We observe that our approach (SISG(cjh)) shows significant improve- 3.1.1 Korean Corpus ments in the analogy test but some deterioration in the For learning word representations, we utilize the similarity test. Note that the evaluation results reported by the original authors (y) are largely different from corpus prepared by Park et al.(2018) with small our results. This might be due to differences in imple- modifications. We perform additional data cleans- mentation details, hence we report and compare with ing (e.g. removing non-Korean sentences in the the results of the authors’ embeddings run on our test corpus and unifying number tags) to obtain a script (z). cleaner version of the corpus. All of our compara- tive studies are based on this corpus.
Recommended publications
  • Stochastic Model of Stroke Order Variation
    2009 10th International Conference on Document Analysis and Recognition Stochastic Model of Stroke Order Variation Yoshinori Katayama, Seiichi Uchida, and Hiroaki Sakoe Faculty of Information Science and Electrical Engineering, Kyushu University, 819-0395, Japan fyosinori,[email protected] Abstract “ ¡ ” under an unnatural stroke correspondence which max- imizes their similarity. Note that the correct stroke order of A stochastic model of stroke order variation is proposed “ ” is (“—” ! “j' ! “=” ! “n” ! “–”) and that of “ ¡ ” and applied to the stroke-order free on-line Kanji character is (“—” ! “–” ! “j' ! “=” ! “n” ). Thus if we allow any recognition. The proposed model is a hidden Markov model stroke order variation, those two characters become almost (HMM) with a special topology to represent all stroke order identical. variations. A sequence of state transitions from the initial One possible remedy to suppress the misrecognitions is state to the final state of the model represents one stroke to penalize unnatural i.e., rare stroke order on optimizing order and provides a probability of the stroke order. The the stroke correspondence. In fact, there are popular stroke distribution of the stroke order probability can be trained orders (including the standard stroke order) and there are automatically by using an EM algorithm from a training rare stroke orders. If we penalize the situation that “ ¡ ” is set of on-line character patterns. Experimental results on matched to an input pattern with its very rare stroke order large-scale test patterns showed that the proposed model of (“—” ! “j' ! “=” ! “n” ! “–”), we can avoid the could represent actual stroke order variations appropriately misrecognition of “ ” as “ ¡ .” and improve recognition accuracy by penalizing incorrect For this purpose, a stochastic model of stroke order vari- stroke orders.
    [Show full text]
  • Nushu and the Writing of Religious
    NOSHU AND RELIGIOUS CULTURE IN CHINA "MY MOTHER WATCHED OVER AN EMPTY HOUSE AND',WAS SEPARATED FROM THE HEA VENL Y FEMALE": NUSHU AND THE WRITING OF RELIGIOUS CULTURE IN CHINA By STEPHANIE BALK WILL, B.A. (H.Hons.) A Thesis Submitted to the School of Graduate Studies in Partial FulfiHment ofthe Requirements for the Degree Master of Arts McMaster University © Copyright by Stephanie Balkwill, August 2006 MASTER OF ARTS (2006) McMaster University (Religious Studies) Hamilton, Ontario TITLE: "My Mother Watched Over an Empty House and was Separated From the Heavenly Female": Nushu and the Writing IOf Religious Culture in China. AUTHOR: Stephanie Balkwill, B.A. (H.Hons.) (University of Regina) SUPERVISOR: Dr. James Benn NUMBER OF PAGES: v, 120 ii ]rll[.' ' ABSTRACT Niishu, or "Women's Script" is a system of writing indigenous to a small group of village women in iJiangyong County, Hunan Province, China. Used exclusively by and for these women, the script was developed in order to write down their oral traditions that may have included songs, prayers, stories and biographies. However, since being discovered by Chinese and Western researchers, nushu has been rapidly brought out of this Chinese village locale. At present, the script has become an object of fascination for diverse audiences all over the world. It has been both the topic of popular media presentations and publications as well as the topic of major academic research projects published in Engli$h, German, Chinese and Japanese. Resultantly, niishu has played host to a number of mo~ern explanations and interpretations - all of which attempt to explain I the "how" and the "why" of an exclusively female script developed by supposedly illiterate women.
    [Show full text]
  • Chinese Script Generation Panel Document
    Chinese Script Generation Panel Document Proposal for the Generation Panel for the Chinese Script Label Generation Ruleset for the Root Zone 1. General Information Chinese script is the logograms used in the writing of Chinese and some other Asian languages. They are called Hanzi in Chinese, Kanji in Japanese and Hanja in Korean. Since the Hanzi unification in the Qin dynasty (221-207 B.C.), the most important change in the Chinese Hanzi occurred in the middle of the 20th century when more than two thousand Simplified characters were introduced as official forms in Mainland China. As a result, the Chinese language has two writing systems: Simplified Chinese (SC) and Traditional Chinese (TC). Both systems are expressed using different subsets under the Unicode definition of the same Han script. The two writing systems use SC and TC respectively while sharing a large common “unchanged” Hanzi subset that occupies around 60% in contemporary use. The common “unchanged” Hanzi subset enables a simplified Chinese user to understand texts written in traditional Chinese with little difficulty and vice versa. The Hanzi in SC and TC have the same meaning and the same pronunciation and are typical variants. The Japanese kanji were adopted for recording the Japanese language from the 5th century AD. Chinese words borrowed into Japanese could be written with Chinese characters, while Japanese words could be written using the character for a Chinese word of similar meaning. Finally, in Japanese, all three scripts (kanji, and the hiragana and katakana syllabaries) are used as main scripts. The Chinese script spread to Korea together with Buddhism from the 2nd century BC to the 5th century AD.
    [Show full text]
  • A Comparative Analysis of the Simplification of Chinese Characters in Japan and China
    CONTRASTING APPROACHES TO CHINESE CHARACTER REFORM: A COMPARATIVE ANALYSIS OF THE SIMPLIFICATION OF CHINESE CHARACTERS IN JAPAN AND CHINA A THESIS SUBMITTED TO THE GRADUATE DIVISION OF THE UNIVERSITY OF HAWAI‘I AT MĀNOA IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE OF MASTER OF ARTS IN ASIAN STUDIES AUGUST 2012 By Kei Imafuku Thesis Committee: Alexander Vovin, Chairperson Robert Huey Dina Rudolph Yoshimi ACKNOWLEDGEMENTS I would like to express deep gratitude to Alexander Vovin, Robert Huey, and Dina R. Yoshimi for their Japanese and Chinese expertise and kind encouragement throughout the writing of this thesis. Their guidance, as well as the support of the Center for Japanese Studies, School of Pacific and Asian Studies, and the East-West Center, has been invaluable. i ABSTRACT Due to the complexity and number of Chinese characters used in Chinese and Japanese, some characters were the target of simplification reforms. However, Japanese and Chinese simplifications frequently differed, resulting in the existence of multiple forms of the same character being used in different places. This study investigates the differences between the Japanese and Chinese simplifications and the effects of the simplification techniques implemented by each side. The more conservative Japanese simplifications were achieved by instating simpler historical character variants while the more radical Chinese simplifications were achieved primarily through the use of whole cursive script forms and phonetic simplification techniques. These techniques, however, have been criticized for their detrimental effects on character recognition, semantic and phonetic clarity, and consistency – issues less present with the Japanese approach. By comparing the Japanese and Chinese simplification techniques, this study seeks to determine the characteristics of more effective, less controversial Chinese character simplifications.
    [Show full text]
  • The Perception of Simplified and Traditional Chinese Characters in the Eye of Simplified and Traditional Chinese Readers
    The perception of simplified and traditional Chinese characters in the eye of simplified and traditional Chinese readers Tianyin Liu ([email protected]) Janet Hui-wen Hsiao ([email protected]) Department of Psychology, University of Hong Kong 604 Knowles Building, Pokfulam Road, Hong Kong SAR Abstract components and have better ability to ignore some unimportant configural information for recognition, such as Expertise in Chinese character recognition is marked by analytic/reduced holistic processing (Hsiao & Cottrell, 2009), exact distances between features (Ge, Wang, McCleery, & which depends mainly on readers’ writing rather than reading Lee, 2006) compared with novices (Ho, Ng, & Ng., 2003; experience (Tso, Au, & Hsiao, 2011). Here we examined Hsiao & Cottrell, 2009). Consequently, expert readers may whether simplified and traditional Chinese readers process process Chinese characters less holistically than novices. characters differently in terms of holistic processing. When There are currently two Chinese writing systems in use processing characters that are distinctive in the simplified and in Chinese speaking regions, namely simplified and traditional scripts, we found that simplified Chinese readers were more analytic than traditional Chinese readers in traditional Chinese. The simplified script was created during perceiving simplified characters; this effect depended on their the writing reform initiated by the central government of the writing rather than reading/copying performance. In contrast, People’s Republic of China in the 1960s for easing the the two groups did not differ in holistic processing of learning process. Today the majority of Chinese speaking traditional characters, regardless of their performance regions including Mainland China, Singapore, and Malaysia difference in writing/reading traditional characters.
    [Show full text]
  • Chinese, Dutch, and Japanese in the Introduction of Western Learning in Tokugawa Japan
    _full_alt_author_running_head (neem stramien B2 voor dit chapter en dubbelklik nul hierna en zet 2 auteursnamen neer op die plek met and): 0 _full_articletitle_deel (kopregel rechts, vul hierna in): Polyglot Translators _full_article_language: en indien anders: engelse articletitle: 0 62 Heijdra Chapter 6 Polyglot Translators: Chinese, Dutch, and Japanese in the Introduction of Western Learning in Tokugawa Japan Martin J. Heijdra The life of an area studies librarian is not always excitement. Yes, one enjoys informing bright graduate students of the latest scholarship, identifying Chi- nese rubbings of Egyptological stelae, or discussing publishing gaps in the cur- rent scholarship with knowledgeable editors; but it involves sometimes the mundane, such as reshelving a copy of a nineteenth-century Japanese transla- tion of a medical work by Johannes de Gorter.1 It was while performing the latter duty that I noticed something odd. The characters used to write Gorter were 我爾德兒, which indeed could be read as Gorter. That is, if read in modern Chinese; if read in the usual Sino-Japanese, it would be *Gajitokuji, something far from the Dutch pronunciation. A quick perusal of some scholars of rangaku 蘭學, “Dutch Studies,” revealed a general lack of awareness of this question, why a Dutch name in a nineteenth-century Japanese book would be read in modern Chinese. Prompted to write an article in honor of a Dutch editor of East and South Asian Studies, I decided to inves- tigate this more thoroughly. There are many aspects to consider, and I must confess that the final reason is hard to come by; but while I have not reached a final conclusion, I hope that in the future scholars will at least recognize the phenomenon when encountered.
    [Show full text]
  • Old Scripts, New Actors: European Encounters with Chinese Writing, 1550-1700 *
    EASTM 26 (2007): 68-116 Old Scripts, New Actors: European Encounters with Chinese Writing, 1550-1700 * Bruce Rusk [Bruce Rusk is Assistant Professor of Chinese Literature in the Department of Asian Studies at Cornell University. From 2004 to 2006 he was Mellon Humani- ties Fellow in the Asian Languages Department at Stanford University. His dis- sertation was entitled “The Rogue Classicist: Feng Fang and his Forgeries” (UCLA, 2004) and his article “Not Written in Stone: Ming Readers of the Great Learning and the Impact of Forgery” appeared in The Harvard Journal of Asi- atic Studies 66.1 (June 2006).] * * * But if a savage or a moon-man came And found a page, a furrowed runic field, And curiously studied line and frame: How strange would be the world that they revealed. A magic gallery of oddities. He would see A and B as man and beast, As moving tongues or arms or legs or eyes, Now slow, now rushing, all constraint released, Like prints of ravens’ feet upon the snow. — Herman Hesse 1 Visitors to the Far East from early modern Europe reported many marvels, among them a writing system unlike any familiar alphabetic script. That the in- habitants of Cathay “in a single character make several letters that comprise one * My thanks to all those who provided feedback on previous versions of this paper, especially the workshop commentator, Anthony Grafton, and Liam Brockey, Benjamin Elman, and Martin Heijdra as well as to the Humanities Fellows at Stanford. I thank the two anonymous readers, whose thoughtful comments were invaluable in the revision of this essay.
    [Show full text]
  • Areal Script Form Patterns with Chinese Characteristics James Myers
    Areal script form patterns with Chinese characteristics James Myers National Chung Cheng University http://personal.ccu.edu.tw/~lngmyers/ To appear in Written Language & Literacy This study was made possible through a grant from Taiwan’s Ministry of Science and Technology (103-2410-H-194-119-MY3). Iwano Mariko helped with katakana and Minju Kim with hangul, while Tsung-Ying Chen, Daniel Harbour, Sven Osterkamp, two anonymous reviewers and the special issue editors provided all sorts of useful suggestions as well. Abstract It has often been claimed that writing systems have formal grammars structurally analogous to those of spoken and signed phonology. This paper demonstrates one consequence of this analogy for Chinese script and the writing systems that it has influenced: as with phonology, areal script patterns include the borrowing of formal regularities, not just of formal elements or interpretive functions. Whether particular formal Chinese script regularities were borrowed, modified, or ignored also turns out not to depend on functional typology (in morphemic/syllabic Tangut script, moraic Japanese katakana, and featural/phonemic/syllabic Korean hangul) but on the benefits of making the borrowing system visually distinct from Chinese, the relative productivity of the regularities within Chinese character grammar, and the level at which the borrowing takes place. Keywords: Chinese characters, Tangut script, Japanese katakana, Korean hangul, writing system grammar, script outer form, areal patterns 1. Areal phonological patterns and areal script patterns Sinoform writing systems look Chinese, even when they are functionally quite different. The visual traits of non-logographic Japanese katakana and Korean hangul are nontrivially like those of logographic Chinese script, as are those of the logographic but structurally unique script of Tangut, an extinct Tibeto-Burman language of what is now north-central China.
    [Show full text]
  • A Life of Sound: Korean Farming Music and Its Journey to Modernity
    A Life of Sound: Korean Farming Music and its Journey to Modernity Jennifer L. Bussell 2 May 1997 Bachelors Essay submitted for Honors in the Department of Anthropology The College of The University of Chicago Professor Ralph Nicholas, Advisor Professor Tetsuo Najita, Reader Introduction It is late on a Monday night, and from the basement of an aging university building the throbbing sound of drum beats rises through the ceiling, catching the ear of everyone who passes through and threatening the livelihood of shaking chandeliers. The sound is muffled, but its power can still be felt, the strength of the music unhindered by the walls surrounding it. Below, visitors to the basement cannot help changing their path, cannot help being drawn around the corner, into the room from which the sounds emanate. To their amazement, it is not an amplified drumset, it is not a few students banging away on American-style drums. What they find is a large group of students, seated on the floor in a circle, each playing an instrument. The visitors do not recognize any of the instruments. Most of what they see are drums, but not ones they have ever seen before. A few people are playing something different, some kind of miniature gong that makes an almost shreiking sound, and the visitors try to restrain themselves from holding their ears as they observe. After the instruments, they notice the students. Many of the musicians are Asian, but there are a few who are not. They seem serious, intent on what they are playing, but there are some who are smiling, a few who are making eye contact and laughing at each other, clearly enjoying themselves.
    [Show full text]
  • The Writings of Henry Cu
    P~per No. 13 The Writings of Henry Cu Kim The Center for Korean Studies was established in 1972 to coordinate and develop the resources for the study of Korea at the University of Hawaii. Its goals are to enhance the quality and performance of Uni­ versity faculty with interests in Korean studies; develop compre­ hensive and balanced academic programs relating to Korea; stimulate research and pub­ lications on Korea; and coordinate the resources of the University with those of the Hawaii community and other institutions, organizations, and individual scholars engaged in the study of Korea. Reflecting the diversity of academic disciplines represented by its affiliated faculty and staff, the Center especially seeks to further interdisciplinary and intercultural studies. The Writings of Henry Cu Killl: Autobiography with Commentaries on Syngman Rhee, Pak Yong-man, and Chong Sun-man Edited and Translated, with an Introduction, by Dae-Sook Suh Paper No. 13 University of Hawaii Press Center for Korean Studies University of Hawaii ©Copyright 1987 by the University of Hawaii Press All rights reserved. Printed in the United States of America Honolulu, Hawaii 96822 Library of Congress Cataloging-in-Publication Data Kim, Henry Cu, 1889-1967. The Writings of Henry Cu Kim. (Paper; no. 13) Translated from holographs written in Korean. Includes index. 1. Kim, Henry Cu, 1889-1967. 2. Kim, Henry Cu, 1889-1967-Friends and associates. 3. Rhee, Syngman, 1875-1965. 4. Pak, Yong-man, 1881-1928. 5. Chong, Sun-man. 6. Koreans-Hawaii-Biography. 7. Nationalists -Korea-Biography. I. Suh, Dae-Sook, 1931- . II. Title. III. Series: Paper (University of Hawaii at Manoa.
    [Show full text]
  • Korean Studies Program
    korean studies program university of michigan fall 2006 director’s note koryo saram-the unreliable people, premiers in the fall I am happy to report that Koryo Saram-The Unreliable People, every Korean who was connected to the Comintern. One cannot a one-hour documentary created by the Korean Studies Program help wondering what would have happened to modern Korean (KSP) will make its international premier at the Smithsonian history if one or more factor had changed. For instance, if the Institution’s Sackler Gallery in Washington DC on October 29. Korean communist leadership in the Soviet Union had not This documentary, which has taken two years to make, is the perished in the Great Terror, would it not have been parachuted result of an extensive collaboration between units in the into North Korea by the Soviets in the aftermath of World War II? International Institute and within the university. We were fortu- Would someone from the ranks of the Comintern-connected nate to have access to some of the lowest paid but highest skilled Koreans have ruled the roost in North Korea and not Kim Il workers to be found in the country: the UROP (Undergraduate Sung? If so, is it possible that North Korea might have ended Research and Opportunity Program) and work-study students up looking more like a garden-variety Soviet satellite, rather than who streamed in and out of the KSP offices on the third floor what it became, a beleaguered nationalist regime held together of the International Institute. These individuals worked on by a cult of personality? a multitude of tasks: sorting through primary documents and The answers, it turned out, were not only unanswerable, film footage in Russian, Korean and English; translating oral but un-researchable.
    [Show full text]
  • Expreance Korean.Indd
    GREETINGS Welcome to Experience Korea!!! The National Association for Korean Schools (NAKS) is pleased to off er you to experience Ko- rea while interacting with many Korean language school teachers. Please continue your experience and connect to Korea by attending activities of Ko- rean language schools in your area. When it comes to Experience Korea, NAKS and its member schools Seungmin Lee are here to give you the unique opportunity. Please enjoy. NAKS President Korean Wave (한류) The Korean Wave (Hangul: 한류; Hanja: 韓流; RR: Hallyu; MR: Hallyu, About this sound listen (help·info), a neologism literally meaning “fl ow of Korea”) is the increase in global popularity of South Korean culture since the 1990s First driven by the spread of K-dramas and K-pop across East, South and Southeast Asia during its initial stages, the Korean Wave evolved from a regional development into a global phenomenon, carried by the Internet and social media and the proliferation of K-pop music videos on YouTube.Part of the success of the Korean Wave owes in part to the development of social net- working services and online video sharing platforms such as YouTube, which have allowed the Korean entertainment industry to reach a sizable overseas audience. Since the turn of the 21st century, South Korea has emerged as a major exporter of popular culture and tourism, aspects which have become a signif- icant part of its burgeoning economy. The growing popularity of Korean pop culture in many parts of the world has prompted the South Korean govern- ment to support its creative industries through subsidies and funding for start- ups, as a form of soft power and in its aim of becoming one of the world’s leading exporters of culture along with Japanese and British culture, a niche that the United States has dominated for nearly a century.
    [Show full text]