- Added pre-trained models for Caltech, CityPersons and EuroCity Persons
- Added some qualitative results for Caltech on YouTube
- Added demo script to perform inference using pre-trained models on some images
- Added testing and training scripts for all datasets.
- Added configurations for Faster R-CNN along with pre-trained model
- Added configurations for RetinaNet along with pre-trained model
Pedestron is a MMetection based repository that focuses on the advancement of research on pedestrian detection. We provide processed annotations and scripts to process the annotation of different pedestrian detection benchmarks.
- YouTube link for qualitative results on Caltech. Pre-Trained model available.
We refer to the installation and list of dependencies to installation file. Clone this repo and follow installation.
Currently We provide configurations for
- Cascade Mask-R-CNN
- Faster R-CNN
- We refer to Datasets preparation file for detailed instructions
Detector | Dataset | Reasonable | Heavy |
---|---|---|---|
Cascade Mask R-CNN | CityPersons | 7.5 | 28.0 |
Faster R-CNN | CityPersons | 10.3 | 33.07 |
RetinaNet | CityPersons | 14.6 | 39.5 |
Cascade Mask R-CNN | Caltech | 1.7 | 25.7 |
Cascade Mask R-CNN | EuroCity Persons | 4.4 | 21.3 |
Cascade Mask R-CNN
Faster R-CNN
- Pre-trained model can be evaluated on sample images in the following way
python tools/demo.py config checkpoint input_dir output_dir
Download one of our provided pre-trained model and place it in models_pretrained folder. Demo can be run using the following command
python tools/demo.py configs/elephant/cityperson/cascade_hrnet.py ./models_pretrained/epoch_5.pth.stu demo/ result_demo/
Train with single GPU
python tools/train.py ${CONFIG_FILE}
Train with multiple GPUs
./tools/dist_train.sh ${CONFIG_FILE} ${GPU_NUM} [optional arguments]
For instance training on CityPersons using single GPU
python tools/train.py configs/elephant/cityperson/cascade_hrnet.py
Training on CityPersons using multiple(7 in this case) GPUs
./tools/dist_train.sh configs/elephant/cityperson/cascade_hrnet.py 7
Test can be run using the following command.
python ./tools/TEST_SCRIPT_TO_RUN.py PATH_TO_CONFIG_FILE ./models_pretrained/epoch_ start end\
--out Output_filename --mean_teacher
For example for CityPersons inference can be done the following way
- Download the pretrained CityPersons model and place it in the folder "models_pretrained/".
- Run the following command:
python ./tools/test_city_person.py configs/elephant/cityperson/cascade_hrnet.py ./models_pretrained/epoch_ 5 6\
--out result_citypersons.json --mean_teacher
- Similarly change respective paths for EuroCity Persons
- For Caltech refer to Datasets preparation file
@article{hasan2020pedestrian,
title={Pedestrian Detection: The Elephant In The Room},
author={Hasan, Irtiza and Liao, Shengcai and Li, Jinpeng and Akram, Saad Ullah and Shao, Ling},
journal={arXiv preprint arXiv:2003.08799},
year={2020}
}