Skip to content

Commit 4731613

Browse files
committed
RAI CLI update
1 parent 20c8c8f commit 4731613

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: how-to
99
ms.reviewer: lagayhar
1010
ms.author: mithigpe
1111
author: minthigpen
12-
ms.date: 11/09/2022
12+
ms.date: 02/14/2024
1313
ms.custom: responsible-ml, devx-track-python
1414
---
1515

@@ -76,11 +76,13 @@ The constructor component also accepts the following parameters:
7676
| Parameter name | Description | Type |
7777
|---|---|---|
7878
| `title` | Brief description of the dashboard. | String |
79-
| `task_type` | Specifies whether the model is for classification or regression. | String, `classification` or `regression` |
79+
| `task_type` | Specifies whether the model is for classification, regression, or forecasting. | String, `classification`, `regression` or `forecasting` |
8080
| `target_column_name` | The name of the column in the input datasets, which the model is trying to predict. | String |
8181
| `maximum_rows_for_test_dataset` | The maximum number of rows allowed in the test dataset, for performance reasons. | Integer, defaults to 5,000 |
8282
| `categorical_column_names` | The columns in the datasets, which represent categorical data. | Optional list of strings<sup>1</sup> |
8383
| `classes` | The full list of class labels in the training dataset. | Optional list of strings<sup>1</sup> |
84+
| `feature_metadata`| Specifies additional information the dashboard may need depending on task type. For forecasting, this includes specifying which column is the `datetime` column and which column is the `time_series_id` column. For vision, this may include mean pixel value or location data of an image.| |
85+
| `use_model_dependency`| Specifies if the model requires a separate docker container to be served in due to conflicting dependencies with the RAI dashboard. For forecasting, this must be enabled. | Boolean |
8486

8587
<sup>1</sup> The lists should be supplied as a single JSON-encoded string for `categorical_column_names` and `classes` inputs.
8688

0 commit comments

Comments
 (0)