getModels.sh 462 B

1234567891011121314
  1. # ------------------------- POSE MODELS -------------------------
  2. # Downloading the pose-model trained on COCO
  3. COCO_POSE_URL="https://www.dropbox.com/s/2h2bv29a130sgrk/pose_iter_440000.caffemodel"
  4. COCO_FOLDER="pose/coco/"
  5. wget -c ${COCO_POSE_URL} -P ${COCO_FOLDER}
  6. # Downloading the pose-model trained on MPI
  7. MPI_POSE_URL="https://www.dropbox.com/s/drumc6dzllfed16/pose_iter_160000.caffemodel"
  8. MPI_FOLDER="pose/mpi/"
  9. wget -c ${MPI_POSE_URL} -P ${MPI_FOLDER}