--- tags: - sentinel-manifold - quantization - edge-deployment - int8 - pytorch license: mit --- # ๐Ÿฆด Sentinel Tiny Text โ€” Sentinel-INT8 **Production-ready quantized model for edge deployment.** This is the Sentinel-INT8 quantized variant of [Sentinel Tiny Text](https://huggingface.co/5dimension/sentinel-tiny-text). --- ## ๐Ÿ“Š Quantization Spec (SDM-v1 ยง4) | Property | Value | |----------|-------| | **Format** | Sentinel-INT8 | | **Zero-Point (Z)** | Cโ‚ = -0.007994021806 (attracting fixed point) | | **Scale (S)** | max\|w\| ยท (1/e) | | **Compression** | 4ร— | | **Size** | ~13 MB | | **Parent model** | [5dimension/sentinel-tiny-text](https://huggingface.co/5dimension/sentinel-tiny-text) | --- ## ๐Ÿงฌ Mathematical Foundation The Sentinel quantization uses the attracting fixed point Cโ‚ as the zero-point, minimizing rounding noise by clustering weights around the dynamical attractor. ``` Quantization: q = round((w - Cโ‚) / S) Dequantization: w = q ยท S + Cโ‚ Where S = max|w| ยท (1/e) ``` --- ## ๐Ÿš€ Deployment Targets | Platform | Compatible | |----------|-----------| | Mobile (iOS/Android) | โœ… | | IoT devices | โœ… | | Microcontrollers (ARM Cortex-M) | โœ… | | Browser (ONNX/WebGL) | โœ… | | Edge TPU | โš ๏ธ (needs conversion) | --- ## ๐Ÿ“ฆ Download ```python from huggingface_hub import hf_hub_download # Download quantized weights weights = hf_hub_download(repo_id="5dimension/sentinel-tiny-text-int8", filename="model_int8.pt") ``` --- ## ๐Ÿ”— Links - **Parent model**: [5dimension/sentinel-tiny-text](https://huggingface.co/5dimension/sentinel-tiny-text) - **Main repo**: [sentinel-manifold-discoveries](https://huggingface.co/5dimension/sentinel-manifold-discoveries) - **Sentinel Hub**: [Interactive demo](https://huggingface.co/spaces/5dimension/sentinel-hub) --- **License:** MIT | **Edge-ready. Theorem-backed.** ๐Ÿฆด