keras-yolo3
keras-yolo3 copied to clipboard
A Keras implementation of YOLOv3 (Tensorflow backend)
Training
Hey guys, I've run all the quick start commands and I'm now at the training section Am I to just, 1. Run python voc_annotation.py (I have no custom datasets) 2....
Using Theano backend. Image detection mode Ignoring remaining command line arguments: .\1.jpg,.\2.jpg Traceback (most recent call last): File "yolo_video.py", line 73, in detect_img(YOLO(**vars(FLAGS))) File "E:\study\pythonNameSpace\keras-yolo3-master\yolo.py", line 45, in __init__ self.sess...
Following is the link to the exact line of code. I just want to understand the theory behind it. https://github.com/qqwweee/keras-yolo3/blob/e6598d13c703029b2686bc2eb8d5c09badf42992/train.py#L182
I have created the train.txt file in the format specified in the step 1 of training headline in the format path/to/img1.jpg 50,100,150,200,0 30,50,200,120,3 Create 6 permanent cpu-threads Cannot load image...
1. Suppose there's a picture with size (1200,800) and objectA is in (x,y,w,h)=(300,300,200,100), do I have to change the ratio to (416,416) or just input (300,300,200,100)? 3. whether the output...
---> 66 y_true[l][b, j, i, k, 0:4] = true_boxes[b,t, 0:4] 67 y_true[l][b, j, i, k, 4] = 1 68 y_true[l][b, j, i, k, 5+c] = 1 IndexError: index 13 is...
Dockerfile: ``` # Use an official Ubuntu as a parent image FROM ubuntu:20.04 # Set environment variables to avoid user interaction during installation ENV DEBIAN_FRONTEND=noninteractive # Set environment variable to...