CCNet
CCNet copied to clipboard
Could not run the code
Hi, @speedinghzl , I try to train on Cityscapes dataset using pytorch 0.4.0, but I got an error as follows:
Traceback (most recent call last):
File "train.py", line 253, in
Could you give me some advise? Thanks
One possibility can be that you have less number of visible/available GPUs than the configured number of GPUs to use. i.e
In the run_local.sh file (in branch pytorch-1.1)
--nproc_per_node=4
specifies to use 4 GPUs for training
but if you have
GPU_IDS=0,1
only 2 GPUs are made visible
This may cause an error.