17 lines
557 B
Bash
17 lines
557 B
Bash
#!/bin/bash
|
|
|
|
# make '/weights' directory if it does not exist and cd into it
|
|
mkdir -p weights && cd weights
|
|
|
|
# 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
|
|
|
|
# yolov3 pytorch weights
|
|
wget https://storage.googleapis.com/ultralytics/yolov3.pt
|
|
wget https://storage.googleapis.com/ultralytics/yolov3-tiny.pt
|
|
|
|
# darknet53 weights (first 75 layers only)
|
|
wget https://pjreddie.com/media/files/darknet53.conv.74
|