This repository is the PyTorch implementation of
"Mixture-Model-based Bounding Box Density Estimation for Object Detection"
- python3.6
- pytorch1.1
- torchvision0.3
(root-directory)
├── README.md
├── run_mmod.py
├── src
│ └── (python-source-file.py)
├── result
│ └── (result-directory)
│ ├── ...
│ └── snapshot
│ └── (iteration)
│ ├── network.pth
│ └── optimizer.pth
└── data
└── coco-2017
├── annotations
└── images
You can download the voc and coco dataset in the follow links.
http://cocodataset.org/#download (coco-2017)
Training
# run_mmod.sh
--training_args="{'max_iter': maximum number of iterations, ...}"
# command
.../(root-directory)$ bash run_mmod.sh
Test
# run_mmod.sh
--training_args="{'init_iter': 0, 'max_iter': 0, ...}",
--test_iters="[0]"
--load_dir="path of the snapshot directory that has a network.pth file"
# command
.../(root-directory)$ bash run_mmod.sh
@article{yoo2019mmod,
title={Mixture-Model-based Bounding Box Density Estimation for Object Detection},
author={Yoo, Jaeyoung and Seo, Geonseok and Kwak, Nojun},
journal={arXiv preprint arXiv:1911.12721},
year={2019}
}