SeetaDet
SeetaDet is a platform implementing popular object detection algorithms.
This platform works with SeetaDragon, and uses the PyTorch style.
Installation
Install from PyPI:
pip install seeta-detOr, clone this repository to local disk and install:
cd seetadet && pip install .You can also install from the remote repository:
pip install git+ssh://git@github.com/seetaresearch/seetadet.gitIf you prefer to develop locally, build but not install to site-packages:
cd seetadet && python setup.py buildQuick Start
Train a detection model
cd tools
python train.py --cfg <MODEL_YAML>We have provided the default YAML examples into configs.
Test a detection model
cd tools
python test.py --cfg <MODEL_YAML> --exp_dir <EXP_DIR> --iter <ITERATION>Export a detection model to ONNX
cd tools
python export.py --cfg <MODEL_YAML> --exp_dir <EXP_DIR> --iter <ITERATION>Serve a detection model
cd tools
python serve.py --cfg <MODEL_YAML> --exp_dir <EXP_DIR> --iter <ITERATION>Benchmark and Model Zoo
Results and models are available in the Model Zoo.
