mirror of
https://github.com/explosion/spaCy.git
synced 2025-03-03 10:55:52 +03:00
Expose parser's tok2vec model component
This commit is contained in:
parent
17c63906f9
commit
13c8881d2f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user