Skip to content

Commit eba5260

Browse files
author
Ivan Tarapov
committed
Fix typo in MedImageParse 3D documentation and clarify index parameter usage in input_data object
1 parent 2185c63 commit eba5260

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/ai-foundry/how-to/healthcare-ai/deploy-medimageparse3d.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In this article, you learn how to deploy MedImageParse 3D as an online endpoint
2626

2727

2828
## MedImageParse 3D - prompt-based segmentation of medical images
29-
Similar to our [MedImageParse model](deploy-medimageparse.md) model, MedImageParse 3D uses a combination of a text prompt and medical image to create a segmentation mask. However, unlike MedImageParse, the MedImageParse 3D model takes in an entire 3D volume - which is a common way of representing the imaged area for cross-sectional imaging modalities like CT or MRI - and generates the 3-dimensional segmenatation mask.
29+
Similar to our [MedImageParse model](deploy-medimageparse.md) model, MedImageParse 3D uses a combination of a text prompt and a medical image to create a segmentation mask. However, unlike MedImageParse, the MedImageParse 3D model takes in an entire 3D volume - which is a common way of representing the imaged area for cross-sectional imaging modalities like CT or MRI - and generates the 3-dimensional segmentation mask.
3030

3131
## Prerequisites
3232

@@ -152,7 +152,7 @@ The `input_data` object contains the following fields:
152152
| Key | Type | Required/Default | Allowed values | Description |
153153
| ------------- | -------------- | :-----------------:| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
154154
| `columns` | `list[string]` | Yes | `"image"`, `"text"` | An object containing the strings mapping data to inputs passed to the model.|
155-
| `index` | `integer` | Yes | 0 - 256 | Count of inputs passed to the model. You're limited by how much data can be passed in a single POST request, which depends on the size of your images. Therefore, it's reasonable to keep this number in the dozens. |
155+
| `index` | `integer` | Yes | 0 | This parameter is used when multiple inputs are passed to the endpoint in one call. This model's endpoint wrapper does not use this parameter, so it should be set to 0. |
156156
| `data` | `list[list[string]]` | Yes | Base64 image + text prompt | The list contains the items passed to the model which is defined by the index parameter. Each item is a list of two strings. The order is defined by the `columns` parameter. The `text` string contains the prompt text. The `image` string is the input volume in NIfTI format encoded using base64 and decoded as utf-8 string. The input text is a string containing the target (e.g., organ) to be segmented. |
157157

158158
### Request example

0 commit comments

Comments
 (0)