@@ -11,6 +11,7 @@ class BaseDataset(TransformMixin, UniformPartMixin, AnnotationsReadMixin):
def __init__(self, *args, prepare, center_crop_on_val: bool = True, **kwargs):
super().__init__(*args, **kwargs)
+ raise NotImplementedError("YOU SHOULD NOT USE ME!")
self.prepare = prepare
def augment(self, im):