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

How can i read the tensorboard output,where is validation line chart?

in ssd_common.py, function tf_ssd_bboxes_encode_layer----body: mask = tf.logical_and(mask, feat_scores > -0.5) I don't understand why use -0.5? can anyone answer my question?thanks!

According to the code: ``` jaccard = jaccard_with_anchors(bbox) # Mask: check threshold + scores + no annotations + num_classes. mask = tf.greater(jaccard, feat_scores) # mask = tf.logical_and(mask, tf.greater(jaccard, matching_threshold)) mask...

I just use ssd-300-vgg model to eval the voc2017 test data, but get very low map, i do not kown why? can you help me?

Hello, first of all, thank you very much for your great work, I learned a lot from it. And now I encountered a problem. I changed the feat_shapes in net...

Discuss the loss in this issue because i find my model performs not good voc2012 int step 20000 loss is around 5

Hello, I'm running the SSD repo,but it‘s something wrong with the output: “ **INFO:tensorflow:Restoring parameters from ./checkpoints/ssd_300_vgg.ckpt 2019-04-23 11:40:16.227131: W tensorflow/core/framework/op_kernel.cc:1318] OP_REQUIRES failed at save_restore_v2_ops.cc:184 : Out of range: Read...

I am trying to train a single class detection model based on **SSD-512 VGG**. Command: ``` python3 train_ssd_network.py \ --train_dir=./logs/ \ --dataset_dir=./data/tfrecords \ --dataset_name=pascalvoc_2007 \ --dataset_split_name=train \ --model_name=ssd_512_vgg \ --num_classes=1...

Can you please write a good readme for implemetation of SSD for custom objects and classes. or Someone Please help me train on my own images...I have all images and...