github: skipping check (offline), for updates see https://github.com/ultralytics/yolov5 Traceback (most recent call last): File "train.py", line 630, in <module> main(opt) File "train.py", line 499, in main check_file(opt.data), check_yaml(opt.cfg), check_yaml(opt.hyp), str(opt.weights), str(opt.project) # checks File "/home/zy/yolov5/utils/general.py", line 428, in check_yaml return check_file(file, suffix) File "/home/zy/yolov5/utils/general.py", line 454, in check_file assert len(files), f'File not found: {file}' # assert file was found AssertionError: File not found: data/hyps/hyp.scratch-low.yaml
时间: 2024-04-27 10:21:33 浏览: 257
这个错误提示和之前的一样,是说在 train.py 文件的第630行出现了错误,具体是在 main 函数中的某个地方出现了问题。可能是由于缺少某些文件导致的,比如 data/hyps/hyp.scratch-low.yaml 这个文件没有找到。建议检查一下这个文件是否存在,或者路径是否正确。另外,由于你之前的提示中提到了 Github 离线,也有可能是因为无法连接到 Github 服务器导致无法下载所需文件。
阅读全文