You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.5 kB

2 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # WIDER Face Dataset
  2. <!-- [DATASET] -->
  3. To use the WIDER Face dataset you need to download it
  4. and extract to the `data/WIDERFace` folder. Annotation in the VOC format
  5. can be found in this [repo](https://github.com/sovrasov/wider-face-pascal-voc-annotations.git).
  6. You should move the annotation files from `WIDER_train_annotations` and `WIDER_val_annotations` folders
  7. to the `Annotation` folders inside the corresponding directories `WIDER_train` and `WIDER_val`.
  8. Also annotation lists `val.txt` and `train.txt` should be copied to `data/WIDERFace` from `WIDER_train_annotations` and `WIDER_val_annotations`.
  9. The directory should be like this:
  10. ```
  11. mmdetection
  12. ├── mmdet
  13. ├── tools
  14. ├── configs
  15. ├── data
  16. │ ├── WIDERFace
  17. │ │ ├── WIDER_train
  18. │ | │ ├──0--Parade
  19. │ | │ ├── ...
  20. │ | │ ├── Annotations
  21. │ │ ├── WIDER_val
  22. │ | │ ├──0--Parade
  23. │ | │ ├── ...
  24. │ | │ ├── Annotations
  25. │ │ ├── val.txt
  26. │ │ ├── train.txt
  27. ```
  28. After that you can train the SSD300 on WIDER by launching training with the `ssd300_wider_face.py` config or
  29. create your own config based on the presented one.
  30. ```
  31. @inproceedings{yang2016wider,
  32. Author = {Yang, Shuo and Luo, Ping and Loy, Chen Change and Tang, Xiaoou},
  33. Booktitle = {IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
  34. Title = {WIDER FACE: A Face Detection Benchmark},
  35. Year = {2016}
  36. }
  37. ```

No Description

Contributors (2)