From 7f534090852bd5a47826122f450055e78c724df0 Mon Sep 17 00:00:00 2001 From: Wang Xinyu Date: Fri, 6 Mar 2020 15:37:54 +0800 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c62ff1c..2ac07ba 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # TensorRTx -TensorRTx aims to implement popular deep learning networks with tensorrt network definition APIs. 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. +TensorRTx aims to implement popular deep learning networks with tensorrt network definition APIs. 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. + +So why don't we just skip all parsers? We just use TensorRT network definition APIs to build the whole network, it's not so complicated. I wrote this project to get familiar with tensorrt API, and also to share and learn from the community.