eval.py 2.4 KB
Newer Older
W
WuHaobo 已提交
1
# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
W
WuHaobo 已提交
2
#
W
WuHaobo 已提交
3 4 5
# 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
W
WuHaobo 已提交
6 7 8
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
W
WuHaobo 已提交
9 10 11 12 13
# 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.
W
WuHaobo 已提交
14 15

from __future__ import absolute_import
16 17 18 19 20 21 22 23
import program
from ppcls.utils import logger
from ppcls.utils.save_load import init_model
from ppcls.utils.config import get_config
from ppcls.data import Reader
import paddle.fluid as fluid
import paddle
import argparse
W
WuHaobo 已提交
24 25 26
from __future__ import division
from __future__ import print_function

W
WuHaobo 已提交
27
import os
28 29 30 31
import sys
__dir__ = os.path.dirname(os.path.abspath(__file__))
sys.path.append(__dir__)
sys.path.append(os.path.abspath(os.path.join(__dir__, '..')))
W
WuHaobo 已提交
32 33 34 35 36 37 38 39


def parse_args():
    parser = argparse.ArgumentParser("PaddleClas eval script")
    parser.add_argument(
        '-c',
        '--config',
        type=str,
W
WuHaobo 已提交
40
        default='./configs/eval.yaml',
W
WuHaobo 已提交
41 42 43 44 45 46 47 48 49 50 51 52
        help='config file path')
    parser.add_argument(
        '-o',
        '--override',
        action='append',
        default=[],
        help='config options to be overridden')
    args = parser.parse_args()
    return args


def main(args):
53 54 55 56 57 58 59 60
    config = get_config(args.config, overrides=args.override, show=True)
    # assign place
    use_gpu = config.get("use_gpu", True)
    if use_gpu:
        gpu_id = fluid.dygraph.ParallelEnv().dev_id
        place = fluid.CUDAPlace(gpu_id)
    else:
        place = fluid.CPUPlace()
W
wqz960 已提交
61 62 63 64
    with fluid.dygraph.guard(place):
        strategy = fluid.dygraph.parallel.prepare_context()
        net = program.create_model(config.ARCHITECTURE, config.classes_num)
        net = fluid.dygraph.parallel.DataParallel(net, strategy)
65
        init_model(config, net, optimizer=None)
W
wqz960 已提交
66 67 68 69 70
        valid_dataloader = program.create_dataloader()
        valid_reader = Reader(config, 'valid')()
        valid_dataloader.set_sample_list_generator(valid_reader, place)
        net.eval()
        top1_acc = program.run(valid_dataloader, config, net, None, 0, 'valid')
W
WuHaobo 已提交
71

72

W
WuHaobo 已提交
73 74 75
if __name__ == '__main__':
    args = parse_args()
    main(args)