You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@DCC-lzhy Yes, I think your analysis makes sense. But this project may still use mIoU, so this may be less noticed. And it should be called "precision" here.
Efficient-Segmentation-Networks/utils/metric/metric.py
Lines 43 to 56 in 0f0c32e
it's reverse.
` # 理解混淆矩阵生成的代码的关键,行为真实值,列为预测值
# Pii为预测正确的数量,Pij=FN, Pji=FP
# 每一列之和表示被预测为该类别的样本数量 = TP+FP, precision = TP/(TP+FP), 所有被预测为正类中真正正类的比例
# 每一行之和表示该类别的真实样本数量 = TP+FN, recall = TP/TP+FN , 所有正类中,被找出的正类的比例
So, change
Efficient-Segmentation-Networks/utils/metric/metric.py
Line 47 in 0f0c32e
Efficient-Segmentation-Networks/utils/metric/metric.py
Line 54 in 0f0c32e
The text was updated successfully, but these errors were encountered: