Last active
November 18, 2016 06:53
-
-
Save honnibal/1231964e784ab9acb65d to your computer and use it in GitHub Desktop.
Example of parsing Reddit comment dumps with spaCy: http://spacy.io/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import unicode_literals | |
from __future__ import print_function | |
import sys | |
import plac | |
import bz2 | |
import ujson | |
import spacy.en | |
def main(input_loc): | |
print("Loading...") | |
nlp = spacy.en.English() | |
for line in bz2.BZ2File(input_loc): | |
comment = ujson.loads(line) | |
parse = nlp(comment['body']) | |
for person in (ent for ent in parse.ents if ent.label_ == 'ORG'): | |
if person.string.isspace(): # Work around a bug :(. Fixed next version. | |
continue | |
if person.root.dep_ == 'nsubj': | |
for dobj in (w for w in person.root.head.rights if w.dep_ == 'dobj'): | |
print(person.string, person.root.head.orth_, | |
''.join(w.string for w in dobj.subtree)) | |
if __name__ == '__main__': | |
plac.call(main) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment