Closed renxuezi closed 5 years ago
How to remove all multi-thread code and use a single core in base_dataset.py? I have changed "annotations.extend(p[0]);pan_all.extend(p[1])" into "pan_all.extend(p)", now it got stuck when the results were output,how should I modify code?
You can set cpu_num variable in base_dataset.py to 1 to avoid memory issue.
cpu_num
base_dataset.py
Thank you for your reply,my problem solved after I've changed to a better GPU.
How to remove all multi-thread code and use a single core in base_dataset.py? I have changed "annotations.extend(p[0]);pan_all.extend(p[1])" into "pan_all.extend(p)", now it got stuck when the results were output,how should I modify code?