error: STACK_GLOBAL requires str 解决

目录

torch进行加载报错

numpy进行加载保存


yolov5 训练时报错:error: STACK_GLOBAL requires str

torch进行加载报错

错误代码:

cache, exists = torch.load(cache_path), True  # load

原因:旧版本保存缓存用的torch,匹配的保存代码应该是:

torch.save(x,path)  # save cache for next time

注意:cache_path可以是pathlib:

from pathlib import Path
p = Pat

你可能感兴趣的:(python宝典,深度学习,人工智能,pytorch)