How can we visualize the output of individual components in RASA NLU pipeline?

How can we visualize the output of individual components in RASA NLU pipeline? Example my pipeline has ner_crf and intent_featurizer_count_vectors

Is there any way that I can see the ouptut of ner_crf

and then the output of the next component in the pipeline that is intent_featurizer_count_vectors

2 Likes

every component sets certain attributes of an example, e.g.:

ner_crf: rasa_nlu/crf_entity_extractor.py at 4a28abb65a121bd183e1b56cfcaca2a98e793f93 · RasaHQ/rasa_nlu · GitHub

intent_featurizer_count_vectors: rasa_nlu/count_vectors_featurizer.py at 4a28abb65a121bd183e1b56cfcaca2a98e793f93 · RasaHQ/rasa_nlu · GitHub

you can read this properties with .get() method