【DeepLearning笔记】InternalError: Dst tensor is not initialized.

今天在运行模型时遇见了tensorflow.python.framework.errors_impl.InternalError: Dst tensor is not initialized。
后来发现Dst tensor is not initialized是指运算内存耗尽,与OOM(OutOfMemoryError)相同,都是现存溢出。
解决办法:
(1)查询服务器显存使用情况

nvidia-smi

(2)若有进程争抢显存,将其杀掉

kill -9 ** 

(3)若显存无占用
只能改使用CPU运行程序:)

你可能感兴趣的:(DeepLearn,debug,python,tensorflow)