0

When you run kur data mnist.yml, though it is a simple batch of data to be displayed, it is very long and you may be unable to see the log messages at the very beginning.

One way to see the message at the beginning is to save the log message into a txt file.

Could I add some code onto kur data mnist.yml to save all the log message?

Daniel
  • 1,428
  • 3
  • 16
  • 35

1 Answers1

0

One way to solve this issue:

kur data mnist.yml 2>&1 | tee my.txt

As a result, the log message is saved into my.txt on the current directory.

Daniel
  • 1,428
  • 3
  • 16
  • 35