forked from moreo/QuaPy
bugfix in APP
This commit is contained in:
parent
2df89c83e8
commit
9af062937e
|
@ -257,8 +257,9 @@ class APP(AbstractStochasticSeededProtocol, OnLabelledCollectionProtocol):
|
|||
"""
|
||||
dimensions = self.data.n_classes
|
||||
s = F.prevalence_linspace(self.n_prevalences, repeats=1, smooth_limits_epsilon=self.smooth_limits_epsilon)
|
||||
eps = (s[1]-s[0])/2 # handling floating rounding
|
||||
s = [s] * (dimensions - 1)
|
||||
prevs = [p for p in itertools.product(*s, repeat=1) if (sum(p) <= 1.0)]
|
||||
prevs = [p for p in itertools.product(*s, repeat=1) if (sum(p) < (1.+eps))]
|
||||
prevs = np.asarray(prevs).reshape(len(prevs), -1)
|
||||
if self.repeats > 1:
|
||||
prevs = np.repeat(prevs, self.repeats, axis=0)
|
||||
|
|
Loading…
Reference in New Issue