for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import stanza
import e2edutch.stanza
e2edutch.stanza
import tensorflow.compat.v1 as tf
def test_processor():
nlp = stanza.Pipeline(lang='nl', processors='tokenize,coref')
text = 'Dit is een tekst.'
doc = nlp(text)
doc
# TODO: asserts about the doc having corefs
TODO
FIXME