SSD-Tensorflow icon indicating copy to clipboard operation
SSD-Tensorflow copied to clipboard

Single Shot MultiBox Detector in TensorFlow

Results 100 SSD-Tensorflow issues
Sort by recently updated
recently updated
newest added

Hi ,@balancap Thanks for you hard work to implement SSD on TensorFlow! And now I want to train my own model on my own Dataset: 1. I create a Dataset...

Hello? I wish to convert the ckpt file to pb file but the script is asking the name of the output node of the ckpt file. The ckpt file I'm...

In def ssd_losses_old, nvalues = tf.where(nmask,predictions[:, :, :, :, 0],1. - fnmask), so nvalues = 1 if this anchor is positive and navalues = predictions[:,:,:,:,0], and is this predictions indicate...

when I run tf_convert_data,the problem will arise from datasets import pasaLvoc_to tf records ImportError: cannot import name 'pascalvoc to tfrecords

具体的参数等看我上一个问题 参数的修改,数据集的修改,都改了 收敛也正常,不知道那边出错了 there is more detail in my last question. i have chaged all the things,and train loss is normal. But i can't see angthing show on my pics...

I have train the pretrained_model on my own datasets by using this command DATASET_DIR=./tfrecords TRAIN_DIR=./log/ CHECKPOINT_PATH=./checkpoints/vgg_16.ckpt python train_ssd_network.py \ --train_dir=${TRAIN_DIR} \ --dataset_dir=${DATASET_DIR} \ --dataset_name=pascalvoc_2007 \ --dataset_split_name=train \ --model_name=ssd_300_vgg \ --checkpoint_path=${CHECKPOINT_PATH}...

when I run python3 train_ssd_network.py --train_dir=${TRAIN_DIR} --dataset_dir=${DATASET_DIR} --dataset_name=pascalvoc_2012 --dataset_split_name=train --model_name=ssd_300_vgg --checkpoint_path=${CHECKPOINT_PATH} --save_summaries_secs=60 --save_interval_secs=600 --weight_decay=0.0005 --optimizer=adam --learning_rate=0.001 --batch_size=32 I had this error: ValueError: No data files found in ./VOC2007/test/voc_2012_train_*.tfrecord So can...

I think in ssd_vgg_preprocessing.py, the function preprocess_for_train is making dataset enhancement or making more training data,do we need make the same change when change the image size ,then change the...

WARNING:tensorflow:From /usr/local/lib/python3.5/dist-packages/tensorflow/python/training/input.py:187: QueueRunner.__init__ (from tensorflow.python.training.queue_runner_impl) is deprecated and will be removed in a future version. Instructions for updating: To construct input pipelines, use the `tf.data` module. WARNING:tensorflow:From /usr/local/lib/python3.5/dist-packages/tensorflow/python/training/input.py:187: add_queue_runner (from...