其他分享
首页 > 其他分享> > YOLO 训练 coco

YOLO 训练 coco

作者:互联网

1、错误:

1)OSError: [WinError 1455] 页面文件太小,无法完成操作。 Error load......

(1)错误位置:LoadImagesAndLabels中:

        try:
            cache, exists = np.load(cache_path, allow_pickle=True).item(), True  # load dict
            assert cache['version'] == 0.4 and cache['hash'] == get_hash(self.label_files + self.img_files)
        except:
            cache, exists = self.cache_labels(cache_path, prefix), False  # cache

(2)原因:Windows的虚拟内存不够,链接,其中包括了多种解决方法。

(3)虚拟内存修改方法

(4)问题:windows不支持python的多进程,不过依然可以设置--workers=8,

标签:load,YOLO,exists,训练,self,cache,coco,True,虚拟内存
来源: https://www.cnblogs.com/wllwqdeai/p/16376862.html