MzeroMiko / VMamba

VMamba: Visual State Space Models,code is based on mamba
MIT License
2.22k stars 145 forks source link

What is the reason for the computer getting stuck and not moving during target detection training? #285

Open Seeingsunshion opened 3 months ago

Seeingsunshion commented 3 months ago

Hello, author! During my target detection training using the DETECTION part of your project framework, every time after 1 or 2 epochs of training, my computer gets stuck and won't move, and I can't do anything except shutting down the computer. In the target detection part, I have changed the dataset, the training sample of the dataset is 18000 images. training instruction: bash ./tools/dist_train.sh configs/vssm/mask_rcnn_vssm_fpn_coco_base.py 1 Below is my detailed configuration and CPU and memory usage detected during training: 截图 2024-08-15 11-12-06 截图 2024-08-15 11-12-23 截图 2024-08-15 11-13-09 截图 2024-08-15 11-27-14 微信图片_20240815095742 微信图片_20240815095828

MzeroMiko commented 3 months ago

There are many factors that may force the Desktop Environment of linux dead, one of the common reason is the overflow of memory. Next time, you can try monitoring the program in the text mode of your desktop with htop, and watch if its the huge host memory usage that leads to this problem.

Good luck.