tflite-micro/python
Ryan Kuester bbf70db499
feat(compression): add SpecBuilder for programmatic compression specs (#3133)
Add a fluent builder API for creating compression specifications
without writing YAML strings. This is useful in scripts and
Jupyter notebooks.

Example usage:
    spec = (compression.SpecBuilder()
        .add_tensor(subgraph=0, tensor=2)
            .with_lut(index_bitwidth=4)
        .build())

BUG=#3125

Co-authored-by: suleshahid <110432064+suleshahid@users.noreply.github.com>
2025-07-10 16:32:57 -04:00
..
tests ci(bazel): simplify scripts and configuration in advance of additions (#2918) 2024-11-21 10:38:16 -08:00
tflite_micro feat(compression): add SpecBuilder for programmatic compression specs (#3133) 2025-07-10 16:32:57 -04:00
BUILD
py_namespace.bzl
py_pkg_cc_deps.bzl