Skip to content

Commit

Permalink
repair unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMoreo committed Nov 29, 2024
1 parent 2728dfb commit 8c01e09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGE_LOG.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Change Log 0.1.10
-----------------

- Added (aggregative) bootstrap for deriving confidence regions (confidence intervals, ellipses in the simplex, or
- Added aggregative bootstrap for deriving confidence regions (confidence intervals, ellipses in the simplex, or
ellipses in the CLR space). This method is efficient as it leverages the two-phases of the aggregative quantifiers.
This method applies resampling only to the aggregation phase, thus avoiding to train many quantifiers, or
classify multiple times the instances of a sample. See the new example no. 15.
Expand Down
6 changes: 3 additions & 3 deletions quapy/method/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import method.confidence
from . import confidence
from . import base
from . import aggregative
from . import non_aggregative
Expand All @@ -23,7 +23,7 @@
aggregative.KDEyML,
aggregative.KDEyCS,
aggregative.KDEyHD,
method.confidence.BayesianCC
confidence.BayesianCC
}

BINARY_METHODS = {
Expand All @@ -46,7 +46,7 @@
aggregative.KDEyML,
aggregative.KDEyCS,
aggregative.KDEyHD,
method.confidence.BayesianCC
confidence.BayesianCC
}

NON_AGGREGATIVE_METHODS = {
Expand Down

0 comments on commit 8c01e09

Please sign in to comment.