ssd_keras icon indicating copy to clipboard operation
ssd_keras copied to clipboard

A Keras port of Single Shot MultiBox Detector

Results 25 ssd_keras issues
Sort by recently updated
recently updated
newest added

Tensorflow V2 (latest) Keras (latest) ssd300_training.ipynb I have managed to convert most of the V1 code to V2 and successfully run it. I have made changes to all the python...

How do I manipulate the data generator in the training SSD300 script to train only on background and person class? When I change n_classes = 1 and include_classes=[0,15] I am...

Tensorflow ==1.15 Keras = 2.2.4 Running on Google collab. I don't have GPU. I'm trying to run the notebook [SSD300_training](https://github.com/pierluigiferrari/ssd_keras/blob/master/ssd300_training.ipynbl) but I'm getting an error of invalid loss. The error...

Hi! I have a problem with the SSD300 implementation. I'm using a dataset of 1000 images and I'm using 750 of them to train and 250 to be the validation...

Hi everyone, I'm trying to load the SSD300 for inferencing but I'm facing this ValueError: --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in 25 iou_threshold=0.45, 26 top_k=200, ---> 27 nms_max_output_size=400)...

How to calculate accuracy during training? I tried the below in the code in ssd7_training.ipynb file and didn't work. Any help would be awesome! `model.compile(optimizer=adam, loss=ssd_loss.compute_loss, metrics=['accuracy'])` * Operating System...

**Thank you for great work!!! I am trying to train my own data by SSD512 that modified by SSD300.py original file. Here is my code** ----------------------------------------------------------------------------- `# -*- coding: utf-8...