Skip to content

plotting training loss

Cameron Smith edited this page Mar 31, 2025 · 1 revision

Given the output from the current code, the following awk script will extract the training loss

awk '/Epoch/ {print $3}' xptClassifier.log | awk -F= '{print $2}' > trainingLoss.log
Clone this wiki locally