From 3266f9f6688e38bb470ce41d5ff30293ca35a908 Mon Sep 17 00:00:00 2001 From: Dick Windmeijer Date: Fri, 9 Oct 2020 14:26:09 +0200 Subject: [PATCH] Update example.py Changed output_dir to TextToCoNLL --- example.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example.py b/example.py index ace4ea6..ce5fc89 100644 --- a/example.py +++ b/example.py @@ -8,10 +8,10 @@ text_to_conll(text='He is \n\nwalking \t\t on air. He is Michael Jordan.', nlp=nlp, delimiter=" ", - output_dir='TextToConll/output', + output_dir='TextToCoNLL/output', basename='example.conll', spacy_attrs=['text', 'lemma_', 'ent_type_'], default_values={'ent_type_': "O"}, exclude=['is_space'], start_with_index=True, - verbose=1) \ No newline at end of file + verbose=1)