Hi,
i’m using rasa , the newsest version.
When i start rasa run --enable-api --endpoints endpoints.yml
, i don’t find any log folder.
I remeber in 0.14, i saw log folder with save NLU history (with option --response_log
) .
Is this available on current rasa ?
Please help me. I need NLU log to improve my model for the next trainning.
You need to add the option --log-file
to the command. For example:
rasa run --enable-api --endpoints endpoints.yml --log-file rasa-logs.txt
Logs will be written to the provided file.
1 Like