forked from Linzmin1927/darknet_chs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_command.txt
30 lines (20 loc) · 1.53 KB
/
test_command.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
27
28
29
30
.\darknet detect cfg/yolov3-tiny.cfg yolov3-tiny.weights data/person.jpg
#根据网络结构生成一个随机初始化的权重文件
./darknet genweghts cfg/yolov3_mobilenet_v1.cfg backup/yolov3_mobilenet_0.weights
./darknet genweghts cfg/yolov3.cfg backup/yolov3_0.weights
./darknet genweghts cfg/yolov3-tiny-mobilenet_v1.cfg backup/yolov3-tiny-mobilenetv1.weights
#查看网络结构,并统计推理网络浮点数操作次数
./darknet ops cfg/yolov3_mobilenet_v1.cfg
#计算速度
./darknet speed cfg/yolov3_mobilenet_v1.cfg
./darknet speed cfg/yolov3.cfg
#训练
./darknet detector train cfg/coco_modilenet.data cfg/yolov3-tiny-modilenet.cfg
./darknet detector train cfg/coco_modilenet.data cfg/yolov3-tiny-modilenet.cfg backup/yolov3-tiny-modilenet_30000.weights
./darknet detector train cfg/coco_modilenet.data cfg/yolo_mobilenet.cfg
./darknet detector train cfg/coco_modilenet.data cfg/yolov3-tiny-modilenet_2.cfg backup/yolov3-tiny-modilenet_2_10000.weights
./darknet detector train cfg/coco_modilenet.data cfg/yolov3_mobilenet_v1.cfg weights/yolo3_mobilenet.weights -clear >> log/yolo3_mobilenetV1_190203.log
./darknet detector train cfg/coco_modilenet.data cfg/yolov3-tiny-mobilenet_v1.cfg weights/yolov3-tiny-mobilenet_v1.weights -clear >> log/yolo3_tiny_mobilenetV1_190203.log
#加载主干网络权重
./darknet loadbackone cfg/yolov3_mobilenet_v1.cfg weights/mobilenet.weights weights/yolo3_mobilenet.weights
./darknet loadbackone cfg/yolov3-tiny-mobilenet_v1.cfg weights/mobilenet.weights weights/yolov3-tiny-mobilenetv1.weights