You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: align model backend tables with the registry (#1435)
## Description
Regenerated every `Supported Backends` cell from `models.ts` and fixed
the rows that disagreed with what the library actually resolves.
| Page | Row | Was | Now |
| --- | --- | --- | --- |
| LLM | Llama 3.2, Qwen 3, Qwen 2.5, Hammer 2.1, Phi-4 Mini | XNNPACK |
XNNPACK, MLX |
| LLM | Liquid LFM 2.5 | one row, credited Vulkan to the text models |
split text / VL, Vulkan on VL only |
| LLM | SmolLM2 135M/360M/1.7B | missing | XNNPACK, MLX |
| Keypoints | RF-DETR Keypoint | XNNPACK, Core ML, MLX | XNNPACK, Core
ML |
| Text embeddings | multi-qa | one row, credited Core ML to mpnet |
split MiniLM / mpnet |
After the change every one of the 104 registry models is reachable from
a docs row and no cell claims a backend the registry does not ship.
### Introduces a breaking change?
- [ ] Yes
- [x] No
### Type of change
- [ ] Bug fix (change which fixes an issue)
- [ ] New feature (change which adds functionality)
- [x] Documentation update (improves or adds clarity to existing
documentation)
- [ ] Other (chores, tests, code style improvements etc.)
### Tested on
- [ ] iOS
- [ ] Android
### Testing instructions
Docs only. Backend cells were diffed against `models.ts` on `main` by a
script, and sizes for the new SmolLM2 and split LFM 2.5 rows come from
`HEAD` on the HuggingFace artifacts at `resolve/v0.10.0`.
### Related issues
#556
### Checklist
- [x] I have performed a self-review of my code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [x] I have updated the documentation accordingly
- [x] My changes generate no new warnings
Copy file name to clipboardExpand all lines: docs/docs/02-extensions/computer-vision/04-pose-and-keypoints.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -185,11 +185,11 @@ See [Worklets & Threading](../../03-core-and-advanced/06-worklets-and-threading.
185
185
186
186
The library provides ready-to-use pose and landmark detectors from the [Software Mansion HuggingFace Pose Estimation Collection](https://huggingface.co/collections/software-mansion/keypoint-detection), available in [`models.keypointDetection`](../../06-api-reference/variables/models.md#keypointdetection):
187
187
188
-
| Model Family | Variants | Keypoints Detected | Size Range | Supported Backends | Notes |
|**YOLO26 Pose**|[See](../../06-api-reference/variables/models.md#keypointdetectionyolo26_pose)|[`COCO_LANDMARKS`](../../06-api-reference/variables/COCO_LANDMARKS.md) (17 body keypoints) | 11.4 MB | XNNPACK (CPU), Core ML (Apple) | Real-time multi-person full-body skeletal tracking across multiple input resolutions. |
192
+
|**RF-DETR Keypoint**|[See](../../06-api-reference/variables/models.md#keypointdetectionrfdetr_keypoint)|[`COCO_LANDMARKS`](../../06-api-reference/variables/COCO_LANDMARKS.md) (17 body keypoints) | 138.6 MB – 140.9 MB | XNNPACK (CPU), Core ML (Apple) | High-accuracy body keypoint detection transformer for complex, occluded poses. |
193
193
194
194
:::tip Using Custom Models
195
195
To use your own fine-tuned pose or landmark detection `.pte` model, pass a [`KeypointDetectorModel`](../../06-api-reference/type-aliases/KeypointDetectorModel.md) configuration object to [`useKeypointDetector`](../../06-api-reference/functions/useKeypointDetector.md) or [`createKeypointDetector`](../../06-api-reference/functions/createKeypointDetector.md):
Copy file name to clipboardExpand all lines: docs/docs/02-extensions/natural-language/02-llm-chat-and-generation.md
+12-10Lines changed: 12 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -309,16 +309,18 @@ While [`useLLMChatSession`](../../06-api-reference/functions/useLLMChatSession.m
309
309
310
310
The library provides ready-to-use models from the [Software Mansion HuggingFace LLM Collection](https://huggingface.co/collections/software-mansion/llm-multimodal), pre-packaged with their tokenizers and Jinja chat templates in [`models.llm`](../../06-api-reference/variables/models.md#llm):
311
311
312
-
| Model Family | Variants | Size Range | Supported Backends | Notes |
To use your own fine-tuned LLM `.pte` model, pass an [`LLMModel`](../../06-api-reference/type-aliases/LLMModel.md) configuration object to [`useLLMChatSession`](../../06-api-reference/functions/useLLMChatSession.md) or [`createLLMChatSession`](../../06-api-reference/functions/createLLMChatSession.md):
0 commit comments