Skip to content
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

Update AutoClassificationSearch docstring with correct command #599

Merged
merged 5 commits into from Apr 8, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/changelog.rst
Expand Up @@ -10,6 +10,7 @@ Changelog
* Documentation Changes
* Fixed some sphinx warnings :pr:`593`
* Limit readthedocs formats to html and pdf, not epub :pr:`594`
* Fixed docstring for AutoClassificationSearch with correct command :pr:`599`
* Testing Changes
* Matched install commands of `check_latest_dependencies` test and it's GitHub action :pr:`578`
* Added Github app to auto assign PR author as assignee :pr:`477`
Expand Down
3 changes: 2 additions & 1 deletion evalml/automl/auto_classification_search.py
Expand Up @@ -49,7 +49,8 @@ def __init__(self,
Only applicable if patience is not None. Defaults to None.

allowed_model_families (list): The model families to search. By default searches over all
model families. Run evalml.list_model_families("classification") to see options.
model families. Run evalml.list_model_families("binary") to see options. Change `binary`
to `regression` or `multiclass` if your problem type is different.

cv: cross validation method to use. By default StratifiedKFold

Expand Down