deeplabv3-plus-pytorch icon indicating copy to clipboard operation
deeplabv3-plus-pytorch copied to clipboard

utils_fit.py 里面print函数是不是有点问题

Open ShepherdSosimple opened this issue 4 years ago • 1 comments

倒数第二行代码: print('Total Loss: %.3f || Val Loss: %.3f ' % (loss / (epoch_step + 1), val_loss / (epoch_step_val + 1))) 前面应该是total_loss吧?如下: print('Total Loss: %.3f || Val Loss: %.3f ' % (total_loss / (epoch_step + 1), val_loss / (epoch_step_val + 1)))

ShepherdSosimple avatar Sep 04 '21 10:09 ShepherdSosimple

已修改

bubbliiiing avatar Sep 07 '21 14:09 bubbliiiing