Closed shreyash-Pandey-Katni closed 1 year ago
data_loader.get_counter_examples() was called before the Loader was called for iteration because of that __iter__ was not called in the loader. This made the self.iterator as None because its value is allocated in the __iter__ method
data_loader.get_counter_examples()
__iter__
self.iterator
Fixed #256
data_loader.get_counter_examples()
was called before the Loader was called for iteration because of that__iter__
was not called in the loader. This made theself.iterator
as None because its value is allocated in the__iter__
methodFixed #256