From db940e048f30a16f964b3cac98009aa69afd200d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=8C=AF=E5=8D=8E=20=28Zhenhua=20WANG=29?= Date: Wed, 30 Sep 2020 09:33:49 +0800 Subject: [PATCH] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f04d308..c910ed9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ TFLITE2ONNX - Convert TensorFlow Lite models to ONNX [![Sanity](https://github.com/jackwish/tflite2onnx/workflows/Sanity/badge.svg)](https://github.com/jackwish/tflite2onnx/actions?query=workflow%3ASanity) [![Coverage](https://codecov.io/gh/jackwish/tflite2onnx/branch/master/graph/badge.svg)](https://codecov.io/gh/jackwish/tflite2onnx) -`tflite2onnx` converts TensorFlow Lite (TFLite) models (`*.tflite`) to ONNX models (`*.onnx`). +`tflite2onnx` converts TensorFlow Lite (TFLite) models (`*.tflite`) to ONNX models (`*.onnx`), +with data layout and quantization semantic properly handled (check the [introduction blog][intro] for detail). > If you'd like to convert a TensorFlow model (frozen graph `*.pb`, `SavedModel` or whatever) to ONNX, try [`tf2onnx`](https://github.com/onnx/tensorflow-onnx). @@ -44,13 +45,14 @@ tflite2onnx /path/to/original/tflite/model /path/to/save/converted/onnx/model Any contribution is welcome to this tool. * If you think something is wrong, [report bugs](https://github.com/jackwish/tflite2onnx/issues/new?assignees=&labels=bug&template=bug-report.md&title=). -* If some operators are not supported yet, you may [request new operator](https://github.com/jackwish/tflite2onnx/issues/new?assignees=&labels=operator%2C+help+wanted&template=request-operator.md&title=Operator+request%3A). -* It would be great if you can help to enable new operators, please join us with [How to enable new operator](docs/how-to-enable-new-operator.md). +* If some operators are not supported yet, you may [request a new operator](https://github.com/jackwish/tflite2onnx/issues/new?assignees=&labels=operator%2C+help+wanted&template=request-operator.md&title=Operator+request%3A). +* It would be great if you can help to enable new operators, please join us with [How to enable a new operator](docs/how-to-enable-new-operator.md). * Feel free to open discussions if you have any great idea to improve this tool. ## Resources +* [Introduction blog][intro] * [Release note](docs/release-notes.md). * [PyPI page][pypi]. * [GitHub page][github]. @@ -61,6 +63,7 @@ Any contribution is welcome to this tool. Apache License Version 2.0. +[intro]: https://jackwish.net/2020/Convert-TensorFlow-Lite-models-to-ONNX.html [pypi]: https://pypi.org/project/tflite2onnx [github]: https://github.com/jackwish/tflite2onnx [tf2tflite]: https://www.tensorflow.org/lite/convert