imagenet_dataset.py 2.9 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):
24 25 26 27
    """ImageNetDataset

    Args:
        image_root (str): image root, path to `ILSVRC2012`
H
add xbm  
HydrogenSulfate 已提交
28
        cls_label_path (str): path to annotation file `train_list.txt` or `val_list.txt`
29 30 31 32
        transform_ops (list, optional): list of transform op(s). Defaults to None.
        delimiter (str, optional): delimiter. Defaults to None.
        relabel (bool, optional): whether do relabel when original label do not starts from 0 or are discontinuous. Defaults to False.
    """
H
add xbm  
HydrogenSulfate 已提交
33

H
HydrogenSulfate 已提交
34 35 36 37
    def __init__(self,
                 image_root,
                 cls_label_path,
                 transform_ops=None,
H
HydrogenSulfate 已提交
38 39
                 delimiter=None,
                 relabel=False):
W
weishengyu 已提交
40
        self.delimiter = delimiter if delimiter is not None else " "
H
HydrogenSulfate 已提交
41
        self.relabel = relabel
H
HydrogenSulfate 已提交
42 43
        super(ImageNetDataset, self).__init__(image_root, cls_label_path,
                                              transform_ops)
W
weishengyu 已提交
44

C
cuicheng01 已提交
45
    def _load_anno(self, seed=None):
H
HydrogenSulfate 已提交
46 47 48 49
        assert os.path.exists(
            self._cls_path), f"path {self._cls_path} does not exist."
        assert os.path.exists(
            self._img_root), f"path {self._img_root} does not exist."
F
Felix 已提交
50 51
        self.images = []
        self.labels = []
C
cuicheng01 已提交
52

F
Felix 已提交
53 54
        with open(self._cls_path) as fd:
            lines = fd.readlines()
H
HydrogenSulfate 已提交
55 56 57 58 59 60 61 62 63 64
            if self.relabel:
                label_set = set()
                for line in lines:
                    line = line.strip().split(self.delimiter)
                    label_set.add(np.int64(line[1]))
                label_map = {
                    oldlabel: newlabel
                    for newlabel, oldlabel in enumerate(label_set)
                }

C
cuicheng01 已提交
65 66
            if seed is not None:
                np.random.RandomState(seed).shuffle(lines)
H
HydrogenSulfate 已提交
67 68 69
            for line in lines:
                line = line.strip().split(self.delimiter)
                self.images.append(os.path.join(self._img_root, line[0]))
H
HydrogenSulfate 已提交
70 71 72 73
                if self.relabel:
                    self.labels.append(label_map[np.int64(line[1])])
                else:
                    self.labels.append(np.int64(line[1]))
H
HydrogenSulfate 已提交
74
                assert os.path.exists(self.images[
L
leozhang0912 已提交
75
                    -1]), f"path {self.images[-1]} does not exist."