The bug comes from this line:
|
draws = np.random.choice(a=range(unique_bnds.shape[0]), p = unique_bnds['cvg'] / self.num_trees, size=n) |
And I think why it happens it is because in this line of code: you intentionally set come cvg values to zero:
|
bnds.loc[bnds['cvg'] == 1/pred.shape[0],'cvg'] = 0 |
Do you have some insights on this?
The bug comes from this line:
arfpy/arfpy/arf.py
Line 313 in b5bf5de
And I think why it happens it is because in this line of code: you intentionally set come cvg values to zero:
arfpy/arfpy/arf.py
Line 224 in b5bf5de
Do you have some insights on this?