Skip to content

Commit d700cb9

Browse files
authored
Merge pull request #3471 from ivantarapov/itarapov/mip3d_fixes
Documentation for MedImageParse 3D
2 parents 2fd1bfb + 8704b72 commit d700cb9

File tree

5 files changed

+287
-55
lines changed

5 files changed

+287
-55
lines changed

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

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to use CXRReportGen Healthcare AI Model with Azure AI Fou
55
ms.service: azure-ai-foundry
66
manager: scottpolly
77
ms.topic: how-to
8-
ms.date: 10/20/2024
8+
ms.date: 04/24/2025
99
ms.reviewer: itarapov
1010
reviewer: ivantarapov
1111
ms.author: mopeakande
@@ -35,18 +35,20 @@ The CXRReportGen model combines a radiology-specific image encoder with a large
3535

3636
## Prerequisites
3737

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.
3939

40-
### A model deployment
40+
- An [Azure AI Foundry project](../create-projects.md).
4141

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).
4343

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).
4547

4648
To __deploy the model through the UI__:
4749

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.
5052
1. On the model's overview page, select __Deploy__.
5153
1. If given the option to choose between serverless API deployment and deployment using a managed compute, select **Managed Compute**.
5254
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
6870

6971
```python
7072
from azure.ai.ml import MLClient
71-
from azure.identity import DeviceCodeCredential
73+
from azure.identity import DefaultAzureCredential
7274

7375
credential = DefaultAzureCredential()
7476

7577
ml_client_workspace = MLClient.from_config(credential)
7678
```
7779

78-
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).
7981

8082
### Make basic calls to the model
8183

@@ -204,5 +206,5 @@ CXRReportGen is a versatile model that can be applied to a wide range of tasks a
204206

205207
## Related content
206208

207-
* [MedImageParse for medical image segmentation](deploy-medimageparse.md)
208-
* [MedImageInsight for grounded report generation](deploy-medimageinsight.md)
209+
* [MedImageParse models for medical image segmentation](deploy-medimageparse.md)
210+
* [MedImageInsight for grounded report generation](deploy-medimageinsight.md)

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

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to use MedImageInsight Healthcare AI Model with Azure AI
55
ms.service: azure-ai-foundry
66
manager: scottpolly
77
ms.topic: how-to
8-
ms.date: 10/20/2024
8+
ms.date: 04/24/2025
99
ms.reviewer: itarapov
1010
reviewer: ivantarapov
1111
ms.author: mopeakande
@@ -33,18 +33,20 @@ An embedding model is capable of serving as the basis of many different solution
3333

3434
## Prerequisites
3535

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.
3737

38-
### A model deployment
38+
- An [Azure AI Foundry project](../create-projects.md).
3939

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).
4141

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).
4345

4446
To __deploy the model through the UI__:
4547

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.
4850
1. On the model's overview page, select __Deploy__.
4951
1. If given the option to choose between serverless API deployment and deployment using a managed compute, select **Managed Compute**.
5052
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
6668

6769
```python
6870
from azure.ai.ml import MLClient
69-
from azure.identity import DeviceCodeCredential
71+
from azure.identity import DefaultAzureCredential
7072

7173
credential = DefaultAzureCredential()
7274

7375
ml_client_workspace = MLClient.from_config(credential)
7476
```
7577

76-
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).
7779

7880
### Make basic calls to the model
7981

@@ -237,5 +239,5 @@ MedImageInsight is a versatile model that can be applied to a wide range of task
237239

238240
## Related content
239241

240-
* [MedImageParse for medical image segmentation](./deploy-medimageparse.md)
241-
* [CXRReportGen for grounded report generation](./deploy-cxrreportgen.md)
242+
* [MedImageParse models for medical image segmentation](deploy-medimageparse.md)
243+
* [CXRReportGen for grounded report generation](./deploy-cxrreportgen.md)

0 commit comments

Comments
 (0)