Training logs for RASA NLU

Hi

I am using RASA NLU using below command on terminal:

python -m rasa train --data data.json -c config.yml

I can see the training logs on the terminal. but I want to store it in some file. How can I do that? Any place where these logs might be already getting saved?

Samrudha

Just redirect the output to a file.

For me on linux I use tee to have the output on the command line as well as in the file

rasa train
–data data/training
–config config.yml
–domain domain.yml
–out models
-vv
2>&1 | tee logs/training.log

hi, how about output on Windows? thanks

For windows, try: rasa train –data data/training –config config.yml –domain domain.yml –out models -vv logs/training.log 2>&1

Guys!

Has anyone been able to save the training logs? I tried above options and it didn’t worked in Windows 10, pycharm