From 42617548af8433c995ff68b1690cea8f7935c0ec Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 16 Apr 2015 04:20:31 +0200 Subject: [PATCH] * Disable merge_mwes by default --- spacy/en/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/en/__init__.py b/spacy/en/__init__.py index 6fa1af3ed..66d1f705f 100644 --- a/spacy/en/__init__.py +++ b/spacy/en/__init__.py @@ -126,7 +126,7 @@ class English(object): return self._entity def __call__(self, text, tag=True, parse=parse_if_model_present, - entity=parse_if_model_present, merge_mwes=True): + entity=parse_if_model_present, merge_mwes=False): """Apply the pipeline to some text. The text can span multiple sentences, and can contain arbtrary whitespace. Alignment into the original string