From 99c789ba86db5761607816c0cd6e5638e12d8f89 Mon Sep 17 00:00:00 2001 From: ThanhNS Date: Fri, 12 Oct 2018 17:39:22 +0700 Subject: [PATCH] add the instruction to get pre-trained models --- model-weights/get_models.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/model-weights/get_models.sh b/model-weights/get_models.sh index 20d602b..f8576aa 100644 --- a/model-weights/get_models.sh +++ b/model-weights/get_models.sh @@ -1,2 +1,10 @@ #!/usr/bin/env bash +wget https://pjreddie.com/media/files/yolov3.weights +wget https://github.com/pjreddie/darknet/blob/master/cfg/yolov3.cfg?raw=true -O ./yolov3.cfg +wget https://github.com/pjreddie/darknet/blob/master/data/coco.names?raw=true -O ./coco.names + +# for face detection using the YOLOv3 algorithm, you navigate to the below link: +# https://drive.google.com/file/d/1xYasjU52whXMLT5MtF7RCPQkV66993oR/view?usp=sharing +# to download the weights of the trained model +# put then it into the model-weights/ folder \ No newline at end of file