import utils.autoanchor as autoAC # 对数据集重新计算 anchors new_anchors = autoAC.kmean_anchors('./data/mydata.yaml', 9, 640, 5.0, 1000, True) print(new_anchors) 1 2 3 4 5 输出的 9 组新的锚定框即是根据自己的数据集来计算的,可以按照顺序替换到你所使用的配置文件*.yaml中(比如 ...