The program is stuck at "There are 0 examples for label [my_label]" while iPETs are choosing examples per label for the next generation. This is because there is no condition ex.label == label in this line:
|
examples.extend(ex for ex in original_data if ex.label == label) |
causing the while loop len(examples) < examples_per_label[idx] to never break.
A possible solution is to use a conditional check to verify if there are any examples with the given label before attempting to extend the examples to break the loop.
Fan.
The program is stuck at "There are 0 examples for label [my_label]" while iPETs are choosing examples per label for the next generation. This is because there is no condition
ex.label == labelin this line:pet/pet/modeling.py
Line 743 in 21d32de
causing the while loop
len(examples) < examples_per_label[idx]to never break.A possible solution is to use a conditional check to verify if there are any examples with the given label before attempting to extend the
examplesto break the loop.Fan.