sacmehta / ESPNetv2

A light-weight, power efficient, and general purpose convolutional neural network

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there a problem here ?

monk42 opened this issue · comments

is_best = mIOU_val > best_val

The value of best_val always be 0 , which means that model_best.pth stores not the best, but the last eopch!

It’s an error from my end. While cleaning the code, I accidentally removed one line. You can add below line before the line pointed by you. I will also fix it

best_val = max(mIOU_val, best_val)

Thanks,

This issue is fixed, so closing