From 52dacd6556d60815253d4e4938e218ea3d8084a2 Mon Sep 17 00:00:00 2001 From: Thibaut Goetghebuer-Planchon Date: Wed, 6 Jul 2022 10:23:22 +0100 Subject: Initial commit Change-Id: I2fb0933d595a6ede6417d09dd905ef72d6c60c9b --- RELEASES.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 RELEASES.md (limited to 'RELEASES.md') diff --git a/RELEASES.md b/RELEASES.md new file mode 100644 index 0000000..ec666ee --- /dev/null +++ b/RELEASES.md @@ -0,0 +1,20 @@ + +# Release 0.1.0 + +First release of the TOSA Checker tool. The goal of the tool is to provide an easy way to check if a TensorFlow™ Lite model is compatible with the [TOSA specification](https://www.mlplatform.org/tosa). + +The tool is provided as a Python® package and can be used as follow: + +```python +>>> import tosa_checker as tc +>>> checker = tc.TOSAChecker("model.tflite") +>>> checker.is_tosa_compatible() +True +``` + +The tool is currently in alpha, the features set is limited and some stability issues may exist. + +Future versions may extend the functionalities provided and support for other frameworks will be added. -- cgit v1.2.1