andy-yun / pytorch-0.4-yolov3

Yet Another Implimentation of Pytroch 0.4.1 and YoloV3 on python3
MIT License
279 stars 72 forks source link

find loss each epochs #76

Closed richard0326 closed 5 years ago

richard0326 commented 5 years ago

I want to know loss for each epochs, so I have tried this way.

I saved 'total losses' for each steps and get mean value of it.

I decided as loss for each epochs. But I'm not sure...

I there any other way to find the loss for each epochs??

andy-yun commented 5 years ago

@richard0326 you can use tensorboard in pytorch or other tools. You should google it.

richard0326 commented 5 years ago

thank you! I will try it