pytorch-deeplab-xception
pytorch-deeplab-xception copied to clipboard
DeepLab v3+ model in PyTorch. Support different backbones.
Results
111
pytorch-deeplab-xception issues
Sort by
recently updated
recently updated
newest added
def Pixel_Accuracy_Class(self): Acc = np.diag(self.confusion_matrix) / self.confusion_matrix.sum(axis=1) Acc = np.nanmean(Acc) return Acc this right Acc should be np.diag(self.confusion_matrix) / self.confusion_matrix.sum(axis=0)?