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
|
|
|
|
mkdir -p weights && cd weights
|
2018-12-22 11:49:55 +00:00
|
|
|
|
2018-12-22 12:53:45 +00: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 11:49:55 +00:00
|
|
|
|
2018-12-22 12:53:45 +00:00
|
|
|
# yolov3 pytorch weights
|
2018-10-21 14:08:31 +00:00
|
|
|
wget https://storage.googleapis.com/ultralytics/yolov3.pt
|
2018-12-22 12:53:45 +00:00
|
|
|
wget https://storage.googleapis.com/ultralytics/yolov3-tiny.pt
|
|
|
|
|
|
|
|
# darknet53 weights (first 75 layers only)
|
|
|
|
wget https://pjreddie.com/media/files/darknet53.conv.74
|