Fixing sklearn error when using RandomizedSearchCV with Interpret's LogisticRegression#315
Open
luisffranca wants to merge 2 commits intodevelopfrom
Open
Fixing sklearn error when using RandomizedSearchCV with Interpret's LogisticRegression#315luisffranca wants to merge 2 commits intodevelopfrom
luisffranca wants to merge 2 commits intodevelopfrom
Conversation
Signed-off-by: Luis França <luis.franca@microsoft.com>
48c52b5 to
b7a99af
Compare
989a6a0 to
e6b74cd
Compare
94cc351 to
385a66b
Compare
a06b85c to
51be653
Compare
f2f2a4c to
d7d5fd2
Compare
4401ae3 to
05e3b26
Compare
f8501a4 to
e0369a7
Compare
50d4254 to
5e999b6
Compare
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.