ConllViewer

Visually representing a CONLL 2009 files


License
MIT
Install
pip install ConllViewer==1.0.0

Documentation

conll-viewer

Turning coNLL 2009 formatted files to a visual format, with support for files resulting from open-sesame Currently, the only format supported is the one that been through argument identification stage of open-sesame.


Installation

Conll-viewer can be installed from PyPi using PIP

$ pip install conllviewer

Examples

import conllviewer
file=conllviewer.reader("predicted-args.conll")
sentences=file.get_sentences()
im=sentences[0].draw()
im.save("sentence.png")