Closed pdamodaran closed 3 years ago
Merging #1181 (7ba262e) into develop (783069e) will increase coverage by
0.00%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## develop #1181 +/- ##
========================================
Coverage 90.42% 90.42%
========================================
Files 90 90
Lines 5076 5078 +2
========================================
+ Hits 4590 4592 +2
Misses 486 486
Impacted Files | Coverage Δ | |
---|---|---|
yellowbrick/model_selection/importances.py | 98.42% <100.00%> (+0.02%) |
:arrow_up: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update 783069e...7ba262e. Read the comment docs.
This PR fixes #1179 which reported a bug that caused a problem to occur when users set
stack=True
in the FeatureImportances vizualizer for a model that does not return acoef_
array in the shape of(n_classes, n_features)
. Whilestack=True
should not be used in these cases, the error the user saw was not informative and did not state what the real issue was.I have made the following changes: