You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error is happening in runner._get_futures(). I think something goes wrong when the runner asks for more points then there are points left in sequence.
I mean that also if you have a bunch of sequence learners, you can directly combine and shuffle the sequences. Since all the values are predefined, balancing learner does not bring any advantage as far as I can tell.
Activity
andrenmelo commentedon Sep 4, 2019
The log is just
[('ask', 48)]
akhmerov commentedon Sep 4, 2019
As a temporary workaround you can use a single sequence learner (there's nothing to balance really).
andrenmelo commentedon Sep 4, 2019
Oh that was just a minimal example. In reality I have a bunch of sequence learners.
akhmerov commentedon Sep 4, 2019
I mean that also if you have a bunch of sequence learners, you can directly combine and shuffle the sequences. Since all the values are predefined, balancing learner does not bring any advantage as far as I can tell.
fix problem when learner has no more points for BalancingLearner, closes
basnijholt commentedon Sep 4, 2019
It should work with the fix in #214.
I will test a bit more.