tensorflow-yolo
tensorflow-yolo copied to clipboard
tensorflow implementation of 'YOLO : Real-Time Object Detection'(train and test)
When I change the yolo_tiny_net into yolo_net, and run the training without pretrain model, it ``` assert not np.isnan(loss_value), 'Model diverged with loss = NaN' AssertionError: Model diverged with loss...
Hey, I noticed that you replaced "f.nn.l2_loss(no_I * (p_C - C)) * self.noobject_scale" with "tf.nn.l2_loss(no_I * (p_C)) * self.noobject_scale". But as I know, the paper adopted the former one. Why...
Traceback (most recent call last): File "demo.py", line 77, in saver.restore(sess, 'models/pretrain/yolo_tiny.ckpt') File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/training/saver.py", line 1457, in restore {self.saver_def.filename_tensor_name: save_path}) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line 778, in run run_metadata_ptr) File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/client/session.py", line...
when I tried the training and demo,the following error happened! NotFoundError (see above for traceback): Tensor name "conv1/biases" not found in checkpoint files models/pretrain/yolo_tiny.ckpt
I just want to try the demo, but I got this. Can anyone help me ? 2018-02-22 11:17:41.099700: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:898] successful NUMA node read from SysFS had negative value (-1),...
 ``` import sys sys.path.append('./') import time from yolo.net.yolo_tiny_net import YoloTinyNet import tensorflow as tf import cv2 import numpy as np classes_name = ["aeroplane", "bicycle", "bird", "boat", "bottle", "bus", "car",...
Hi there, sorry about that to post this here, i was trying to write yolo in torch but struggled the backward function for so many days, but the gradients are...
Hi, I rewrite this project - upgrade tensorflow version to tensorflow 1.5 and higher - upgrade it to python3.5 Can I add this project to microsoft sample-for-ai? [https://github.com/LeoCHANGcn/samples-for-ai](https://github.com/LeoCHANGcn/samples-for-ai) Thanks!
Hey, I found the "weight_decay" is initialized in yolo_net.py, but where does it be used?
Why you set the first fully connected layer's input dim 49 * 1024?