8 lines
303 B
Bash
8 lines
303 B
Bash
|
#!/bin/bash
|
||
|
# Download weights for vanilla YOLOv3
|
||
|
wget -c https://pjreddie.com/media/files/yolov3.weights
|
||
|
# # Download weights for tiny YOLOv3
|
||
|
wget -c https://pjreddie.com/media/files/yolov3-tiny.weights
|
||
|
# Download weights for backbone network
|
||
|
wget -c https://pjreddie.com/media/files/darknet53.conv.74
|