download.sh 729 B

123456789101112131415161718192021
  1. # All rights `PaddleDetection` reserved
  2. # References:
  3. # @inproceedings{yang2016wider,
  4. # Author = {Yang, Shuo and Luo, Ping and Loy, Chen Change and Tang, Xiaoou},
  5. # Booktitle = {IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
  6. # Title = {WIDER FACE: A Face Detection Benchmark},
  7. # Year = {2016}}
  8. DIR="$( cd "$(dirname "$0")" ; pwd -P )"
  9. cd "$DIR"
  10. # Download the data.
  11. echo "Downloading..."
  12. wget https://dataset.bj.bcebos.com/wider_face/WIDER_train.zip
  13. wget https://dataset.bj.bcebos.com/wider_face/WIDER_val.zip
  14. wget https://dataset.bj.bcebos.com/wider_face/wider_face_split.zip
  15. # Extract the data.
  16. echo "Extracting..."
  17. unzip -q WIDER_train.zip
  18. unzip -q WIDER_val.zip
  19. unzip -q wider_face_split.zip