Converts text corpora into a set of relational facts.
Project description
Relational NLP Preprocessing: A Python package and tool for converting text into a set of relational facts.
Kaushik Roy (@kkroy36) and Alexander L. Hayes (@batflyer)
Installation
Stable builds on PyPi
pip install rnlp
Development builds on GitHub
pip install git+git://github.com/starling-lab/rnlp.git
Quick-Start
rnlp can be used either as a CLI tool or as an imported Python Package.
CLI |
Imported |
|
|
Text will be converted into relational facts, relations encoded are:
between blocks of size ‘n’ (i.e. 2 sentences) in the blocks.
between block’s of size n (i.e. ‘n’ sentences) and sentences in the blocks.
between sentences and words in the sentences.
—
The relationships currently encoded are:
earlySentenceInBlock - sentence occurs within a third of the block length
earlyWordInSentence - word occurs within a third of the sentence length
lateSentenceInBlock - sentence occurs after two-thirds of the block length
midWayWordInSentence - word occurs between a third and two-thirds of the block length
nextSentenceInBlock - sentence that follows a sentence in a block
nextWordInSentence - word that follows a word in a sentence in a block
sentenceInBlock - sentence occurs in a block
wordInSentence - word occurs in a sentence.
wordString - the string contained in the word.
partOfSpeech - the part of speech of the word.
—
Files contain a toy corpus (files/) and an image of a BoostSRL tree for predicting if a word in a sentence is the word “you”.
The tree says that if the word string contained in word ‘b’ is “you” then ‘b’ is the word “you”. (This is of course true). A more interesting inference is the False branch that says that if word ‘b’ is an early word in sentence ‘a’ and word ‘anon12035’ is also an early word in sentence ‘a’ and if the word string contained in word ‘anon12035’ is “Thank”, then the word ‘b’ has decent change of being the word “you”. (The model was able to learn that the word “you” often occurs with the word “Thank” in the same sentence when “Thank” appears early in that sentence).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.