updates
This commit is contained in:
parent
d197c0be75
commit
8ef441616d
|
@ -810,7 +810,7 @@ def print_mutation(hyp, results, bucket=''):
|
||||||
# Print mutation results to evolve.txt (for use with train.py --evolve)
|
# Print mutation results to evolve.txt (for use with train.py --evolve)
|
||||||
a = '%10s' * len(hyp) % tuple(hyp.keys()) # hyperparam keys
|
a = '%10s' * len(hyp) % tuple(hyp.keys()) # hyperparam keys
|
||||||
b = '%10.3g' * len(hyp) % tuple(hyp.values()) # hyperparam values
|
b = '%10.3g' * len(hyp) % tuple(hyp.values()) # hyperparam values
|
||||||
c = '%10.3g' * len(results) % results # results (P, R, mAP, F1, test_loss)
|
c = '%10.4g' * len(results) % results # results (P, R, mAP, F1, test_loss)
|
||||||
print('\n%s\n%s\nEvolved fitness: %s\n' % (a, b, c))
|
print('\n%s\n%s\nEvolved fitness: %s\n' % (a, b, c))
|
||||||
|
|
||||||
if bucket:
|
if bucket:
|
||||||
|
|
Loading…
Reference in New Issue