Giter Site home page Giter Site logo

cmerwich / participant-analysis Goto Github PK

View Code? Open in Web Editor NEW
4.0 2.0 0.0 95.32 MB

This repository contains algorithms and data related to my PhD research project 'Who is who in the Psalms?'

License: GNU General Public License v3.0

Jupyter Notebook 10.16% Python 0.87% HCL 88.97% Makefile 0.01% Shell 0.01%
coreference-annotation coreference-resolution coreference-data hebrew-bible participant-analysis old-testament

participant-analysis's Introduction

To cite this repository please use: DOI

Participant Analyis

This repository contains (Python) code and data that I have created for my NWO funded PhD research project 'Who is Who in the Psalms? Coreference Resolution as Exegetical Tool for Participant Analysis in Biblical Texts'. My dissertation is forthcoming.

The 'who is who?' question that always comes up when one reads a text can be solved by analysing all entities, or participants, in that text. The identification of entities enables a better informed interpretation process of the text.

The focus of the research project is to set up a methodology to analyse participants in the Ancient Hebrew Poetry of the Psalms, but the goal is also to make that methodology reproducible and applicable to any genre in the Hebrew Bible for other researchers.

Analysing participants is a notoriously hard Natural Language Processing task. In this research project participant analysis is cast as a coreference resolution problem. Coreference resolution is employed as a method to analyse participants in the Hebrew Bible. I refer to the notebooks, and the data and insights contained within them, in my dissertation. The repository is structured in eight folders. Most of them have their own readme.

1. Introduction

This folder contains a notebook intro that produces informative statistics presented in tables and graphs about the kind of data that is important for participant analyis. I use some of the graphs and tables in the introduction of my dissertation.

2. Annotation

In annotation a method is set up to annotate Biblical Hebrew for coreference. The folder contains:

  1. A notebook that produces annotation files that can be imported in annotation tool brat.
  2. An annotation model for Biblical Hebrew that defines which reference information and coreference relation is considered for annotation.
  3. An annotation aid that can be used to annotate coreference data. The annotation aid visualises potential mentions and features and syntactic relations that are useful and informative for coreference annotation.
  4. A folder annotations_brat) containing the coreference annotations of the Psalms.
  5. A notebook 'counts' that does some data exploration.

3. Text-Fabric Conversion

With the code in tf_conversion the coreference annotations can be converted to data that can be processed with Text-Fabric. This means that the annotations are enriched with other features that are not included in the annotations.

  1. The notebook corefMake converts the coreference annotations back to Text-Fabric data.
  2. The notebook corefStatistics gives descriptive statistics of the coreference annotated corpus. Genesis 1, Isaiah, 42 and the book of Psalms have been annotated by Christiaan. Numbers has been annotated by Gyusang Jin.
  3. With the code in notebook analyseParticipants the coreference annotated corpus, converted with corefMake, can be analysed for participants for any given text. It also produces overviews of possible annotation errors and descriptive statistics in tables.

4. Coreference Data

In coreference the converted coreference data is stored by corefMake. This coreference data can be loaded into a notebook.

5. Inter-annotator Agreement Analysis for Two Annotators

The iaa folder contains code and data to calculate and analyse inter-annotator agreement (abbreviated to: iaa) of the coreference annotations. An iaa analysis is done since mistakes are inherent to any annotation process. Annotations thus need to be scrutinised for quality and consistency. In the iaa-analysis notebook I explain what kind of inter-annotator agreement algorithm I have used. I also analyse and interpret the iaa measures.

6. MiMi - A Deterministic Coreference Resolver for Biblical Hebrew

The MiMi folder contains a deterministic -- i.e. a rule-driven -- coreference resolver for Biblical Hebrew. MiMi is the concatenation of Mi Mi which means Who? Who? in Biblical Hebrew.

  1. In the mimi-hb folder the notebook mimi-hb demonstrates MiMi's performance for the whole Hebrew Bible. Hence,mimi-hb cannot be used for actual qualitative coreference resolution analysis; MiMi can however (see point 2). In the notebook is explained how the algorithm works and what kind of files it produces. MiMi operates in two stages: mention detection and coreference resolution.
  • For the mention detection stage a Python implementation of the lex and yac parsers called SLY is implemented.
  • For the coreference resolution stage a sequence of eight sieves is applied: 1P and 2P pronouns, vocatives, string match, entities, appositions, fronted elements, predicates and 3P pronouns. MiMi produces descriptive statistics in tables and graphs for both stages. It is important to note that MiMi operates on hand-coded BHSA data that has been encoded over a period of about 30 years by the team at the Eep Talstra Centre for Bible and Computer (ETCBC). The BHSA database offers both parsed text objects such as words, phrases, clauses, etc., and a rich data set of features for all these text levels that can possibly contain implicit and explicit semantic information. MiMi gratefully makes use of both the boundaries of the text objects and the features. In that sense MiMi is not a strict application of a coreference resolver as may be formulated and understood by the computerised linguistics community (see for example: coreference, Stanford's models and what is computational linguistics?).
  1. In the MiMi notebook MiMi can be used to resolve coreference for any given text in the Hebrew Bible. The notebook can also be used for actual qualitative coreference resolution analysis which in turn can be used for participant analysis. In the function CreateCoref a single text can be specified or a whole Bible Book. The program produces three files per specified chapter:
    • An .ann file that contains mentions and coreference classes. The data in the ann files is structured and can be parsed in any way. Since the structure is based on brat's ann file format, the files can also be imported back into brat for further enhancement. This is important since MiMi resolves on average about 28.5% of the mentions in to a coreference class.
    • A plain .txt file with the transliterated Hebrew Bible text.
    • A .tsv file that keeps track of the words, their positions and word nodes (unique TF identifiers). MiMi produces descriptive statistics in tables and a graph for the mention detection and coreference resolution stages.

7. Inter-annotator Agreement Analysis of the Annotations and MiMi

In the iaa-ann-vs-mimi folder MiMi's results are crossvalidated with the authors' coreference annotations (available through analyseParticipants, since they are based on a similar ontology, namely the annotation model). This comparison gives an impression of both the quality of the annotations and the quality of the results that MiMi has produced. The comparison is done in validation

8. Confrontation

The confrontation notebook aims to analyse Psalm 75 - as test case - with the coreference data that has been produced by the coreference annotation method and coreference resolution algorithm MiMi. Search functions are used to analyse the entities that have been detected in Psalm 75. The search results are brought into discussion with exegetical commentaries on Psalm 75. I refer to my dissertation for this in-depth discussion.

Issues or fixes

TO DO Shorterm

TO DO Longterm

  • (TO DO:) The mentions and coreference classes can be visualised and analysed with the following functions.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.