mirror of
https://github.com/vee1e/tflite-micro.git
synced 2026-09-01 17:57:27 +00:00
docs(compression): add MNIST compression tutorial (#3224)
Add a comprehensive Jupyter notebook tutorial demonstrating TFLM's compression pipeline using the MNIST dataset. The tutorial covers weight clustering with TensorFlow Model Optimization toolkit, post-training quantization, and TFLM's LUT-based compression. Update documentation to reference the new tutorial from the main README, Python interpreter guide, and compression documentation. BUG=#2636 Co-authored-by: Esun Kim <veblush@google.com>
This commit is contained in:
parent
c5ee80cc37
commit
c3c78cb7ea
4 changed files with 1278 additions and 0 deletions
|
|
@ -157,6 +157,11 @@ print(tflm_interpreter.get_input_details(0))
|
|||
print(tflm_interpreter.get_output_details(0))
|
||||
```
|
||||
|
||||
### Tutorials
|
||||
|
||||
For a complete end-to-end example using the Python interpreter for model compression:
|
||||
* [MNIST Compression Tutorial](../../tensorflow/lite/micro/compression/mnist_compression_tutorial.ipynb)
|
||||
|
||||
### Technical Details
|
||||
|
||||
The Python interpreter uses [pybind11](https://github.com/pybind/pybind11) to
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue