imagenet_dataset.py 1.6 KB
Newer Older
F
Felix 已提交
1
#   Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
F
Felix 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import print_function

import numpy as np
import os

F
Felix 已提交
20
from .common_dataset import CommonDataset
F
Felix 已提交
21 22


W
weishengyu 已提交
23
class ImageNetDataset(CommonDataset):
W
weishengyu 已提交
24 25 26 27 28 29 30 31 32
    def __init__(
            self,
            image_root,
            cls_label_path,
            transform_ops=None,
            delimiter=None):
        super(ImageNetDataset, self).__init__(image_root, cls_label_path, transform_ops)
        self.delimiter = delimiter if delimiter is not None else " "

C
cuicheng01 已提交
33
    def _load_anno(self, seed=None):
F
Felix 已提交
34 35 36 37
        assert os.path.exists(self._cls_path)
        assert os.path.exists(self._img_root)
        self.images = []
        self.labels = []
C
cuicheng01 已提交
38

F
Felix 已提交
39 40
        with open(self._cls_path) as fd:
            lines = fd.readlines()
C
cuicheng01 已提交
41 42
            if seed is not None:
                np.random.RandomState(seed).shuffle(lines)
F
Felix 已提交
43
            for l in lines:
W
weishengyu 已提交
44
                l = l.strip().split(self.delimiter)
F
Felix 已提交
45
                self.images.append(os.path.join(self._img_root, l[0]))
G
gaotingquan 已提交
46
                self.labels.append(np.int64(l[1]))
F
Felix 已提交
47
                assert os.path.exists(self.images[-1])