updates
This commit is contained in:
parent
f18f288990
commit
bec94be01a
|
@ -254,8 +254,11 @@ class Darknet(nn.Module):
|
||||||
output.append(x)
|
output.append(x)
|
||||||
layer_outputs.append(x)
|
layer_outputs.append(x)
|
||||||
|
|
||||||
if is_training and requestPrecision:
|
|
||||||
self.losses['nT'] /= 3
|
self.losses['nT'] /= 3
|
||||||
|
self.losses['TP'] = 0
|
||||||
|
self.losses['FP'] = 0
|
||||||
|
self.losses['FN'] = 0
|
||||||
|
if is_training and requestPrecision:
|
||||||
self.losses['TC'] /= 3 # target category
|
self.losses['TC'] /= 3 # target category
|
||||||
metrics = torch.zeros(3, len(self.losses['FPe'])) # TP, FP, FN
|
metrics = torch.zeros(3, len(self.losses['FPe'])) # TP, FP, FN
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue