An open API service indexing awesome lists of open source software.

https://github.com/sovit-123/pytorch-ssd300

A simple PyTorch implementation of the SSD300 network.
https://github.com/sovit-123/pytorch-ssd300

deep-learning neural-networks object-detection objectdetection pytorch ssd ssd300

Last synced: 4 months ago
JSON representation

A simple PyTorch implementation of the SSD300 network.

Awesome Lists containing this project

README

          

# README

Simple Single Shot Multibox Detection (SSD object detection model) implementation with VGG16 backbone trained on the Pascal VOC 2012 and 2007 dataset. Eventually, this will be extended to inlcude (to be a separate repository/repositories):

* More backbones (larger/smaller/more optimized).
* Better handling of anchors.
* Other changes as and when needed...
* ***Links to the repository/repositories will be provided here:***
* ...

## Library Versions

* **Recommended PyTorch version: 1.12.0**. This may become the minimum version required when IMAGENET1KV2 weights get released for VGG16.
*

## Updates

**Find upcoming updated/features [here](https://github.com/sovit-123/pytorch-ssd300/blob/main/docs/updates.md).**

### Aug 24, 2022

* Added the original SSD300 model with VGG16 backbone.

## References

* [Object Detection Explained: Single Shot MultiBox Detector](https://medium.com/mlearning-ai/object-detection-explained-single-shot-multibox-detector-c45e6a7af40) => Post
* [Single-Shot-Detector](https://github.com/HaiNguyen2903/Single-Shot-Detector) => GitHub

## Acknowledgements

This work would never have been possible if not for the previous efforts by the following people/reposotories/codebase:

* [sgrvinod](https://github.com/sgrvinod)/**[a-PyTorch-Tutorial-to-Object-Detection](https://github.com/sgrvinod/a-PyTorch-Tutorial-to-Object-Detection)**.