diff --git a/spacy/pipeline/transition_parser.pyx b/spacy/pipeline/transition_parser.pyx index 98628f3c8..c42389a84 100644 --- a/spacy/pipeline/transition_parser.pyx +++ b/spacy/pipeline/transition_parser.pyx @@ -667,3 +667,9 @@ cdef class Parser(TrainablePipe): if state.is_final(): break return states, golds, max_length + + @property + def activations(self): + # We currently do not have access to the state ids or probabilities + # after parsing. TODO: the parser refactor does provide some history. + return []