dcea15d97b9c63f38dcc0b15d1ced96338392016,robosat/metrics.py,Metrics,get_fg_iou,#Metrics#,51
Before Change
Returns:
The foreground Intersection over Union score for all observations seen so far.
return self.tp / (self.tp + self.fn + self.fp)
def get_mcc(self):
Retrieves the Matthew"s Coefficient Correlation score.
After Change
The foreground Intersection over Union score for all observations seen so far.
try:
iou = self.tp / (self.tp + self.fn + self.fp)
except ZeroDivisionError:
iou = float("Inf")
return iou
def get_mcc(self):
Retrieves the Matthew"s Coefficient Correlation score.
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 8
Instances Project Name: mapbox/robosat
Commit Name: dcea15d97b9c63f38dcc0b15d1ced96338392016
Time: 2018-10-09
Author: o@courtin.co
File Name: robosat/metrics.py
Class Name: Metrics
Method Name: get_fg_iou
Project Name: mapbox/robosat
Commit Name: e3310bed0efc1bf3eba564a20ed0971876f38fd1
Time: 2019-05-27
Author: daniel@trvx.org
File Name: robosat/metrics.py
Class Name: Metrics
Method Name: get_miou
Project Name: mapbox/robosat
Commit Name: dcea15d97b9c63f38dcc0b15d1ced96338392016
Time: 2018-10-09
Author: o@courtin.co
File Name: robosat/metrics.py
Class Name: Metrics
Method Name: get_mcc