Add labels property to parser

This commit is contained in:
Matthew Honnibal 2018-02-21 16:00:00 +01:00
parent 4dc0fc9954
commit e5757d4bf0

View File

@ -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.'''