Skip to content

Commit 0578351

Browse files
Merge pull request #239208 from lgayhardt/patch-161
Change enable_explanation to precompute_explanation
2 parents 1a5b0be + 992533a commit 0578351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/how-to-responsible-ai-vision-insights.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ The RAI vision insights component also accepts the following parameters:
9191
| `task_type` | Specifies whether the scenario of the model. | String |
9292
| `maximum_rows_for_test_dataset` | The maximum number of rows allowed in the test dataset, for performance reasons. | Integer, defaults to 5,000 |
9393
| `classes` | The full list of class labels in the training dataset. | Optional list of strings |
94-
| `enable_explanation` | Enable to generate an explanation for the model. | Boolean |
94+
| `precompute_explanation` | Enable to generate an explanation for the model. | Boolean |
9595
| `enable_error_analysis` | Enable to generate an error analysis for the model. | Boolean |
9696
| `use_model_dependency` | The Responsible AI environment doesn't include the model dependency, install the model dependency packages when set to True. | Boolean |
9797
| `use_conda` | Install the model dependency packages using conda if True, otherwise using pip. | Boolean |
@@ -122,7 +122,7 @@ After specifying and submitting the pipeline to Azure Machine Learning for execu
122122
target_column_name: ${{parent.inputs.target_column_name}}
123123
maximum_rows_for_test_dataset: 5000
124124
classes: '[“cat”, “dog”]'
125-
enable_explanation: True
125+
precompute_explanation: True
126126
enable_error_analysis: True
127127

128128
```

0 commit comments

Comments
 (0)