imagenet_dataset.py 1.3 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):
C
cuicheng01 已提交
24
    def _load_anno(self, seed=None):
F
Felix 已提交
25 26 27 28
        assert os.path.exists(self._cls_path)
        assert os.path.exists(self._img_root)
        self.images = []
        self.labels = []
C
cuicheng01 已提交
29

F
Felix 已提交
30 31
        with open(self._cls_path) as fd:
            lines = fd.readlines()
C
cuicheng01 已提交
32 33
            if seed is not None:
                np.random.RandomState(seed).shuffle(lines)
F
Felix 已提交
34 35 36
            for l in lines:
                l = l.strip().split(" ")
                self.images.append(os.path.join(self._img_root, l[0]))
G
gaotingquan 已提交
37
                self.labels.append(np.int64(l[1]))
F
Felix 已提交
38
                assert os.path.exists(self.images[-1])