.AttributeError: ‘_MultiProcessingDataLoaderIter‘ object has no attribute ‘_shutdown‘ 问题解决

问题描述

  • Error: ‘DataLoaderIter’ object has no attribute ‘shutdown’

  • AttributeError: ‘_MultiProcessingDataLoaderIter’ object has no attribute ‘_shutdown’

主要原因就是内存满了 清理一下内存就可以了,很多没用的僵尸进程

  • 因为我现在根本没有训练程序在跑,所以就用了下面命令

sudo  ps -ef | grep ltr/run_training | grep -v grep | awk '{print $2}'| xargs kill -9
sudo  ps -ef | grep pytracking | grep -v grep | awk '{print $2}'| xargs kill -9

你可能感兴趣的:(bug,pytorch)