Skip to content

Commit ce4c000

Browse files
committed
solving unit tests
1 parent 1c733f3 commit ce4c000

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

TODO.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
- [TODO] adapt BayesianCC to WithConfidence interface
2+
- [TODO] document confidence
23
- [TODO] Test the return_type="index" in protocols and finish the "distributin_samples.py" example
34
- [TODO] Add EDy (an implementation is available at quantificationlib)
45
- [TODO] add ensemble methods SC-MQ, MC-SQ, MC-MQ

quapy/error.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,8 +363,8 @@ def __check_eps(eps=None):
363363

364364

365365
CLASSIFICATION_ERROR = {f1e, acce}
366-
QUANTIFICATION_ERROR = {mae, mnae, mrae, mnrae, mse, mkld, mnkld, mean_bias_binary}
367-
QUANTIFICATION_ERROR_SINGLE = {ae, nae, rae, nrae, se, kld, nkld, bias_binary}
366+
QUANTIFICATION_ERROR = {mae, mnae, mrae, mnrae, mse, mkld, mnkld}
367+
QUANTIFICATION_ERROR_SINGLE = {ae, nae, rae, nrae, se, kld, nkld}
368368
QUANTIFICATION_ERROR_SMOOTH = {kld, nkld, rae, nrae, mkld, mnkld, mrae}
369369
CLASSIFICATION_ERROR_NAMES = {func.__name__ for func in CLASSIFICATION_ERROR}
370370
QUANTIFICATION_ERROR_NAMES = {func.__name__ for func in QUANTIFICATION_ERROR}

0 commit comments

Comments
 (0)