Fixing sklearn error when using RandomizedSearchCV with Interpret's LogisticRegression#315
Open
luisffranca wants to merge 2 commits into
Open
Fixing sklearn error when using RandomizedSearchCV with Interpret's LogisticRegression#315luisffranca wants to merge 2 commits into
luisffranca wants to merge 2 commits into
Conversation
Signed-off-by: Luis França <luis.franca@microsoft.com>
luisffranca
force-pushed
the
lamorinfranc/fix-sklearn-compatibility-issue
branch
from
January 14, 2022 20:22
48c52b5 to
b7a99af
Compare
paulbkoch
force-pushed
the
develop
branch
4 times, most recently
from
January 28, 2024 05:57
989a6a0 to
e6b74cd
Compare
paulbkoch
force-pushed
the
develop
branch
5 times, most recently
from
March 31, 2024 02:30
94cc351 to
385a66b
Compare
paulbkoch
force-pushed
the
develop
branch
3 times, most recently
from
August 1, 2024 09:36
a06b85c to
51be653
Compare
paulbkoch
force-pushed
the
develop
branch
3 times, most recently
from
September 1, 2024 12:36
f2f2a4c to
d7d5fd2
Compare
paulbkoch
force-pushed
the
develop
branch
2 times, most recently
from
September 26, 2024 21:15
4401ae3 to
05e3b26
Compare
paulbkoch
force-pushed
the
develop
branch
6 times, most recently
from
December 10, 2024 06:25
f8501a4 to
e0369a7
Compare
paulbkoch
force-pushed
the
develop
branch
4 times, most recently
from
December 26, 2024 01:22
50d4254 to
5e999b6
Compare
paulbkoch
force-pushed
the
develop
branch
2 times, most recently
from
January 15, 2025 11:54
63454ab to
976efe0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR fixes #301
No
get_paramsmethod was implemented in interpret.glassbox.linear.LogisticRegression which caused RandomizedSearchCV to fail.With this fix,
get_paramsandset_paramsare implemented and Interpret's LinearRegression and LogisticRegression can be used with RandomizedSearchCV and other model selection options.