diff --git a/spacy/en/__init__.py b/spacy/en/__init__.py index bfd521a2a..2cd69434b 100644 --- a/spacy/en/__init__.py +++ b/spacy/en/__init__.py @@ -96,7 +96,7 @@ class English(object): self._parser = GreedyParser(path.join(self._data_dir, 'deps')) return self._parser - def __call__(self, text, tag=True, parse=False): + def __call__(self, text, tag=True, parse=True): """Apply the pipeline to some text. Args: