当前位置:   article > 正文

CUDA Error: out of memory darknet: ./src/cuda.c:36: check_error: Assertion `0' failed. Aborted

darknet: ./src/cuda.c:36: check_error: assertion `0' failed.
  1. wu@wu-X555LF:~/darknet$ ./darknet detector train cfg/voc.data cfg/yolov3-voc.cfg darknet53.conv.74
  2. yolov3-voc
  3. layer filters size input output
  4. 0 conv 32 3 x 3 / 1 416 x 416 x 3 -> 416 x 416 x 32 0.299 BFLOPs
  5. 1 conv 64 3 x 3 / 2 416 x 416 x 32 -> 208 x 208 x 64 1.595 BFLOPs
  6. 2 conv 32 1 x 1 / 1 208 x 208 x 64 -> 208 x 208 x 32 0.177 BFLOPs
  7. 3 conv 64 3 x 3 / 1 208 x 208 x 32 -> 208 x 208 x 64 1.595 BFLOPs
  8. 4 res 1 208 x 208 x 64 -> 208 x 208 x 64
  9. CUDA Error: out of memory
  10. darknet: ./src/cuda.c:36: check_error: Assertion `0' failed.
  11. Aborted (core dumped)

CUDA Error: out of memory
darknet: ./src/cuda.c:36: check_error: Assertion `0' failed.
Aborted (core dumped)

原因1:你的GPU被占用了,电脑在跑其他的程序

解决方法:等现在的程序跑完再开始训练

原因2:需要修改所使用的模型cfg文件中的subdivision的参数。

解决方法:由subdivisions=8改成subdivisions=16,64等。

cfg 文件夹下的 yolov3-voc.cfg文件部分内容,把subdivisions=8改成subdivisions==64,程序即可正常:

  1. [net]
  2. # Testing
  3. # batch=1
  4. # subdivisions=1
  5. # Training
  6. batch=64
  7. subdivisions=8
  8. width=416
  9. height=416
  10. channels=3
  11. momentum=0.9
  12. decay=0.0005
  13. angle=0
  14. saturation = 1.5
  15. exposure = 1.5
  16. hue=.1
  17. learning_rate=0.001
  18. burn_in=1000
  19. max_batches = 50200
  20. policy=steps
  21. steps=40000,45000
  22. scales=.1,.1

xiugaihou

  1. wu@wu-X555LF:~/darknet$ ./darknet detector train cfg/voc.data cfg/yolov3-voc.cfg darknet53.conv.74
  2. yolov3-voc
  3. layer filters size input output
  4. 0 conv 32 3 x 3 / 1 416 x 416 x 3 -> 416 x 416 x 32 0.299 BFLOPs
  5. 1 conv 64 3 x 3 / 2 416 x 416 x 32 -> 208 x 208 x 64 1.595 BFLOPs
  6. 2 conv 32 1 x 1 / 1 208 x 208 x 64 -> 208 x 208 x 32 0.177 BFLOPs
  7. 3 conv 64 3 x 3 / 1 208 x 208 x 32 -> 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/88869
推荐阅读
相关标签
  

闽ICP备14008679号