I run yolo v3 on tx2 with command
./darknet detector test cfg/coco.data cfg/yolov3.cfg yolov3.weights data/person.jpg
while loading network, there is "Killed" in the console, I dont know what's the problem
It works after decreasing batch size and subdivision.
It works after decreasing batch size and subdivision.
I have the same issue. Could you please give some example or details how to increase batch size and subdevision ?
you can go to change the file yolov3/cfg/yolov3.cfg file. Use testing, comment training
# Testing
batch=1
subdivisions=1
# Training
#batch=64
#subdivisions=16
Most helpful comment
you can go to change the file yolov3/cfg/yolov3.cfg file. Use testing, comment training