Closed falcaopetri closed 3 years ago
Merging #1202 (8dd58ce) into develop (1852319) will increase coverage by
0.02%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## develop #1202 +/- ##
===========================================
+ Coverage 90.40% 90.43% +0.02%
===========================================
Files 90 90
Lines 5077 5089 +12
===========================================
+ Hits 4590 4602 +12
Misses 487 487
Impacted Files | Coverage Δ | |
---|---|---|
yellowbrick/classifier/threshold.py | 98.71% <100.00%> (+0.10%) |
: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 1852319...8dd58ce. Read the comment docs.
Although documentation allows
DiscriminationThreshold(model, argmax=None)
, current implementation raises an exception since it assumesargmax
to be a string.I have made the following changes:
argmax
to beNone
(as already documented)argmax
is an invalid metric (similar to the check ofexclude
)argmax
argmax
andexclude
CONTRIBUTING.md
CHECKLIST
pytest
?