mirror of https://github.com/explosion/spaCy.git
Add labels property to parser
This commit is contained in:
parent
4dc0fc9954
commit
e5757d4bf0
|
@ -790,6 +790,11 @@ cdef class Parser:
|
|||
for doc in docs:
|
||||
hook(doc)
|
||||
|
||||
@property
|
||||
def labels(self):
|
||||
class_names = [self.moves.get_class_name(i) for i in range(self.moves.n_moves)]
|
||||
return class_names
|
||||
|
||||
@property
|
||||
def tok2vec(self):
|
||||
'''Return the embedding and convolutional layer of the model.'''
|
||||
|
|
Loading…
Reference in New Issue