2018-08-26 11:24:09 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2018-12-22 13:53:45 +01:00
|
|
|
# make '/weights' directory if it does not exist and cd into it
|
|
|
|
|
mkdir -p weights && cd weights
|
2018-12-22 12:49:55 +01:00
|
|
|
|
2018-12-22 13:53:45 +01:00
|
|
|
# copy weight files, continue '-c' if partially downloaded
|
|
|
|
|
# yolov3 darknet weights
|
|
|
|
|
wget -c https://pjreddie.com/media/files/yolov3.weights
|
|
|
|
|
wget -c https://pjreddie.com/media/files/yolov3-tiny.weights
|
2018-12-22 14:25:02 +01:00
|
|
|
wget -c https://pjreddie.com/media/files/yolov3-spp.weights
|
2018-12-22 12:49:55 +01:00
|
|
|
|
2018-12-22 13:53:45 +01:00
|
|
|
# yolov3 pytorch weights
|
2018-12-28 08:48:10 +01:00
|
|
|
# download from Google Drive: https://drive.google.com/drive/u/0/folders/1uxgUBemJVw9wZsdpboYbzUN4bcRhsuAI
|
2018-12-22 13:53:45 +01:00
|
|
|
|
|
|
|
|
# darknet53 weights (first 75 layers only)
|
2018-12-22 13:54:02 +01:00
|
|
|
wget -c https://pjreddie.com/media/files/darknet53.conv.74
|
2019-01-06 23:57:59 +01: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 ../
|
|
|
|
|
|