Skip to content

Commit f87df42

Browse files
committed
Fix links
1 parent 8f933b9 commit f87df42

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/docs/03-hooks/02-computer-vision/useInstanceSegmentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: useInstanceSegmentation
55
Instance segmentation is a computer vision technique that detects individual objects within an image and produces a per-pixel segmentation mask for each one. Unlike object detection (which only returns bounding boxes), instance segmentation provides precise object boundaries. React Native ExecuTorch offers a dedicated hook `useInstanceSegmentation` for this task.
66

77
:::warning
8-
It is recommended to use models provided by us, which are available at our [Hugging Face repository](https://huggingface.co/collections/software-mansion/instance-segmentation-68d0ea936cd0906843cbba7d).
8+
It is recommended to use models provided by us, which are available at our [Hugging Face repository](https://huggingface.co/collections/software-mansion/instance-segmentation).
99
:::
1010

1111
## API Reference

docs/docs/04-typescript-api/02-computer-vision/InstanceSegmentationModule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const segmentation = await InstanceSegmentationModule.fromModelName({
5454
Use [`fromCustomConfig`](../../06-api-reference/classes/InstanceSegmentationModule.md#fromcustomconfig) for custom-exported models with your own label map. It accepts:
5555

5656
- `modelSource` - Location of the model binary.
57-
- `config` - An [`InstanceSegmentationConfig`](../../06-api-reference/interfaces/InstanceSegmentationConfig.md) object with:
57+
- `config` - An [`InstanceSegmentationConfig`](../../06-api-reference/type-aliases/InstanceSegmentationConfig.md) object with:
5858
- `labelMap` - An enum-like object mapping class names to indices.
5959
- `preprocessorConfig` (optional) - Normalization parameters (`normMean`, `normStd`).
6060
- `postprocessorConfig` (optional) - Postprocessing settings (`applyNMS`).

0 commit comments

Comments
 (0)