diff --git a/ppcls/data/dataset/multilabel_dataset.py b/ppcls/data/dataset/multilabel_dataset.py index 45dec10e32e6446fd1e85b5c2821ec499b6cbcb3..1f4adb730938b164fde4f0eb4dfa133b260079c7 100644 --- a/ppcls/data/dataset/multilabel_dataset.py +++ b/ppcls/data/dataset/multilabel_dataset.py @@ -32,7 +32,6 @@ from ppcls.utils import logger from .common_dataset import CommonDataset - class MultiLabelDataset(CommonDataset): def _load_anno(self): @@ -66,10 +65,3 @@ class MultiLabelDataset(CommonDataset): format(self.images[idx], ex)) rnd_idx = np.random.randint(self.__len__()) return self.__getitem__(rnd_idx) - - - - - - -