Closed SleepyBag closed 1 year ago
This PR:
The only change in code : ll = np.max(indices[preds[job]], initial=0) + 1 -> ll = np.max(indices[preds[job]], initial=-1) + 1
ll = np.max(indices[preds[job]], initial=0) + 1
ll = np.max(indices[preds[job]], initial=-1) + 1
@SleepyBag thanks for opening the issue and this PR. I'll have a look at it later tonight!
Nice catch, and thanks for the PR @SleepyBag!
This PR:
The only change in code :
ll = np.max(indices[preds[job]], initial=0) + 1
->ll = np.max(indices[preds[job]], initial=-1) + 1