AttributeError: 'NoneType' object has no attribute '_free_weak_ref'
yolov5训练时报错:
AttributeError: 'NoneType' object has no attribute '_free_weak_ref'
问题解决:
降低pytorch版本。
之前使用的是1.11.3,降低成1.10.2
卸载之前的pytorch
conda uninstall pytorch
conda uninstall libtorch
安装低版本的pytorch
conda install pytorch==1.10.0 torchvision==0.11.0 cudatoolkit=10.2 -c pytorch