Skip to content

Commit b2cb4c6

Browse files
authored
Improve hardware namings on the table of benchmark results (#27)
* improve hardware namings * remove extra parentheses
1 parent 953d93c commit b2cb4c6

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# OpenCV Zoo
1+
# OpenCV Zoo and Benchmark
22

33
A zoo for models tuned for OpenCV DNN with benchmarks on different platforms.
44

55
Guidelines:
6-
- To clone this repo, please install [git-lfs](https://git-lfs.github.com/), run `git lfs install` and use `git lfs clone https://github.com/opencv/opencv_zoo`.
7-
- To run benchmark on your hardware settings, please refer to [benchmark/README](./benchmark/README.md).
8-
- Understand model filename: `<topic>_<model_name>_<dataset>_<arch>_<upload_time>`
9-
- `<topic>`: research topics, such as `face detection` etc.
10-
- `<model_name>`: exact model names.
11-
- `<dataset>`: (Optional) the dataset that the model is trained with.
12-
- `<arch>`: (Optional) the backbone architecture of the model.
13-
- `<upload_time>`: the time when the model is uploaded, meaning the latest version of this model unless specified.
14-
15-
## Models & Benchmarks
16-
17-
| Model | Input Size | CPU x86_64 (ms) | CPU ARM (ms) | GPU CUDA (ms) |
18-
|-------|------------|-----------------|--------------|---------------|
6+
- Clone this repo to download all models and demo scripts:
7+
```shell
8+
# Install git-lfs from https://git-lfs.github.com/
9+
git clone https://github.com/opencv/opencv_zoo && cd opencv_zoo
10+
git lfs install
11+
git lfs pull
12+
```
13+
- To run benchmarks on your hardware settings, please refer to [benchmark/README](./benchmark/README.md).
14+
15+
## Models & Benchmark Results
16+
17+
| Model | Input Size | INTEL-CPU | RPI-CPU | JETSON-GPU |
18+
|-------|------------|-----------|---------|------------|
1919
| [YuNet](./models/face_detection_yunet) | 160x120 | 1.45 | 6.22 | 12.18 |
2020
| [DB-IC15](./models/text_detection_db) | 640x480 | 142.91 | 2835.91 | 208.41 |
2121
| [DB-TD500](./models/text_detection_db) | 640x480 | 142.91 | 2841.71 | 210.51 |
@@ -29,16 +29,16 @@ Guidelines:
2929
| [YoutuReID](./models/person_reid_youtureid) | 128x256 | 35.81 | 521.98 | 90.07 |
3030

3131
Hardware Setup:
32-
- `CPU x86_64`: INTEL CPU i7-5930K @ 3.50GHz, 6 cores, 12 threads.
33-
- `CPU ARM`: Raspberry 4B, BCM2711B0 @ 1.5GHz (Cortex A-72), 4 cores, 4 threads.
34-
- `GPU CUDA`: NVIDIA Jetson Nano B01, 128-core Maxwell, Quad-core ARM A57 @ 1.43 GHz.
32+
- `INTEL-CPU`: [Intel Core i7-5930K](https://www.intel.com/content/www/us/en/products/sku/82931/intel-core-i75930k-processor-15m-cache-up-to-3-70-ghz/specifications.html) @ 3.50GHz, 6 cores, 12 threads.
33+
- `RPI-CPU`: [Raspberry Pi 4B](https://www.raspberrypi.com/products/raspberry-pi-4-model-b/specifications/), Broadcom BCM2711, Quad core Cortex-A72 (ARM v8) 64-bit SoC @ 1.5GHz.
34+
- `JETSON-GPU`: [NVIDIA Jetson Nano B01](https://developer.nvidia.com/embedded/jetson-nano-developer-kit), 128-core NVIDIA Maxwell GPU.
3535

3636
***Important Notes***:
37-
- The time data that shown on the following table presents the time elapsed from preprocess (resize is excluded), to a forward pass of a network, and postprocess to get final results.
38-
- The time data that shown on the following table is the median of 10 runs. Different metrics may be applied to some specific models.
37+
- The data under each column of hardware setups on the above table represents the elapsed time of an inference (preprocess, forward and postprocess).
38+
- The time data is the median of 10 runs after some warmup runs. Different metrics may be applied to some specific models.
3939
- Batch size is 1 for all benchmark results.
40+
- `---` represents the model is not availble to run on the device.
4041
- View [benchmark/config](./benchmark/config) for more details on benchmarking different models.
41-
- `---` means this model is not availble to run on the device.
4242

4343
## License
4444

0 commit comments

Comments
 (0)