removed xy/wh loss reporting
This commit is contained in:
@@ -555,6 +555,7 @@ def get_yolo_layers(model):
|
||||
|
||||
def print_model_biases(model):
|
||||
# prints the bias neurons preceding each yolo layer
|
||||
print('\nModel Output-Bias Summary::')
|
||||
for l in model.yolo_layers: # print pretrained biases
|
||||
b = model.module_list[l - 1][0].bias.view(3, -1) # bias 3x85
|
||||
print('regression: %.2f+/-%.2f, ' % (b[:, :4].mean(), b[:, :4].std()),
|
||||
|
||||
Reference in New Issue
Block a user