/

Part of this project was to scrape news media articles to identify environmental conflict events such as resource conflicts, land appropriation, human-wildlife conflict, and supply chain issues.
With an initial focus on India, we also connected conflict events to their jurisdictional policies to identify how to resolve those conflicts faster or to identify a gap in legislation.
Part of the pipeline in building this Language Model was a semi-supervised attempt in order to be Improving Topic Modeling Performance to increase environmental sustainability, whose process and the outcome are available here.
In short, in order to make this Topic Modeling model robust, Coreference Resolution was suggested as one of the possible additions.
What exactly is Coreference Resolution?
Coreference resolution is the task of finding all expressions that refer to the same entity in a text (1)
We toyed around with some packages which seemed good in theory but were rather challenging to apply to our specific task. We needed a package that would be user-friendly, as a script would have to be developed for 28 people to take and be able to apply without much struggle.
NeuralCoref, Stanford NLP, Apache Open NLP, and Allennlp. After trying out each package, I personally preferred Allennlp, but as a team, we decided to use NeuralCoref with a short but effective script written by one of the collaborators Srijha Kalyan.
The code was applied to the article data which was annotated by fellow collaborators from the Annotation Task Group. This resulted in a CSV file with the original article titles, the original article text, and a new column of Coreference article text; not as chains but in the same written format as the original article text.
The output was then sent to the Topic Modeling Task Team, which at that point was sitting on an accuracy of 83%, with the Coreference Resolution data, the accuracy jumped to 93%.
That’s an 11% improvement! All the hard work and hours were clearly worth it!
You might also like

Analyzing the Effects of Seasonal Affective Disorder on Mental Health of People in London

Best Topic Modeling Python Libraries Compared (+ Top NLP Projects)
Hot Topic Detection and Tracking on Social Media during AFCON 2021 using Topic Modeling Techniques

Topic Modelling with Latent Dirichlet Allocation (LDA) in NLP | Step-by-Step Tutorial