You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You need only 2 files for train that are **YOLOv3SE_Train.exe** and **cudnn64_7.dll** on Windows. If you are on Linux, then you need only **YOLOv3SE_Train**. This files are in `YOLOv3_SpringEdition/bin`.
32
+
You need only 2 files for train that are **YOLOv3SE_Train.exe** and **cudnn64_7.dll** on Windows. If you are on Linux, then you need only **YOLOv3SE_Train**. This files are in `YOLOv3_SpringEdition/bin`. or you can make it using `build_windows.bat` and `build_linux.sh`.
33
33
34
34
The requirement interface not changed. Same as **[pjreddie/darknet](https://github.com/pjreddie/darknet)**.
35
35
@@ -41,12 +41,34 @@ The **YOLOv3SE_Train.exe**'s arguments are `[option]`,`[base directory]`,`[data
41
41
42
42
And YOLOv3SE_Train.exe is automatically choosing multi-gpu training. and select latest backup weights file.
43
43
44
+
Example : [Yolov3_SpringEdition_Train/DetectorExample/](Yolov3_SpringEdition_Train/DetectorExample/)
45
+
46
+
##### Sample directory structure with VOC2007 dataset.
Example : [Yolov3_SpringEdition_Train/ClassifierExample/](Yolov3_SpringEdition_Train/ClassifierExample/)
46
68
47
69
##### Sample directory structure with STL10 dataset.
48
70
```
49
-
┌ stl10
71
+
┌ stl10train
50
72
│ ├ airplane
51
73
│ ├ bird
52
74
│ ├ car
@@ -58,7 +80,7 @@ Example : [Yolov3_SpringEdition_Train/ClassifierExample/](Yolov3_SpringEdition_T
58
80
├ stl10.names
59
81
├ train.txt
60
82
├ cudnn64_7.dll
61
-
├ YOLOv3SE_ Train.exe
83
+
└ YOLOv3SE_ Train.exe
62
84
```
63
85
##### Sample run argument with STL10 dataset.
64
86
```
@@ -113,17 +135,15 @@ void Release();
113
135
```
114
136
Release loaded network.
115
137
116
-
### 3. Setup for train(classification).
117
-
118
-
119
-
120
138
121
139
122
140
Technical issue
123
141
---------------
124
142
125
143
Original YOLOv3(darknet) is linux version. And **[AlexeyAB](https://github.com/AlexeyAB/darknet)** already made YOLOv3 Windows version. But, his detection method is too slow on Windows. I don't know why exactly. Maybe it has bottleneck. So, I converted **[darknet](https://github.com/pjreddie/darknet)**(YOLOv3 only) again.
0 commit comments