tflite-micro/tensorflow/lite/micro/compression
Ryan Kuester 6c67d478e3
feat(compression): add Huffman and Pruning compression support (#3612)
Add spec types, YAML parser support, and plugin stubs for Huffman and
Pruning compression methods. The plugins raise CompressionError when
invoked, to be replaced with working implementations later.

BUG=part of #3256
2026-06-30 22:53:59 +00:00
..
__init__.py
BUILD feat(compression): add Huffman and Pruning compression support (#3612) 2026-06-30 22:53:59 +00:00
compress.py refactor(compression): migrate compress.py from model_facade to model_editor (#3580) 2026-06-01 16:36:48 +00:00
compress_test.py refactor(compression): replace test_models with model_editor in compress_test (#3586) 2026-06-02 16:09:54 +00:00
compressor.py feat(compression): add Compressor protocol (#3590) 2026-06-18 20:15:56 +00:00
decode.py feat(compression): add DECODE operator types and metadata (#3589) 2026-06-06 01:31:13 +00:00
decode_test.py feat(compression): add DECODE operator types and metadata (#3589) 2026-06-06 01:31:13 +00:00
huffman.py feat(compression): add Huffman and Pruning compression support (#3612) 2026-06-30 22:53:59 +00:00
lut.py feat(compression): add LUT compression plugin (#3608) 2026-06-24 22:44:48 +00:00
lut_test.py feat(compression): add LUT compression plugin (#3608) 2026-06-24 22:44:48 +00:00
metadata.fbs
metadata_saved.h
metadata_saved_test.sh
metadata_saved_update.sh
metadata_test.cc
metadata_test.py No tensorflow 2 (#3548) 2026-05-06 21:17:46 +00:00
mnist_compression_tutorial.ipynb
model_editor.py feat(compression): implement model_editor for TFLite model manipulation (#3575) 2026-05-29 21:42:17 +00:00
model_editor_test.py feat(compression): implement model_editor for TFLite model manipulation (#3575) 2026-05-29 21:42:17 +00:00
pruning.py feat(compression): add Huffman and Pruning compression support (#3612) 2026-06-30 22:53:59 +00:00
spec.py feat(compression): add Huffman and Pruning compression support (#3612) 2026-06-30 22:53:59 +00:00
spec_builder.py
spec_builder_test.py No tensorflow 2 (#3548) 2026-05-06 21:17:46 +00:00
spec_test.py No tensorflow 2 (#3548) 2026-05-06 21:17:46 +00:00
tensor_type.py refactor(compression): hoist numpy dtype map into tensor_type (#3578) 2026-05-28 21:56:37 +00:00
tensor_type_test.py refactor(compression): hoist numpy dtype map into tensor_type (#3578) 2026-05-28 21:56:37 +00:00
view.py refactor(compression): hoist numpy dtype map into tensor_type (#3578) 2026-05-28 21:56:37 +00:00
view_test.py
view_tests.bzl