From 6f776a4d2efa6378d195a7b4cb39997bc0aabd14 Mon Sep 17 00:00:00 2001 From: wang-xinyu Date: Mon, 25 Nov 2019 02:57:50 +0800 Subject: [PATCH] fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 73cf7fc..2bac87c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # TensorRTx -TensorRTx aims to implement popular deep learning networks with tensorrt API. As we know, tensorrt has builtin parsers, including caffeparser, uffparser, onnxparser, etc. But when we use these parses, we often run into some "unsupported operations or layers" problems, especially some state-of-the-art models are using new type of layers, therefore, sometimes we have no choice but to implement the models with tensorrt network definition APIs. +TensorRTx aims to implement popular deep learning networks with tensorrt API. As we know, tensorrt has builtin parsers, including caffeparser, uffparser, onnxparser, etc. But when we use these parsers, we often run into some "unsupported operations or layers" problems, especially some state-of-the-art models are using new type of layers, therefore, sometimes we have no choice but to implement the models with tensorrt network definition APIs. I wrote this project to get familiar with tensorrt API, and also to share and learn from the community.