Skip to content

documentation: Correct documentation error #3283

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 16, 2022
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