updates
This commit is contained in:
parent
47df31a270
commit
de2d835b91
|
@ -1,8 +1,16 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
wget https://pjreddie.com/media/files/yolov3.weights
|
# make '/weights' directory if it does not exist and cd into it
|
||||||
wget https://pjreddie.com/media/files/yolov3-tiny.weights
|
mkdir -p weights && cd weights
|
||||||
|
|
||||||
wget https://pjreddie.com/media/files/darknet53.conv.74
|
# 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.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
|
||||||
|
|
Loading…
Reference in New Issue