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
Copy file name to clipboardExpand all lines: articles/ai-foundry/how-to/healthcare-ai/deploy-cxrreportgen.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,18 +35,20 @@ The CXRReportGen model combines a radiology-specific image encoder with a large
35
35
36
36
## Prerequisites
37
37
38
-
To use the CXRReportGen model, you need the following prerequisites:
38
+
- An Azure subscription with a valid payment method. Free or trial Azure subscriptions won't work. If you don't have an Azure subscription, create a [paid Azure account](https://azure.microsoft.com/pricing/purchase-options/pay-as-you-go) to begin.
39
39
40
-
### A model deployment
40
+
- An [Azure AI Foundry project](../create-projects.md).
41
41
42
-
**Deployment to a self-hosted managed compute**
42
+
- Azure role-based access controls (Azure RBAC) are used to grant access to operations in Azure AI Foundry portal. To perform the steps in this article, your user account must be assigned the __Azure AI Developer role__ on the resource group. For more information on permissions, see [Role-based access control in Azure AI Foundry portal](../../concepts/rbac-ai-foundry.md).
43
43
44
-
CXRReportGen model can be deployed to our self-hosted managed inference solution, which allows you to customize and control all the details about how the model is served. You can deploy the model through the catalog UI (in [Azure AI Foundry](https://aka.ms/healthcaremodelstudio) or [Azure Machine Learning studio](https://ml.azure.com/model/catalog)) or deploy programmatically.
44
+
## Deploy the model to a managed compute
45
+
46
+
Deployment to a self-hosted managed inference solution allows you to customize and control all the details about how the model is served. You can deploy the model from its model card in the catalog UI of [Azure AI Foundry](https://aka.ms/healthcaremodelstudio) or [Azure Machine Learning studio](https://ml.azure.com/model/catalog) or [deploy it programmatically](../deploy-models-managed.md).
45
47
46
48
To __deploy the model through the UI__:
47
49
48
-
1. Go to the catalog.
49
-
1. Search for _CxrReportGen_ and select the model card.
50
+
1. Go to the model catalog.
51
+
1. Search for the _CxrReportGen_model and select its model card.
50
52
1. On the model's overview page, select __Deploy__.
51
53
1. If given the option to choose between serverless API deployment and deployment using a managed compute, select **Managed Compute**.
52
54
1. Fill out the details in the deployment window.
@@ -68,14 +70,14 @@ Consume the CXRReportGen report generation model as a REST API, using simple GET
In the deployment configuration, you get to choose the authentication method. This example uses Azure Machine Learning token-based authentication. For more authentication options, see the [corresponding documentation page](../../../machine-learning/how-to-setup-authentication.md). Also, note that the client is created from a configuration file that is created automatically for Azure Machine Learning virtual machines (VMs). Learn more on the [corresponding API documentation page](/python/api/azure-ai-ml/azure.ai.ml.mlclient#azure-ai-ml-mlclient-from-config).
80
+
In the deployment configuration, you get to choose an authentication method. This example uses Azure Machine Learning token-based authentication. For more authentication options, see the [corresponding documentation page](../../../machine-learning/how-to-setup-authentication.md). Also, the client is created from a configuration file that is created automatically for Azure Machine Learning virtual machines (VMs). Learn more on the [corresponding API documentation page](/python/api/azure-ai-ml/azure.ai.ml.mlclient#azure-ai-ml-mlclient-from-config).
79
81
80
82
### Make basic calls to the model
81
83
@@ -205,4 +207,4 @@ CXRReportGen is a versatile model that can be applied to a wide range of tasks a
205
207
## Related content
206
208
207
209
*[MedImageParse models for medical image segmentation](deploy-medimageparse.md)
208
-
*[MedImageInsight for grounded report generation](deploy-medimageinsight.md)
210
+
*[MedImageInsight for grounded report generation](deploy-medimageinsight.md)
Copy file name to clipboardExpand all lines: articles/ai-foundry/how-to/healthcare-ai/deploy-medimageinsight.md
+11-9Lines changed: 11 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,18 +33,20 @@ An embedding model is capable of serving as the basis of many different solution
33
33
34
34
## Prerequisites
35
35
36
-
To use the MedImageInsight model, you need the following prerequisites:
36
+
- An Azure subscription with a valid payment method. Free or trial Azure subscriptions won't work. If you don't have an Azure subscription, create a [paid Azure account](https://azure.microsoft.com/pricing/purchase-options/pay-as-you-go) to begin.
37
37
38
-
### A model deployment
38
+
- An [Azure AI Foundry project](../create-projects.md).
39
39
40
-
**Deployment to a self-hosted managed compute**
40
+
- Azure role-based access controls (Azure RBAC) are used to grant access to operations in Azure AI Foundry portal. To perform the steps in this article, your user account must be assigned the __Azure AI Developer role__ on the resource group. For more information on permissions, see [Role-based access control in Azure AI Foundry portal](../../concepts/rbac-ai-foundry.md).
41
41
42
-
MedImageInsight model can be deployed to our self-hosted managed inference solution, which allows you to customize and control all the details about how the model is served. You can deploy the model through the catalog UI (in [Azure AI Foundry](https://aka.ms/healthcaremodelstudio) or [Azure Machine Learning studio](https://ml.azure.com/model/catalog)) or deploy programmatically.
42
+
## Deploy the model to a managed compute
43
+
44
+
Deployment to a self-hosted managed inference solution allows you to customize and control all the details about how the model is served. You can deploy the model from its model card in the catalog UI of [Azure AI Foundry](https://aka.ms/healthcaremodelstudio) or [Azure Machine Learning studio](https://ml.azure.com/model/catalog) or [deploy it programmatically](../deploy-models-managed.md).
43
45
44
46
To __deploy the model through the UI__:
45
47
46
-
1. Go to the catalog.
47
-
1. Search for _MedImageInsight_ and select the model card.
48
+
1. Go to the model catalog.
49
+
1. Search for the _MedImageInsight_model and select its model card.
48
50
1. On the model's overview page, select __Deploy__.
49
51
1. If given the option to choose between serverless API deployment and deployment using a managed compute, select **Managed Compute**.
50
52
1. Fill out the details in the deployment window.
@@ -66,14 +68,14 @@ Consume the MedImageInsight embedding model as a REST API, using simple GET requ
In the deployment configuration, you get to choose the authentication method. This example uses Azure Machine Learning token-based authentication. For more authentication options, see the [corresponding documentation page](../../../machine-learning/how-to-setup-authentication.md). Also, note that the client is created from a configuration file that is created automatically for Azure Machine Learning virtual machines (VMs). Learn more on the [corresponding API documentation page](/python/api/azure-ai-ml/azure.ai.ml.mlclient#azure-ai-ml-mlclient-from-config).
78
+
In the deployment configuration, you get to choose an authentication method. This example uses Azure Machine Learning token-based authentication. For more authentication options, see the [corresponding documentation page](../../../machine-learning/how-to-setup-authentication.md). Also, the client is created from a configuration file that is created automatically for Azure Machine Learning virtual machines (VMs). Learn more on the [corresponding API documentation page](/python/api/azure-ai-ml/azure.ai.ml.mlclient#azure-ai-ml-mlclient-from-config).
77
79
78
80
### Make basic calls to the model
79
81
@@ -238,4 +240,4 @@ MedImageInsight is a versatile model that can be applied to a wide range of task
238
240
## Related content
239
241
240
242
*[MedImageParse models for medical image segmentation](deploy-medimageparse.md)
241
-
*[CXRReportGen for grounded report generation](./deploy-cxrreportgen.md)
243
+
*[CXRReportGen for grounded report generation](./deploy-cxrreportgen.md)
Copy file name to clipboardExpand all lines: articles/ai-foundry/how-to/healthcare-ai/deploy-medimageparse.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,8 @@ In this article, you learn how to deploy prompt-based image segmentation models,
26
26
27
27
# [MedImageParse](#tab/medimageparse)
28
28
29
+
## MedImageParse
30
+
29
31
Biomedical image analysis is crucial for discovery in fields like cell biology, pathology, and radiology. Traditionally, tasks such as segmentation, detection, and recognition of relevant objects are addressed separately, which can limit the overall effectiveness of image analysis. However, MedImageParse unifies these tasks through image parsing, by jointly conducting segmentation, detection, and recognition across numerous object types and imaging modalities. By applying the interdependencies among these subtasks—such as the semantic labels of segmented objects—the model enhances accuracy and enables novel applications. For example, it allows users to segment all relevant objects in an image, by using a simple text prompt. This approach eliminates the need to manually specify bounding boxes for each object.
30
32
31
33
The following image shows the conceptual architecture of the MedImageParse model where an image embedding model is augmented with a task adaptation layer to produce segmentation masks and textual descriptions.
@@ -199,10 +201,12 @@ MedImageParse and MedImageParse 3D models assume a simple single-turn interactio
199
201
200
202
### Request schema
201
203
202
-
# [MedImageParse](#tab/medimageparse)
204
+
203
205
204
206
Request payload is a JSON formatted string containing the following parameters:
0 commit comments