Every epoch accuracy

When I use this web(jetson-inference/pytorch-collect.md at master · dusty-nv/jetson-inference · GitHub) to train network, is every epoch accuracy on this picture’s blue line?

Hi Andy, yes that is correct. At the end of training each epoch, a validation/test pass is run, and that is the accuracy print out from that test.

Acc@1 means the Top-1 accuracy (i.e. how many classifications were correct) and Acc@5 means the Top-5 accuracy (i.e. how many classifications were correct from the models top 5 outputs). Since your model has <= 5 classes, the Top-5 accuracy will always be 100%.