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

Change Low Sensitivity Alert to noncore #2418

Merged
merged 6 commits into from Jun 22, 2021
Merged
Show file tree
Hide file tree
Changes from all 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/release_notes.rst
Expand Up @@ -15,6 +15,7 @@ Release Notes
* Unpinned PyZMQ version in requirements.txt :pr:`2389`
* Uncapping LightGBM version in requirements.txt :pr:`2405`
* Updated minimum version of plotly :pr:`2415`
* Removed ``SensitivityLowAlert`` objective from core objectives :pr:`2418`
* Documentation Changes
* Fixed lead scoring weights in the demos documentation :pr:`2315`
* Fixed start page code and description dataset naming discrepancy :pr:`2370`
Expand Down
1 change: 1 addition & 0 deletions evalml/objectives/utils.py
Expand Up @@ -26,6 +26,7 @@ def get_non_core_objectives():
objectives.MAPE,
objectives.MeanSquaredLogError,
objectives.RootMeanSquaredLogError,
objectives.SensitivityLowAlert,
]


Expand Down
2 changes: 1 addition & 1 deletion evalml/tests/objective_tests/test_objectives.py
Expand Up @@ -99,7 +99,7 @@ def test_can_get_only_core_and_all_objective_names():

def test_get_core_objectives_types():
assert len(get_core_objectives(ProblemTypes.MULTICLASS)) == 13
assert len(get_core_objectives(ProblemTypes.BINARY)) == 8
assert len(get_core_objectives(ProblemTypes.BINARY)) == 7
assert len(get_core_objectives(ProblemTypes.REGRESSION)) == 7
assert len(get_core_objectives(ProblemTypes.TIME_SERIES_REGRESSION)) == 7

Expand Down