Ssds.pytorch
Repository for Single Shot MultiBox Detector and its variants, implemented with pytorch, python3.
Install / Use
/learn @ShuangXieIrene/Ssds.pytorchREADME
ssds.pytorch
Repository for Single Shot MultiBox Detector and its variants, implemented with pytorch, python3. This repo is easy to setup and has plenty of visualization methods. We hope this repo can help people have a better understanding for ssd-like model and help people train and deploy the ssds model easily.
Currently, it contains these features:
- Multiple SSD Variants: ssd, fpn, bifpn, yolo and etc.
- Multiple Base Network: resnet, regnet, mobilenet and etc.
- Visualize the features of the ssd-like models to help the user understand the model design and performance.
- Fast Training and Inference: Utilize Nvidia Apex and Dali to fast training and support the user convert the model to ONNX or TensorRT for deployment.
This repo is depended on the work of ODTK, Detectron and Tensorflow Object Detection API. Thanks for their works.
Notice The pretrain model for the current version does not finished yet, please check the previous version for enrich pretrain models.
Table of Contents
- <a href='#installation'>Installation</a>
- <a href='#usage'>Usage</a>
- <a href='#performance'>Performance and Model Zoo</a>
- <a href='#visualization'>Visualization</a>
- Documentation
Installation
requirements
- python>=3.7
- CUDA>=10.0
- pytorch>=1.4
basic installation:
conda install pytorch torchvision cudatoolkit=10.2 -c pytorch
git clone https://github.com/ShuangXieIrene/ssds.pytorch.git
cd ssds.pytorch
python setup.py clean -a install
extra python libs for parallel training
Currently, nvidia DALI and apex is not include in the requirements.txt and need to install manually.
pip install --extra-index-url https://developer.download.nvidia.com/compute/redist/cuda/10.0 nvidia-dali
git clone https://github.com/NVIDIA/apex
cd apex
pip install -v --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" ./
Docker
git clone https://github.com/ShuangXieIrene/ssds.pytorch.git
docker build -t ssds:local ./ssds.pytorch/
docker run --gpus all -it --rm -v /data:/data ssds:local
Usage
0. Check the config file by Visualization
Defined the network in a config file and tweak the config file based on the visualized anchor boxes
python -m ssds.utils.visualize -cfg experiments/cfgs/tests/test.yml
1. Training
# basic training
python -m ssds.utils.train -cfg experiments/cfgs/tests/test.yml
# parallel training
python -m torch.distributed.launch --nproc_per_node={num_gpus} -m ssds.utils.train_ddp -cfg experiments/cfgs/tests/test.yml
2. Evaluation
python -m ssds.utils.train -cfg experiments/cfgs/tests/test.yml -e
3. Export to ONNX or TRT model
python -m ssds.utils.export -cfg experiments/cfgs/tests/test.yml -c best_mAP.pth -h
Performance
Visualization
Related Skills
node-connect
334.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.3kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
334.9kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.3kCommit, push, and open a PR
