Views
No views yet
| 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 |
Quantization: q = round((w - C₁) / S)
Dequantization: w = q · S + C₁
Where S = max|w| · (1/e)| Platform | Compatible |
|---|---|
| Mobile (iOS/Android) | ✅ |
| IoT devices | ✅ |
| Microcontrollers (ARM Cortex-M) | ✅ |
| Browser (ONNX/WebGL) | ✅ |
| Edge TPU | ⚠️ (needs conversion) |
1from huggingface_hub import hf_hub_download
2
3# Download quantized weights
4weights = hf_hub_download(repo_id="5dimension/sentinel-tiny-text-int8", filename="model_int8.pt")