Skip to content
/ RoamNER Public

Testing an implementation of Named-Entity Recognition integration for Roam Research

Notifications You must be signed in to change notification settings

hmprt/RoamNER

Repository files navigation

RoamNER has moved! (23/9/2020)

RoamNER has joined forces with the RoamingNERd team, and we're actively working on RoamNERd, a browser-based NER service for Roam. Follow our new Repo, and check out our public Roam devlog

RoamNER (Original Writeup)

Testing an implementation of Named-Entity Recognition integration for Roam Research

Sample output in Roam Research

Check out the public RoamNER_V1 knowledge graph here

Why?

Inpsired by a tweet by Balaji Srinivasan, I decided to try and make a working implementation of Named Entity Recognition in Roam.

The upsides of this are enormous; being able to instantly cross-reference ideas from any written content is huge for researchers, students and hackers of all stripes and I'm not even really sure of where the limits on this sort of thing could be, especially with more work - see this thread for a collection of great ideas. Moreover, I also just fancied a challenge and wanted to see what I could hack together in a day.

Implementation and user guide

Everything is written in Python, and the only dependencies are spacy and dateutil
pip3 install spacy
pip3 install dateutil

If you haven't worked with spacy before, you'll also need to install their english-language NER model:
python -m spacy download en_core_web_sm

Everything else is plug 'n' play, with the user specifying a .txt file, the name of the text and the author.

$ python3 roamNER_V1.py
> Please input a .txt file to load: ThePrince.txt
> Please input the document's name: The Prince
> Please input the title's author: Niccolo Machiavelli

RoamNER_V1 uses spacy for Named-Entity Recognition, identifies likely pages, and reformats the .txt input into a Roam-readable markdown file which the user can upload to a graph.

Bugs and limitations

While V1 works surprisingly well, there are a few issues:

  • The user is limited in the size of the markdown file that they can upload to Roam; if the file is too large, Roam won't accept it and will just generate a blank page with the title of the document. This is an issue on Roam's end, and there's not much I can do besides figure out the hard size limit for future versions.
  • Spacy's NER is good, but not great - nouns can get miscategorized and the data requires a fair amount of cleaning before it can be written to markdown. I think a lot of this is my being unfamiliar with the library (I only discovered it today!)
  • The count feature under tags is currently broken as it takes into account tags that I have discarded when formatting the data - this is an easy fix, but can wait until V2 because I need to eat.

About

Testing an implementation of Named-Entity Recognition integration for Roam Research

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages