updates
This commit is contained in:
parent
a2c9cb9d2c
commit
a1d5f62334
|
@ -492,6 +492,13 @@ def coco_only_people(path='../coco/labels/val2014/'):
|
||||||
print(labels.shape[0], file)
|
print(labels.shape[0], file)
|
||||||
|
|
||||||
|
|
||||||
|
def select_best_evolve(path='../../Downloads/evolve*.txt'): # from utils.utils import *; select_best_evolve()
|
||||||
|
# Find best evolved mutation
|
||||||
|
for file in sorted(glob.glob(path)):
|
||||||
|
x = np.loadtxt(file, dtype=np.float32)
|
||||||
|
print(file, x[x[:, 2].argmax()])
|
||||||
|
|
||||||
|
|
||||||
def kmeans_targets(path='./data/coco_64img.txt'): # from utils.utils import *; kmeans_targets()
|
def kmeans_targets(path='./data/coco_64img.txt'): # from utils.utils import *; kmeans_targets()
|
||||||
with open(path, 'r') as f:
|
with open(path, 'r') as f:
|
||||||
img_files = f.read().splitlines()
|
img_files = f.read().splitlines()
|
||||||
|
|
Loading…
Reference in New Issue