Techniques for the Automatic Extraction of Character Networks in German Historic Novels

Total Page:16

File Type:pdf, Size:1020Kb

Techniques for the Automatic Extraction of Character Networks in German Historic Novels Techniques for the Automatic Extraction of Character Networks in German Historic Novels vorgelegt von Markus Krug Wurzburg,¨ 2020 Dissertation zur Erlangung des naturwissenschaftlichen Doktorgrades der Bayerischen Julius-Maximilians-Universit¨at Wurzburg¨ ii Abstract Recent advances in Natural Language Preprocessing (NLP) allow for a fully automatic extraction of character networks for an incoming text. These networks serve as a compact and easy to grasp representation of literary fiction. They offer an aggregated view of the text, which can be used during distant reading approaches for the analysis of literary hypotheses. In their core, the networks consist of nodes, which represent literary characters, and edges, which represent relations between characters. For an automatic extraction of such a network, the first step is the detection of the references of all fictional entities that are of importance for a text. References to the fictional entities appear in the form of names, noun phrases and pronouns and prior to this work, no components capable of automatic detection of character references were available. Existing tools are only capable of detecting proper nouns, a subset of all character references. When evaluated on the task of detecting proper nouns in the domain of literary fiction, they still underperform at an F1-score of just about 50%. This thesis uses techniques from the field of semi-supervised learning, such as Distant supervision and Generalized Expectations, and improves the results of an existing tool to about 82%, when evaluated on all three categories in literary fiction, but without the need for annotated data in the target domain. However, since this quality is still not sufficient, the decision to annotate DROC, a corpus comprising 90 fragments of German novels was made. This resulted in a new general purpose annotation environment titled as ATHEN, as well as annotated data that spans about 500.000 tokens in total. Using this data, the combination of supervised algorithms and a tailored rule based algorithm, which in combination are able to exploit both - local consistencies as well as global consistencies - yield an algorithm with an F1-score of about 93%. This component is referred to as the Kallimachos tagger. A character network can not directly display references however, instead they need to be clustered so that all references that belong to a real world or fictional entity are grouped together. This process widely known as coreference resolution is a hard problem in the focus of research for more than half a century. This work experimented with adaptations of classical feature based machine learning, with a dedicated rule based algorithm and with modern techniques of Deep Learning, but no approach can surpass 55% B-Cubed F1, when evaluated on DROC. Due to this barrier, many researchers do not use a fully-fledged coreference resolution when they extract character networks, but only focus on a more forgiving subset- the names. For novels such as Alice's Adventures in Wonderland by Lewis Caroll, this would however only result in a network in which many important characters are missing. In order to integrate important characters into the network that are not named by the author, this work makes use of automatic detection of speaker and addressees for direct speech utterances (all entities involved in a dialog are considered to be of importance). This problem is by itself not an easy task, however the most successful system analysed in this thesis is able to correctly determine the speaker to about 85% of the utterances as well as about 65% of the addressees. This speaker information can not only help to identify the most dominant characters, but also serves as a way to model the relations between entities. iii During the span of this work, components have been developed to model relations between characters using speaker attribution, using co-occurrences as well as by the us- age of true interactions, for which yet again a dataset was annotated using ATHEN. Furthermore, since relations between characters are usually typed, a component for the extraction of a typed relation was developed. Similar to the experiments for the charac- ter reference detection, a combination of a rule based and a Maximum Entropy classifier yielded the best overall results, with the extraction of family relations showing a score of about 80% and the quality of love relations with a score of about 50%. For family relations, a kernel for a Support Vector Machine was developed that even exceeded the scores of the combined approach but is behind on the other labels. In addition, this work presents new ways to evaluate automatically extracted networks without the need of domain experts, instead it relies on the usage of expert summaries. It also refrains from the uses of social network analysis for the evaluation, but instead presents ranked evaluations using Precision@k and the Spearman Rank correlation coef- ficient for the evaluation of the nodes and edges of the network. An analysis using these metrics showed, that the central characters of a novel are contained with high probability but the quality drops rather fast if more than five entities are analyzed. The quality of the edges is mainly dominated by the quality of the coreference resolution and the correlation coefficient between gold edges and system edges therefore varies between 30 and 60%. All developed components are aggregated alongside a large set of other preprocessing modules in the Kallimachos pipeline and can be reused without any restrictions. iv Acknowledgements / Danksagung Zum Entstehen der vorliegenden Arbeit haben viele Personen beigetragen. Dabei gilt mein besonderer Dank an meinen Doktorvater Frank Puppe, der nicht nur stets ein offenes Ohr fur¨ Probleme hatte, ich m¨ochte auch insbesondere die angenehmen und spannenden Diskussionen uber¨ Forschungsfragen hervorheben, in denen wir immer zu einer sehr guten L¨osung gekommen sind, was mir insgesamt eine sehr gute Forschung- sumgebung verschafft hat. Des Weiteren m¨ochte ich mich bei Prof. Dr. Fotis Jannidis bedanken, der durch seine bestechende Expertise in der Computerlinguistik und daruber¨ hinaus stets sehr gute Ideen zu unseren Vorhaben beisteuerte. Fur¨ ein angenehmes Arbeitsklima haben auch die zahlreichen Diskussionen und Ak- tivit¨aten mit meinen Kollegen des Lehrstuhls fur¨ Informatik VI und des Lehrstuhls fur¨ Informatik X beigetragen, wofur¨ ich mich auch in diesem Sinne bedanken m¨ochte. An dieser Stelle m¨ochte ich die Unterstutzung,¨ die ich durch David Schmidt erhalten habe besonders betonen, ohne seine Unterstutzung¨ h¨atte sich mein Zeitplan sicher noch et- was verz¨ogert. Durch die Zusammenarbeit mit Lukas Weimer und Isabella Reger wurde die Arbeit im Projekt Kallimachos deutlich vereinfacht, so dass die Erstellung der im Rahmen dieser Arbeit entstanden Daten und Tools sehr angenehm verlief. Daruber¨ hinaus bin ich sehr dankbar fur¨ den Ruckhalt¨ und die Unterstutzung,¨ die ich von meiner Famlie, von meiner Frau und meiner Tochter erhalten habe, so dass auch mal lange Tage im Buro¨ ertr¨aglicher wurden. Wurzburg,¨ September 2019 v Contents 1. Motivation1 1.1. Context of this Thesis . .5 2. Goals of this Work7 2.1. Adaptation and Creation of Algorithms for the Domain of German historic novels ......................................7 2.2. Kallimachos Pipeline . .7 2.2.1. Experiments concerning Runtimes and Requirements of the differ- ent Algorithms . 12 2.3. Contributions . 15 3. Preliminaries 17 3.1. Performance Metrics . 17 3.1.1. Performance Metrics for Labelwise Evaluation . 18 3.1.2. Performance Metric for the Evaluation of Spans . 19 3.1.3. Performance Metric for the Evaluation of Coreference Clusters . 19 3.2. Background on Machine Learning . 34 3.2.1. Perceptron Algorithm . 34 3.2.2. Support Vector Machine . 39 3.2.3. Maximum Entropy Classifier . 40 3.2.4. A primer on Deep Learning . 41 3.2.5. (Neural) Conditional Random Fields . 42 3.3. Rule-Based Algorithms . 48 3.4. Comparison of Rule-based vs Machine Learning Methods . 50 3.5. The Convergence of Rule-based approaches and Machine Learning algo- rithms...................................... 51 4. Datasets and Resources used in this Work 53 4.1. Available Corpora . 53 4.1.1. Datasets for German Character Reference Detection . 53 4.1.2. Datasets for Quotation Attribution . 54 4.1.3. Datasets for Coreference Resolution . 54 4.2. The Creation of DROC . 55 4.2.1. Description of the Textual Sources . 55 4.2.2. Creation of the Corpus . 55 4.2.3. Annotation Guidelines . 56 4.2.4. Annotated Character References . 56 vii Contents 4.2.5. Annotated Coreferences . 58 4.2.6. Annotated Direct Speech . 59 4.2.7. Inter-Annotator Agreement . 60 4.2.8. Corpus Statistics . 60 4.3. Kindlers Expert Summaries . 61 4.3.1. Guidelines for the Annotation of Relations Between characters . 61 4.3.2. Statistics of the Kindler Data set . 62 4.4. Active Learning to Annotate Relations in German Novels . 62 4.5. Inter Annotator Agreement for the Annotation of Relations . 63 4.6. Annotation of Interactions in Parts of DROC . 65 4.6.1. Statistics about the Dataset . 68 4.7. Gazetteers and Further Lexical Resources . 68 4.7.1. Dictionaries . 68 4.7.2. Gazetteers and Semantic Resources . 69 4.7.3. Semi automatically created resources . 70 4.8. Selection of appropriate Preprocessing Components for German Literary Documents ................................... 70 4.8.1. Tokenizing and Sentence Splitting . 70 4.8.2. Part of Speech Tagging and Morphology . 71 4.8.3. Dependency and Constituency Parsing . 71 4.9. Development of unpublished Preprocessing Components for German lit- erarytexts.................................... 73 4.9.1. Tokenizer and Sentence Splitting Component . 73 4.9.2. Ontology Based Information Extraction . 74 5. ATHEN 81 5.1. Introduction . 81 5.2. Motivation . 82 5.3. Features of ATHEN . 83 5.3.1. General Purpose Annotation Using the Annotation Browser .
Recommended publications
  • Distant Reading, Computational Stylistics, and Corpus Linguistics the Critical Theory of Digital Humanities for Literature Subject Librarians David D
    CHAPTER FOUR Distant Reading, Computational Stylistics, and Corpus Linguistics The Critical Theory of Digital Humanities for Literature Subject Librarians David D. Oberhelman FOR LITERATURE librarians who frequently assist or even collaborate with faculty, researchers, IT professionals, and students on digital humanities (DH) projects, understanding some of the tacit or explicit literary theoretical assumptions involved in the practice of DH can help them better serve their constituencies and also equip them to serve as a bridge between the DH community and the more traditional practitioners of literary criticism who may not fully embrace, or may even oppose, the scientific leanings of their DH colleagues.* I will therefore provide a brief overview of the theory * Literary scholars’ opposition to the use of science and technology is not new, as Helle Porsdam has observed by looking at the current debates over DH in the academy in terms of the academic debate in Great Britain in the 1950s and 1960s between the chemist and novelist C. P. Snow and the literary critic F. R. Leavis over the “two cultures” of science and the humanities (Helle Porsdam, “Too Much ‘Digital,’ Too Little ‘Humanities’? An Attempt to Explain Why Humanities Scholars Are Reluctant Converts to Digital Humanities,” Arcadia project report, 2011, DSpace@Cambridge, www.dspace.cam.ac.uk/handle/1810/244642). 54 DISTANT READING behind the technique of DH in the case of literature—the use of “distant reading” as opposed to “close reading” of literary texts as well as the use of computational linguistics, stylistics, and corpora studies—to help literature subject librarians grasp some of the implications of DH for the literary critical tradition and learn how DH practitioners approach literary texts in ways that are fundamentally different from those employed by many other critics.† Armed with this knowledge, subject librarians may be able to play a role in integrating DH into the traditional study of literature.
    [Show full text]
  • KB-Driven Information Extraction to Enable Distant Reading of Museum Collections Giovanni A
    KB-Driven Information Extraction to Enable Distant Reading of Museum Collections Giovanni A. Cignoni, Progetto HMR, [email protected] Enrico Meloni, Progetto HMR, [email protected] Short abstract (same as the one submitted in ConfTool) Distant reading is based on the possibility to count data, to graph and to map them, to visualize the re- lations which are inside the data, to enable new reading perspectives by the use of technologies. By contrast, close reading accesses information by staying at a very fine detail level. Sometimes, we are bound to close reading because technologies, while available, are not applied. Collections preserved in the museums represent a relevant part of our cultural heritage. Cataloguing is the traditional way used to document a collection. Traditionally, catalogues are lists of records: for each piece in the collection there is a record which holds information on the object. Thus, a catalogue is just a table, a very simple and flat data structure. Each collection has its own catalogue and, even if standards exists, they are often not applied. The actual availability and usability of information in collections is impaired by the need of access- ing each catalogue individually and browse it as a list of records. This can be considered a situation of mandatory close reading. The paper discusses how it will be possible to enable distant reading of collections. Our proposed solution is based on a knowledge base and on KB-driven information extraction. As a case study, we refer to a particular domain of cultural heritage: history of information science and technology (HIST).
    [Show full text]
  • IXA-Pipe) and Parsing (Alpino)
    Details from a distance? CLIN26 Amsterdam A Dutch pipeline for event detection Chantal van Son, Marieke van Erp, Antske Fokkens, Paul Huygen, Ruben Izquierdo Bevia & Piek Vossen CLOSE READING DISTANT READING NewsReader & BiographyNet Apply the detailed analyses typically associated with close (or at least non-distant) reading to large amounts of textual data ✤ NewsReader: (financial) news data ✤ Day-by-day processing of news; reconstructing a coherent story ✤ Four languages: English, Spanish, Italian, Dutch ✤ BiographyNet: biographical data ✤ Answering historical questions with digitalized data from Biography Portal of the Netherlands (www.biografischportaal.nl) using computational methods http://www.newsreader-project.eu/ http://www.biographynet.nl/ Event extraction and representation 1. Intra-document processing: Dutch NLP pipeline generating NAF files ✤ pipeline includes tokenization, parsing, SRL, NERC, etc. ✤ NLP Annotation Format (NAF) is a multi-layered annotation format for representing linguistic annotations in complex NLP architectures 2. Cross-document processing: event coreference to convert NAF to RDF representation 3. Store the NAF and RDF in a KnowledgeStore Event extraction and representation 1. Intra-document processing: Dutch NLP pipeline generating NAF files ✤ pipeline includes tokenization, parsing, SRL, NERC, etc. ✤ NLP Annotation Format (NAF) is a multi-layered annotation format for representing linguistic annotations in complex NLP architectures 2. Cross-document processing: event coreference to convert NAF to RDF 3.
    [Show full text]
  • ISSN: 1647-0818 Lingua
    lingua Volume 12, Número 2 (2020) ISSN: 1647-0818 lingua Volume 12, N´umero 2 { 2020 Linguamatica´ ISSN: 1647{0818 Editores Alberto Sim~oes Jos´eJo~aoAlmeida Xavier G´omezGuinovart Conteúdo Artigos de Investiga¸c~ao Adapta¸c~aoLexical Autom´atica em Textos Informativos do Portugu^esBrasileiro para o Ensino Fundamental Nathan Siegle Hartmann & Sandra Maria Alu´ısio .................3 Avaliando entidades mencionadas na cole¸c~ao ELTeC-por Diana Santos, Eckhard Bick & Marcin Wlodek ................... 29 Avalia¸c~aode recursos computacionais para o portugu^es Matilde Gon¸calves, Lu´ısaCoheur, Jorge Baptista & Ana Mineiro ........ 51 Projetos, Apresentam-se! Aplicaci´onde WordNet e de word embeddings no desenvolvemento de proto- tipos para a xeraci´onautom´atica da lingua Mar´ıaJos´eDom´ınguezV´azquez ........................... 71 Editorial Ainda h´apouco public´avamosa primeira edi¸c~aoda Linguam´atica e, subitamente, eis-nos a comemorar uma d´uziade anos. A todos os que colaboraram durante todos estes anos, tenham sido leitores, autores ou revisores, a todos o nosso muito obrigado. N~ao´ef´acilmanter um projeto destes durante tantos anos, sem qualquer financi- amento. Todo este sucesso ´egra¸cas a trabalho volunt´ario de todos, o que nos permite ter artigos de qualidade publicados e acess´ıveisgratuitamente a toda a comunidade cient´ıfica. Nestes doze anos muitos foram os que nos acompanharam, nomeadamente na comiss~aocient´ıfica. Alguns dos primeiros membros, convidados em 2008, continuam ativamente a participar neste projeto, realizando revis~oesapuradas. Outros, por via do seu percurso acad´emico e pessoal, j´an~aocolaboram connosco. Como sinal de agradecimento temos mantido os seus nomes na publica¸c~ao.
    [Show full text]
  • VIANA: Visual Interactive Annotation of Argumentation
    VIANA: Visual Interactive Annotation of Argumentation Fabian Sperrle* Rita Sevastjanova∗ Rebecca Kehlbeck∗ Mennatallah El-Assady∗ Figure 1: VIANA is a system for interactive annotation of argumentation. It offers five different analysis layers, each represented by a different view and tailored to a specific task. The layers are connected with semantic transitions. With increasing progress of the analysis, users can abstract away from the text representation and seamlessly transition towards distant reading interfaces. ABSTRACT are actively developing techniques for the extraction of argumen- Argumentation Mining addresses the challenging tasks of identi- tative fragments of text and the relations between them [41]. To fying boundaries of argumentative text fragments and extracting develop and train these complex, tailored systems, experts rely on their relationships. Fully automated solutions do not reach satis- large corpora of annotated gold-standard training data. However, factory accuracy due to their insufficient incorporation of seman- these training corpora are difficult and expensive to produce as they tics and domain knowledge. Therefore, experts currently rely on extensively rely on the fine-grained manual annotation of argumen- time-consuming manual annotations. In this paper, we present a tative structures. An additional barrier to unifying and streamlining visual analytics system that augments the manual annotation pro- this annotation process and, in turn, the generation of gold-standard cess by automatically suggesting which text fragments to annotate corpora is the subjectivity of the task. A reported agreement with next. The accuracy of those suggestions is improved over time by Cohen’s k [11] of 0:610 [64] between human annotators is consid- incorporating linguistic knowledge and language modeling to learn ered “substantial” [38] and is the state-of-the-art in the field.
    [Show full text]
  • Enhancing Domain-Specific Entity Linking in DH
    heterogeneous spectrum of Digital Humanities re- search. • Black Box and reproducibility. As Hasibi et Enhancing Domain-Specific al. (2016) recently remarked, the TagMe Entity Linking in DH RESTful API remains a black box, as it is im- possible to check whether it corresponds to Federico Nanni the system described in the original paper. [email protected] Not knowing the reliability of the system University of Mannheim, Germany limits its use for distant reading analyses, i.e. quantitative studies that go beyond text ex- Yang Zhao ploration. [email protected] • Language Versions. Currently, TagMe is University of Mannheim, Germany only available in English, German and Italian but does not support other widespread lan- Simone Paolo Ponzetto guages such as Chinese, Arabic, Spanish, and [email protected] French, which are essential for enhancing its University of Mannheim, Germany use in the DH community. • Infrequent Updates. TagMe has been ini- Laura Dietz tially created on the English 2009 version of [email protected] Wikipedia and it has been updated only University of New Hampshire, United States of America twice (summer 2012, summer 2016). Imag- ine a setting where a scholar intends to ana- lyze a collection of mainstream news on the Middle East: before the most recent update For the purpose of information retrieval and text the system was not able to detect mentions exploration, digital humanities (DH) scholars have ex- of “Al-Nursa Front”, the former Syrian amined the potential of methods such as keyphrase ex- branch of al-Qaeda. traction (Hasan and Ng, 2014) and named entity • Wikipedia as Knowledge Base.
    [Show full text]
  • Prolegomena to the Automated Analysis of a Bilingual Poetry Corpus, with Particular Reference to an Annotated Edition of “The Cantos” of Ezra Pound
    University of Pennsylvania ScholarlyCommons Publicly Accessible Penn Dissertations 2016 Prolegomena To The Automated Analysis Of A Bilingual Poetry Corpus, With Particular Reference To An Annotated Edition Of “the Cantos” Of Ezra Pound Robin Seguy University of Pennsylvania, [email protected] Follow this and additional works at: https://repository.upenn.edu/edissertations Part of the English Language and Literature Commons Recommended Citation Seguy, Robin, "Prolegomena To The Automated Analysis Of A Bilingual Poetry Corpus, With Particular Reference To An Annotated Edition Of “the Cantos” Of Ezra Pound" (2016). Publicly Accessible Penn Dissertations. 2576. https://repository.upenn.edu/edissertations/2576 This paper is posted at ScholarlyCommons. https://repository.upenn.edu/edissertations/2576 For more information, please contact [email protected]. Prolegomena To The Automated Analysis Of A Bilingual Poetry Corpus, With Particular Reference To An Annotated Edition Of “the Cantos” Of Ezra Pound Abstract Standing at the intersection of a theoretical investigation into the possibilities of applying the tools and methods of automated analysis to a large plurilingual poetry corpus and of a set of observables gleaned along the creation of a digitally annotated edition of The Cantos of Ezra Pound — a robust test-case for the TEI — the present dissertation can be read under different guises. One of them, for instance, would be that of a comedy, divina commedia or com�dia de Deus, in which the computer plays — Leibnizian harmonics! — the part of supreme intellect. A: The selva oscura is that of newly born “Digital Humanities” — burgeoning yet obscured already by two dominant paradigms. On the one hand, the constructivism inherited from poststructuralist theory; on the other, a na�ve return to the most trivial kind of linguistic realism.
    [Show full text]
  • Where Close and Distant Readings Meet
    Where Close and Distant Readings stress on mixed methods, as we are combining linguistic and literary criteria of selecting style markers to dis- Meet: Text Clustering Methods in criminate between blog genres (Leech & Short 2007,57-58). Literary Analysis of Weblog Genres Current research in the field of computational literary genre stylistics focuses on Most Frequent Words (e.g. Schöch Maciej Maryl and Pielström 2014; Jannidis & Lauer 2014) or functional [email protected] linguistic categories (or both) (e.g. Allison et. al 2011). Institute of Literary Research of the Polish Academy of Yet, this study applies similar methods to emergent and Sciences, Poland uncategorised forms of writing. The quantitative methods are incorporated into the qualitative research workflow in Maciej Piasecki order to create a productive feedback loop. [email protected] Wrocław University of Technology Corpus Ksenia Młynarczyk The corpus of blogs was collected with the use of [email protected] BlogReader - an extension of a corpus gathering system Wrocław University of Technology developed in CLARIN-PL (Oleksy et al. 2014) on a basis of open components: jusText andOnion (Pomikálek, 2011). From the initial set analysed by Maryl et al., 250 blogs were Problem: towards a non-topical classification of selected for processing as being long enough and included weblog genres clean text (comments were omitted). We intentionally left out blogs with exceptionally large or small amount of text The existing typologies of weblog genres - both popular in order to balance the sample. The selected subcorpus and academic - are based on the blog topic, e.g.
    [Show full text]
  • Litbank: Born-Literary Natural Language Processing 1 Introduction
    LitBank: Born-Literary Natural Language Processing∗ David Bamman University of California, Berkeley [email protected] 1 Introduction Much work involving the computational analysis of text in the humanities draws on methods and tools in natural language processing (NLP)—an area of research focused on reasoning about the linguistic struc- ture of text. Over the past 70 years, the ways in which we process natural language have blossomed into dozens of applications, moving far beyond early work in speech recognition (Davis et al., 1952) and machine translation (Bar-Hillel, 1960) to include question answering, summarization, and text generation. While the direction of many avenues of research in NLP has tended toward the development of end-to- end-systems—where, for example, a model learns to solve the problem of information extraction without relying on intermediary steps of part-of-speech tagging or syntactic parsing—one area where the individual low-level linguistic representations are important comes in analyses that depend on them for argumentation. Work in the computational humanities, in particular, has drawn on this representation of linguistic structure for a wide range of work. Automatic part-of-speech taggers have been used to explore poetic enjambment (Houston, 2014) and characterize the patterns that distinguish the literary canon from the archive (Algee- Hewitt et al., 2016). Syntactic parsers have been used to attribute events to the characters who participate in them (Jockers and Kirilloff, 2016; Underwood et al., 2018) and characterize the complexity of sentences in Henry James (Reeve, 2017). Coreference resolution has been used to explore the prominence of major and minor characters as a function of their gender (Kraicer and Piper, 2018).
    [Show full text]
  • Cultivating Capacity, Creating Change
    CCCC Convention Convention CCCC CULTIVATING CAPACITY, CREATING CHANGE CHANGE CREATING CAPACITY, CULTIVATING CCCC 2017 . PORTLAND March 15–18, 2017 • Portland, Oregon • Portland, 2017 15–18, March R.S.V.P. to one of our local parties to sample Portland treats and drinks. Go “all in” with one of our author workshops at the conference. Visit Booth #101 for details, and look for us this summer at the CCCC regional meetings! CULTIVATING CAPACITY, CREATING CHANGE #BSM4C2017 March 15–18, 2017 • Portland, Oregon macmillanlearning.com / BSM4C2017 Conference on College Composition and Communication cccc17 program cover.indd 1 2/5/17 11:24 PM cccc ad bw.pdf 1 2/12/16 12:02 AM Find opportunity and value with CCCC Take a closer look at the Conference on College Composition and Communication HAVE YOU READ THE LATEST BOOKS IN THE STUDIES IN WRITING AND RHETORIC SERIES? CCCC is the leading organiza- tion in writing studies, offering not only the largest meeting of writing specialists in the world every spring but also a relevant and strategic reposi- tory of resources, research, and networking channels to help you be your best. C •CCCC’s extensive grants and awards M program provides opportunities to be Y recognized for your scholarship, to CM apply for funds for your next research Public Pedagogy in Composition Studies, Ashley J. Holmes MY project, or to receive travel support to The Desire for Literacy: Writing in the Lives of Adult Learners, Lauren Rosenberg From Boys to Men: Rhetorics of Emergent American Masculinity, Leigh Ann Jones CY learn from and with your colleagues.
    [Show full text]
  • Digital Approaches Towards Serial Publications Joke Daems, Gunther Martens, Seth Van Hooland, and Christophe Verbruggen
    Digital Approaches Towards Serial Publications Joke Daems, Gunther Martens, Seth Van Hooland, and Christophe Verbruggen Journal of European Periodical Studies, 4.1 (Summer 2019) ISSN 2506-6587 Content is licensed under a Creative Commons Attribution 4.0 Licence The Journal of European Periodical Studies is hosted by Ghent University Website: ojs.ugent.be/jeps To cite this article: Joke Daems, Gunther Martens, Seth Van Hooland, and Christophe Verbruggen, ‘Digital Approaches Towards Serial Publications’, Journal of European Periodical Studies, 4.1 (Summer 2019), 1–7 Digital Approaches Towards Serial Publications Joke Daems*, Gunther Martens*, Seth Van Hooland^, and Christophe Verbruggen* *Ghent University and ^Université Libre de Bruxelles [email protected] For periodical studies to activate its potential fully, therefore, we will need dedicated institutional sites that furnish the necessary material archives as well as the diverse expertise these rich materials require. The expanding digital repositories, which often patch up gaping holes in the print archive, have begun to provide a broad array of scholars with a dazzling spectrum of periodicals. This dissemination of the archive, in turn, now challenges us to invent the tools and institutional structures necessary to engage the diversity, complexity, and coherence of modern periodical culture.1 This volume was inspired by the Digital Approaches Towards 18th–20th Century Serial Publications conference, which took place in September 2017 at the Royal Academies for Sciences and Arts of Belgium. The conference brought together humanities scholars, social scientists, computational scientists, and librarians interested in discussing how digital techniques can be used to uncover the different layers of knowledge contained in serial publications such as newspapers, journals, and book series.
    [Show full text]
  • The Distant Reading of Religious Texts: a “Big Data” Approach to Mind-Body Concepts In
    Article The Distant Reading of Religious Texts: A “Big Data” Approach to Mind-Body Concepts in Early China 5 Edward Slingerland,* Ryan Nichols, Kristoffer Neilbo, and Carson Logan This article focuses on the debate about mind-body concepts in early China to demonstrate the usefulness of large-scale, automated textual 10 analysis techniques for scholars of religion. As previous scholarship has argued, traditional, “close” textual reading, as well as more recent, human coder-based analyses, of early Chinese texts have called into question the “strong” holist position, or the claim that the early Chinese made no qualitative distinction between mind and body. In a series of follow-up 15 studies, we show how three different machine-based techniques—word collocation, hierarchical clustering, and topic modeling analysis—provide *Edward Slingerland, Department of Asian Studies, University of British Columbia, Vancouver, British Columbia, Canada. E-mail: [email protected]. Ryan Nichols, Department of Philosophy, California State University, Fullerton, CA. Kristoffer Nielbo, School of Culture and Society, Aarhus University, Aarhus, Denmark. Carson Logan, Department of Computer Science, University of British Columbia, Vancouver, British Columbia, Canada. Most of this work was funded by a Social Sciences and Humanities Research Council (SSHRC) of Canada Partnership Grant on “The Evolution of Religion and Morality” awarded to E.S., with some performed while K.N. was a visiting scholar at the Institute for Pure and Applied Mathematics (IPAM), which is supported by the National Science Foundation, and E.S. was an Andrew W. Mellon Foundation Fellow, Center for Advanced Study in the Behavioral Sciences, Stanford University. We would also like to thank the anonymous referees at JAAR for very helpful comments that have made this a much stronger paper.
    [Show full text]