Skip to content

Commit 8c01e09

Browse files
committed
repair unittest
1 parent 2728dfb commit 8c01e09

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGE_LOG.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Change Log 0.1.10
22
-----------------
33

4-
- Added (aggregative) bootstrap for deriving confidence regions (confidence intervals, ellipses in the simplex, or
4+
- Added aggregative bootstrap for deriving confidence regions (confidence intervals, ellipses in the simplex, or
55
ellipses in the CLR space). This method is efficient as it leverages the two-phases of the aggregative quantifiers.
66
This method applies resampling only to the aggregation phase, thus avoiding to train many quantifiers, or
77
classify multiple times the instances of a sample. See the new example no. 15.

quapy/method/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import method.confidence
1+
from . import confidence
22
from . import base
33
from . import aggregative
44
from . import non_aggregative
@@ -23,7 +23,7 @@
2323
aggregative.KDEyML,
2424
aggregative.KDEyCS,
2525
aggregative.KDEyHD,
26-
method.confidence.BayesianCC
26+
confidence.BayesianCC
2727
}
2828

2929
BINARY_METHODS = {
@@ -46,7 +46,7 @@
4646
aggregative.KDEyML,
4747
aggregative.KDEyCS,
4848
aggregative.KDEyHD,
49-
method.confidence.BayesianCC
49+
confidence.BayesianCC
5050
}
5151

5252
NON_AGGREGATIVE_METHODS = {

0 commit comments

Comments
 (0)