From dc61056183bb84ca90b5ffb6a07f92d8bfaad394 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 7 Feb 2016 02:56:16 +0100 Subject: [PATCH] * Fix parallel_parse script --- examples/parallel_parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/parallel_parse.py b/examples/parallel_parse.py index dc8deaf24..45e14d845 100644 --- a/examples/parallel_parse.py +++ b/examples/parallel_parse.py @@ -43,7 +43,7 @@ def save_parses(batch_id, input_, out_dir, n_threads, batch_size): if path.exists(out_loc): return None print('Batch', batch_id) - nlp = spacy.en.English(parser=False) + nlp = spacy.en.English() nlp.matcher = None with open(out_loc, 'wb') as file_: texts = (strip_meta(text) for text in input_)