8

I'm trying to test out YOLO on google colab for the first time and keep running into this odd error:

1

This is the line of code that I run:

!./darknet detector test data/obj.data cfg/yolov3_custom.cfg /mydrive/yolov3/backup/yolov3_custom_last.weights /mydrive/images/I5.png -thresh 0.3
NearHuscarl
  • 66,950
  • 18
  • 261
  • 230
A.Code.1
  • 161
  • 1
  • 3
  • 10

4 Answers4

6

I also faced the same, but resolved by updating "config file". There might be some unbalanced "[" or "#" characters.

Solution 1: Update your config file as in this format https://github.com/pjreddie/darknet/blob/master/cfg/yolov3.cfg

Solution 2: For some, using -dont_show flag in detection command has worked.

eg: !./darknet detector test data/obj.data cfg/yolov3_V1_config.cfg /mydrive/yolov3_V1_config_last.weights /mydrive/yolov3/Poachers/pic2.jpg -thresh 0.3 -dont_show

snehit vaddi
  • 3,854
  • 2
  • 9
  • 13
2

-dont_show was the solution for me

Chaya
  • 76
  • 4
1

In yolov3_custom.cfg file, uncomment the two lines under # Testing

# Testing
batch=1
subdivisions=1
0

Not sure what the error is because I am getting the same. If you write the following after the line of code you will be able to see the image:

imshow('predictions.jpg')
Hisho
  • 305
  • 1
  • 3
  • 9