Skip to content

doc: fix typo of argument spelling in linear learner docstrings #733

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
Apr 3, 2019
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
2 changes: 1 addition & 1 deletion src/sagemaker/amazon/linear_learner.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def __init__(self, role, train_instance_count, train_instance_type, predictor_ty
normalize_label (bool): Normalizes the regression label to have a standard deviation of 1.0.
If set for classification, it will be ignored.
unbias_data (bool): If true, features are modified to have mean 0.0.
ubias_label (bool): If true, labels are modified to have mean 0.0.
unbias_label (bool): If true, labels are modified to have mean 0.0.
num_point_for_scaler (int): The number of data points to use for calculating the normalizing and
unbiasing terms.
margin (float): the margin for hinge_loss.
Expand Down