Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/sagemaker/clarify.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ def __init__(
label (str): Target attribute of the model required by bias metrics.
Specified as column name or index for CSV dataset or as JSONPath for JSONLines.
*Required parameter* except for when the input dataset does not contain the label.
Cannot be used at the same time as ``predicted_label``.
features (str): JSONPath for locating the feature columns for bias metrics if the
dataset format is JSONLines.
dataset_type (str): Format of the dataset. Valid values are ``"text/csv"`` for CSV,
Expand Down Expand Up @@ -103,7 +102,7 @@ def __init__(
predicted_label (str or int): Predicted label of the target attribute of the model
required for running bias analysis. Specified as column name or index for CSV data.
Clarify uses the predicted labels directly instead of making model inference API
calls. Cannot be used at the same time as ``label``.
calls.
excluded_columns (list[int] or list[str]): A list of names or indices of the columns
which are to be excluded from making model inference API calls.

Expand Down