diff --git a/spacy/syntax/nn_parser.pyx b/spacy/syntax/nn_parser.pyx index fc48f2337..acf3d1857 100644 --- a/spacy/syntax/nn_parser.pyx +++ b/spacy/syntax/nn_parser.pyx @@ -753,6 +753,14 @@ cdef class Parser: for doc in docs: hook(doc) + @property + def tok2vec(self): + '''Return the embedding and convolutional layer of the model.''' + if self.model in (None, True, False): + return None + else: + return self.model[0] + @property def postprocesses(self): # Available for subclasses, e.g. to deprojectivize