Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucasjinreal/ssds_pytorch
Multiple basenet MobileNet v1,v2, ResNet combined with SSD detection method and it's variants such as RFB, FSSD etc.
https://github.com/lucasjinreal/ssds_pytorch
mobilenet mobilenetv2 pytorch ssd
Last synced: 11 days ago
JSON representation
Multiple basenet MobileNet v1,v2, ResNet combined with SSD detection method and it's variants such as RFB, FSSD etc.
- Host: GitHub
- URL: https://github.com/lucasjinreal/ssds_pytorch
- Owner: lucasjinreal
- Created: 2018-11-04T01:48:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-06T14:44:58.000Z (about 6 years ago)
- Last Synced: 2023-04-21T10:41:12.318Z (over 1 year ago)
- Topics: mobilenet, mobilenetv2, pytorch, ssd
- Language: Python
- Size: 1.43 MB
- Stars: 80
- Watchers: 3
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SSDs
This repo contains many object detection methods that aims at **single shot and real time**, so the **speed** is the only thing we talk about. Currently we have some base networks that support object detection task such as MobileNet V2, ResNet, VGG etc. And some SSD variants such as FSSD, RFBNet, Retina, and even Yolo are contained.
If you have any faster object detection methods welcome to discuss with me to merge it into our master branches.
# Note
Work are just being progressing. Will update some result and pretrained model after trained on some datasets. And of course, some out-of-box inference demo.
[updates]:
2018.11.06: As you know, after trained `fssd_mobilenetv2` the inference codes actually get none result, still debugging how this logic error comes out.
# Train
All settings about base net and ssd variants are under `./experiments/cfgs/*.yml`, just edit it to your enviroment and kick it off.
```
python3 train.py --cfg=./experiments/cfgs/rfb_lite_mobilenetv2_train_vocyml
```You can try train on coco first then using your custom dataset. If you have your coco data inside /path/to/coco, the just link it to `./data/` and you can find coco inside `./data`. Same as VOC data.
![](https://s1.ax1x.com/2018/11/06/iTKMkV.png)
That is what it trains like. After that I shall upload some trained model.
## Predict
To predict on a simple image, you can find some useful codes in `demo_simpler.py`. But it still under testing. I will upload some images when I get it predicted success.
## Copyright
This version contained by myself and portable to pytorch newest version. As well as some pretrained model and speed test benchmark. If you have any question or want ask *Computer Vision* questions you can contact me via **wechat**: `jintianiloveu`.
Some useful links and other repo:
1. https://github.com/ShuangXieIrene/ssds.pytorch