Closed cthoyt closed 2 years ago
Merging #36 (333260c) into main (f53f77f) will increase coverage by
0.00%
. The diff coverage is100.00%
.
@@ Coverage Diff @@
## main #36 +/- ##
=======================================
Coverage 99.77% 99.77%
=======================================
Files 16 16
Lines 874 878 +4
=======================================
+ Hits 872 876 +4
Misses 2 2
Impacted Files | Coverage Δ | |
---|---|---|
rexmex/metrics/classification.py | 100.00% <ø> (ø) |
|
rexmex/utils.py | 100.00% <100.00%> (ø) |
|
tests/unit/test_metrics.py | 100.00% <100.00%> (ø) |
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 f53f77f...333260c. Read the comment docs.
This is awesome.
Summary
Similarly to #35, this PR adds an additional annotation for functions that need to be binarized.
Changes
binarize
torexmex.utils.Annotator.annotate
. This has a default ofFalse
, since most functions do not need to be binarized.binarize=True
on the functions that were binarized in therexmex.metricset.ClassificationMetricSet.__init__
Future outlook
This improvement will enable the later implementation of automated collection and processing of metric functions to improve the
rexmex.metricset.ClassificationMetricSet
class.