mozilla / DeepSpeech

DeepSpeech is an open source embedded (offline, on-device) speech-to-text engine which can run in real time on devices ranging from a Raspberry Pi 4 to high power GPU servers.
Mozilla Public License 2.0
25.1k stars 3.94k forks source link

Add epoch number to all log messages during training #3114

Open tilmankamp opened 4 years ago

tilmankamp commented 4 years ago

Log messages of new best validating checkpoints and plateau encounters don't carry epoch numbers. This makes it harder than necessary to assess training progress using grep.

DanBmh commented 4 years ago

I like this, always had to search it myself in the logs... But I found out today that you also can run cat your_logfile | grep -B1 Saved to show the line before the selected line too.