-
Notifications
You must be signed in to change notification settings - Fork 13
/
general_instructions.txt
26 lines (17 loc) · 1.92 KB
/
general_instructions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
##################################################################################################################################
##################################################################################################################################
Get the detailed instructions here to download and setup OpenCV for GPU
https://medium.com/analytics-vidhya/build-opencv-from-source-with-cuda-for-gpu-access-on-windows-5cd0ce2b9b37
##################################################################################################################################
Get the detailed instructions here to download and setup darknet for YoloV4 on Windows :
https://github.com/AlexeyAB/darknet#how-to-compile-on-windows-using-cmake
https://github.com/AlexeyAB/darknet#how-to-compile-on-windows-using-vcpkg
##################################################################################################################################
##################################################################################################################################
Type this execution command in the Prompt Command to train the model with darknet in this configuration (on Windows Powershell) :
.\darknet.exe detector train ../data/obj.data ../cfg/yolov4-rds.cfg ../weights/yolov4-rds_last.weights -map
##################################################################################################################################
Type this execution command in the Prompt Command to test the model with darknet in this configuration (on Windows Powershell) :
.\darknet.exe detector test ../data/obj.data ../cfg/yolov4-rds.cfg ../weights/yolov4-rds_last.weights -map
##################################################################################################################################
##################################################################################################################################