Googlenet training on jetson Nano

When I used this web(jetson-inference/pytorch-collect.md at master · dusty-nv/jetson-inference · GitHub) to train googlenet, how can I record top1 and top5 accuracy like below this top picture(jetson-inference/pytorch-plants.md at master · dusty-nv/jetson-inference · GitHub)?

How can I let camera’s detection rate be high like below this buttom picture(jetson-inference/pytorch-plants.md at master · dusty-nv/jetson-inference · GitHub)? Do I set my database?

pytorch-plants-poison-ivy

I made those charts “manually” by saving the terminal log from train.py, and then opening it in Excel as CSV and skipping the lines that did not have the epoch’s top1/top5 (since the number of iterations per epoch is constant). It wasn’t made automatically by matplotlib, ect.

When you train your model, what is the top1/top5 accuracy it ends up with? Are you using a different dataset, or replicating the PlantCLEF dataset.

Also note that ResNet is more accurate than GoogleNet, it is recommended to use ResNet for training new models.