tensorflow-yolo
tensorflow-yolo copied to clipboard
tensorflow implementation of 'YOLO : Real-Time Object Detection'(train and test)
in yolo/dataset/text_dataset.py line 10 `from Queue import Queue` should be `from queue import Queue`
Although when I explore the yolo_tiny_net ,there are some bug so aparently, I'm so appionted that the auchor didn't repair it .That's a regret.But the structure of the Net.py is...
at line 115 : boxes1 = tf.transpose(boxes1, [1, 2, 3, 0]) the boxes1 data format transform from [cx, cy, w, h] to [x1, y1, x2, y2] yet. why there is...
I want to know whether the class loss is computed by response instead of object in yolo_net.py line 266?
WARNING:tensorflow:From ./yolo/net/yolo_tiny_net.py:219: calling reduce_max (from tensorflow.python.ops.math_ops) with keep_dims is deprecated and will be removed in a future version. Instructions for updating: keep_dims is deprecated, use keepdims instead 2019-04-10 13:18:41.623793: I...
When using the following command to train ==>> python tools/train -c config/train.cfg an error occurs informing No module named 'yolo.utils.process_config'; 'yolo.utils' is not a package. Could anyone help me out?...
I have a better code about yolo https://github.com/Stinky-Tofu/Stronger-yolo
In yolo_net.py line 278-281 ,the coordinate is wrong . The yolo paper says that "Each bounding box consists of 5 predictions: x, y, w, h, and confidence. The (x,y) coordinates...
Hi I'm new to ML and tensorflow. I'm trying to use tensorflow-yolo to train model for hand recognition. No. of classes is 1 which is hand when I run train.py...