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
-[][YOLOv6](https://github.com/meituan/YOLOv6) (to be continued)<br>
41
-
-[][YOLO-NAS](https://github.com/Deci-AI/super-gradients) (to be continued)<br>
40
+
-[][YOLOv6](https://github.com/meituan/YOLOv6) (to be continued)<br>
41
+
-[][YOLO-NAS](https://github.com/Deci-AI/super-gradients) (to be continued)<br>
42
42
</details>
43
43
44
44
All speed tests were performed on RTX 3090 with COCO Val set.The time calculated here is the sum of the time of image loading, preprocess, inference and postprocess, so it's going to be slower than what's reported in the paper.
2. Change the path [here](https://github.com/Li-Hongda/TensorRT_Inference_Demo/blob/main/object_detection/CMakeLists.txt#L19) to your TensorRT path, and [here](https://github.com/Li-Hongda/TensorRT_Inference_Demo/blob/main/object_detection/CMakeLists.txt#L11) to your CUDA path. Then,
67
+
2. Install the dependencies.
68
+
### TensorRT
69
+
Following [NVIDIA offical docs](https://docs.nvidia.com/deeplearning/tensorrt/install-guide/index.html#installing) to install TensorRT.
70
+
71
+
### yaml-cpp
67
72
```
73
+
git clone https://github.com/jbeder/yaml-cpp
74
+
mkdir build && cd build
75
+
cmake ..
76
+
make -j20
77
+
cmake -DYAML_BUILD_SHARED_LIBS=on ..
78
+
make -j20
79
+
cd ..
80
+
```
81
+
82
+
83
+
3. Change the path [here](https://github.com/Li-Hongda/TensorRT_Inference_Demo/blob/main/object_detection/CMakeLists.txt#L19) to your TensorRT path, and [here](https://github.com/Li-Hongda/TensorRT_Inference_Demo/blob/main/object_detection/CMakeLists.txt#L11) to your CUDA path. Then,
84
+
```
85
+
cd TensorRT_Inference_Demo/object_detection
68
86
mkdir build && cd build
69
87
cmake ..
70
88
make -j$(nproc)
71
89
```
72
-
3. The executable file will be generated in `bin` in the repo directory if compile successfully.Then enjoy yourself with command like this:
90
+
4. The executable file will be generated in `bin` in the repo directory if compile successfully.Then enjoy yourself with command like this:
0 commit comments