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
Copy file name to clipboardExpand all lines: README.md
+18-17Lines changed: 18 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
# YOLO v3 CPU Inference API for Windows and Linux
1
+
# YOLO v4-v3 CPU Inference API for Windows and Linux
2
2
3
-
This is a repository for an object detection inference API using the Yolov3 Opencv.
3
+
This is a repository for an object detection inference API using the Yolov4 and Yolo v3 Opencv.
4
4
5
5
The inference REST API works on CPU and doesn't require any GPU usage. It's supported on both Windows and Linux Operating systems.
6
6
7
-
Models trained using our training Yolov3 repository can be deployed in this API. Several object detection models can be loaded and used at the same time.
7
+
Models trained using our training Yolov4 or Yolov3 repository can be deployed in this API. Several object detection models can be loaded and used at the same time.
8
8
9
9

10
10
@@ -44,13 +44,12 @@ To [install Docker on Windows](https://docs.docker.com/docker-for-windows/instal
44
44
In order to build the project run the following command from the project's root directory:
@@ -171,6 +170,9 @@ Inside each subfolder there should be a:
171
170
}
172
171
```
173
172
P.S
173
+
174
+
- You can choose **"inference_engine_name"**: between **yolov4_opencv_cpu_detection** and **yolov3_opencv_cpu_detection** depending on the model you have.
175
+
174
176
- You can change confidence and nms_threshold values while running the API
175
177
- The API will return bounding boxes with a confidence higher than the "confidence" value. A high "confidence" can show you only accurate predictions
176
178
@@ -180,26 +182,23 @@ Inside each subfolder there should be a:
180
182
<thead align="center">
181
183
<tr>
182
184
<th></th>
183
-
<th>Windows</th>
184
185
<th colspan=3>Ubuntu</th>
185
186
</tr>
186
187
</thead>
187
188
<thead align="center">
188
189
<tr>
189
190
<th>Network\Hardware</th>
190
191
<th>Intel Xeon CPU 2.3 GHz</th>
191
-
<th>Intel Xeon CPU 2.3 GHz</th>
192
192
<th>Intel Core i9-7900 3.3 GHZ</th>
193
-
<th>GeForce GTX 1080</th>
193
+
<th>Tesla V100</th>
194
194
</tr>
195
195
</thead>
196
196
<tbody align="center">
197
197
<tr>
198
-
<td>pascalvoc_dataset</td>
199
-
<td>0.885 seconds/image</td>
200
-
<td>0.793 seconds/image</td>
201
-
<td>0.295 seconds/image</td>
202
-
<td>0.0592 seconds/image</td>
198
+
<td>COCO Dataset</td>
199
+
<td>0.259 seconds/image</td>
200
+
<td>0.281 seconds/image</td>
201
+
<td>0.0691 seconds/image</td>
203
202
</tr>
204
203
</tbody>
205
204
</table>
@@ -213,3 +212,5 @@ Inside each subfolder there should be a:
0 commit comments