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
{{ message }}
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.
I notice that the results for miou does not match with miou that I manually compute.
here is an example, lets say pres and labels are two lists including the predictions and gt data
I can compute the confusion matrix via chainercv.evaluations.calc_semantic_segmentation_confusion I also can compute the miou via chainercv.evaluations.eval_semantic_segmentation(preds, labels)
the miou based on confusion matrix can be computed as np.nanmean(np.diag(confusion) / (confusion.sum(axis=1) + confusion.sum(axis=0) - np.diag(confusion))) and these results dont match with np.nanmean(chainercv.evaluations.eval_semantic_segmentation(preds, labels)['iou'])
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I notice that the results for miou does not match with miou that I manually compute.
here is an example, lets say pres and labels are two lists including the predictions and gt data
I can compute the confusion matrix via
chainercv.evaluations.calc_semantic_segmentation_confusion
I also can compute the miou viachainercv.evaluations.eval_semantic_segmentation(preds, labels)
the miou based on confusion matrix can be computed as
np.nanmean(np.diag(confusion) / (confusion.sum(axis=1) + confusion.sum(axis=0) - np.diag(confusion)))
and these results dont match withnp.nanmean(chainercv.evaluations.eval_semantic_segmentation(preds, labels)['iou'])
The text was updated successfully, but these errors were encountered: