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

An end-to-end implementation of the MobileNetv2+SSD architecture in Keras from sratch for learning purposes. The dataset is prepared using MNIST images: MNIST images are embedded into a box and the mo...

Results 4 MobileNetv2-SSD issues
Sort by recently updated
recently updated
newest added

Hi, I am getting an error while running the notebook you've uploaded. I've attached the image, kindly look into it. It would be of great help if you could help...

Hi! On this line of code `hw[ pos : pos + numBox , :] = np.multiply(gridSize*scale, np.squeeze(np.dstack([asp1,asp2]),axis=0))[:numBox,:]`, I think `gridSize*scale` need to be replaced with `IMG_SIZE/gridSize*scale`. The `gridSize` is the...

for gridSize, numBox, scale in zip(layerWidths,numBoxes,scales): step_size = IMG_SIZE*1.0/gridSize for i in range(gridSize): for j in range(gridSize): pos = idx + (i*gridSize+j) * numBox # centre is the same for...

Hello, I would like to know if you have implemented an implementation for quantised training of the specific model: `ssd mobilenet v2` in your **Object Detection API** (https://github.com/tensorflow/models/tree/master/research/object_detection) like the...