car-detection-bayes/weights/download_yolov3_weights.sh

25 lines
896 B
Bash
Raw Normal View History

2018-08-26 09:24:09 +00:00
#!/bin/bash
2018-12-22 12:53:45 +00:00
# make '/weights' directory if it does not exist and cd into it
2019-12-07 01:33:17 +00:00
# mkdir -p weights && cd weights
2018-12-22 11:49:55 +00:00
2019-02-09 17:52:02 +00:00
# copy darknet weight files, continue '-c' if partially downloaded
2019-12-07 01:33:17 +00:00
# wget -c https://pjreddie.com/media/files/yolov3.weights
# wget -c https://pjreddie.com/media/files/yolov3-tiny.weights
# wget -c https://pjreddie.com/media/files/yolov3-spp.weights
2018-12-22 11:49:55 +00:00
2018-12-22 12:53:45 +00:00
# yolov3 pytorch weights
2019-02-09 17:52:02 +00:00
# download from Google Drive: https://drive.google.com/drive/folders/1uxgUBemJVw9wZsdpboYbzUN4bcRhsuAI
2018-12-22 12:53:45 +00:00
# darknet53 weights (first 75 layers only)
2019-12-07 01:33:17 +00:00
# wget -c https://pjreddie.com/media/files/darknet53.conv.74
2019-01-06 22:57:59 +00:00
# yolov3-tiny weights from darknet (first 16 layers only)
# ./darknet partial cfg/yolov3-tiny.cfg yolov3-tiny.weights yolov3-tiny.conv.15 15
# mv yolov3-tiny.conv.15 ../
2019-12-07 01:33:17 +00:00
# new method
python3 -c "from models import *;
attempt_download('weights/yolov3.pt');
attempt_download('weights/yolov3-spp.pt')"