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
<!-- - IOU threshold values can't be changed. The current default value is 50%. -->
44
44
45
45
### Parameters
@@ -76,6 +76,12 @@ To start, register your input model in Azure Machine Learning and reference the
76
76
77
77
To generate RAI image dashboard model-debugging insights like model performance, data explorer, and model interpretability, and populate visualizations, use the same training and test datasets as for training your model. The datasets should be in `mltable` format and don't have to be, but can be the same dataset.
78
78
79
+
The following example shows the dataset schema for the image classification task type:
The component assembles the generated insights into a single Responsible AI image dashboard. There are two output ports:
102
102
103
103
- The `insights_pipeline_job.outputs.dashboard` port contains the completed `RAIVisionInsights` object.
104
104
- The `insights_pipeline_job.outputs.ux_json` port contains the data required to display a minimal dashboard.
105
105
106
106
### Pipeline job
107
107
108
-
To create the Responsible AI image dashboard, you can define the RAI components in a pipeline and submit the pipeline job.
108
+
To create the Responsible AI image dashboard, define the RAI components in a pipeline and submit the pipeline job.
109
109
110
110
# [YAML](#tab/yaml)
111
111
@@ -132,6 +132,8 @@ You can specify the pipeline in a YAML file, as in the following example.
132
132
enable_error_analysis: True
133
133
```
134
134
135
+
You can submit the pipeline by using the Azure CLI `az ml job create` command.
136
+
135
137
# [Python SDK](#tab/python)
136
138
137
139
The Responsible AI image dashboard uses the [Responsible AI Vision SDK for Python](https://github.com/microsoft/responsible-ai-toolbox/tree/main/responsibleai_vision).
@@ -166,13 +168,10 @@ And assemble the output:
166
168
rai_image_job.outputs.ux_json.mode = "upload"
167
169
```
168
170
171
+
To learn how to submit the pipeline by using the Python SDK, see the [AutoML Image Classification scenario with RAI Dashboard sample notebook](https://github.com/Azure/azureml-examples/tree/main/sdk/python/responsible-ai).
169
172
---
170
173
171
-
You can submit the RAI vision insights pipeline through one of the following methods:
172
-
173
-
-**Azure CLI:** You can submit the pipeline by using the Azure CLI `az ml job create` command.
174
-
-**Python SDK:** To learn how to submit the pipeline through Python, see the [AutoML Image Classification scenario with RAI Dashboard sample notebook](https://github.com/Azure/azureml-examples/tree/main/sdk/python/responsible-ai).
175
-
-**Azure Machine Learning studio UI**: You can use the RAI-vision insights component to [create and submit a pipeline from the Designer in Azure Machine Learning studio](how-to-create-component-pipelines-ui.md).
174
+
You can also use the **Designer** UI in Azure Machine Learning studio to [create and submit a RAI-vision insights component pipeline](how-to-create-component-pipelines-ui.md).
176
175
177
176
After you specify and submit the pipeline and it executes, the dashboard should appear in the Machine Learning studio in the registered model view.
178
177
@@ -182,7 +181,7 @@ Automated ML in Azure Machine Learning supports model training for computer visi
182
181
183
182
To generate Responsible AI insights for AutoML computer vision models, register your best AutoML model in the Azure Machine Learning workspace and run it through the Responsible AI vision insights pipeline. For more information, see [Set up AutoML to train computer vision models](how-to-auto-train-image-models.md).
184
183
185
-
For notebooks related to AutoML supported computer vision tasks, see [azureml-examples](https://github.com/Azure/azureml-examples/tree/main/sdk/python/jobs/automl-standalone-jobs).
184
+
For notebooks related to AutoML supported computer vision tasks, see [RAI vision dashboard and scorecard notebooks](https://github.com/Azure/azureml-examples/tree/main/sdk/python/responsible-ai/vision#directory-) and [automl-standalone-jobs](https://github.com/Azure/azureml-examples/tree/main/sdk/python/jobs/automl-standalone-jobs).
186
185
187
186
### AutoML-specific RAI vision insights parameters
0 commit comments