I am aware that if I add -gpu option to the training code I can train with multiple gpus, but what if I wanted to specifically choose the second one. Where in the darknet I can change that?
Just use such commands to use only second GPU:
darknet.exe detector train data/voc.data cfg/yolov3-voc.cfg /backup/yolov3-voc_1000.weights -gpus 1
Or such if you want to use GUP 0 and 3:
darknet.exe detector train data/voc.data cfg/yolov3-voc.cfg /backup/yolov3-voc_1000.weights -gpus 0,3
thank you @AlexeyAB
I should've thought that before.
Also, could you please point the source code where I can see those options and others?
@git-sohib see workflow here , and modify according to your work.