Open Masterzhuior opened 2 years ago
@Masterzhuior It is possible that other programs occupy the GPU memory.
@Masterzhuior It is possible that other programs occupy the GPU memory.
No, I'm sure no other program is occupying the GPU memory.
The program fails during inference time. It might because the images are too big, you may try to resize them to a smaller size.
The program fails during inference time. It might because the images are too big, you may try to resize them to a smaller size.
img_size = 550
I tried to modify this parameter(550 to 400) in the model , but it still hasn't been solved.
@ZwwWayne hi, how to resize image?
Modify the Resize module in the pipeline and make the image scale smaller.
I am using yolact for training, when an epoch ends, it will be OOM in the Val phase.
My environment is:
The GPU is 3090 (24G Vram)
I just modified the
num_classes
in fileyolact_r50_1x8_coco.py
then I started training
python tools/train.py configs/yolact/yolact_r50_1x8_coco.py
by using my dataset.My dataset:
But when an epoch ends, it will be out of memory in the Val phase.
After I exchange the test set and verification set, the error report disappears
Is there a way I can use to solve this issue? Thanks