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.
- Host: GitHub
- URL: https://github.com/sovit-123/pytorch-ssd300
- Owner: sovit-123
- Created: 2022-08-23T02:47:51.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-08T02:34:35.000Z (about 3 years ago)
- Last Synced: 2025-06-04T05:05:28.780Z (4 months ago)
- Topics: deep-learning, neural-networks, object-detection, objectdetection, pytorch, ssd, ssd300
- Language: Python
- Homepage:
- Size: 1.01 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)**.