Hello,
Doing some research, I couldn’t find a way to inspect the outputs of the different components in my NLU pipeline. This would be of great help for debugging purposes. Does Rasa offer such a feature?
Thanks!
Hello,
Doing some research, I couldn’t find a way to inspect the outputs of the different components in my NLU pipeline. This would be of great help for debugging purposes. Does Rasa offer such a feature?
Thanks!
You can define a custom component that logs the current values in message.data
and place it anywhere in your pipeline.
Take a look at this article: How to make a Custom Printer Component in Rasa NLU | The Rasa Blog | Rasa
This is exactly what I was looking for! Thanks