| --- |
| license: apache-2.0 |
| tags: |
| - mediapipe |
| - face-detection |
| - blazeface |
| - tflite |
| --- |
| |
| # BlazeFace full-range (TFLite) |
|
|
| A re-host of Google's MediaPipe **full-range face detector**, unmodified. |
|
|
| | | | |
| |---|---| |
| | File | `blaze_face_full_range.tflite` | |
| | Size | 1,083,786 bytes | |
| | Source | `https://storage.googleapis.com/mediapipe-assets/face_detection_full_range.tflite` | |
| | Licence | Apache-2.0 (Google MediaPipe) | |
|
|
| Byte-identical to the upstream asset; only the filename differs |
| (`face_detection_full_range.tflite` → `blaze_face_full_range.tflite`). |
|
|
| ## Use |
|
|
| ```python |
| from huggingface_hub import hf_hub_download |
| |
| path = hf_hub_download("langminer/blaze-face-full-range", |
| "blaze_face_full_range.tflite") |
| ``` |
|
|
| Original model card and terms: https://developers.google.com/mediapipe/solutions/vision/face_detector |
| |