eval.py 2.6 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 16 17 18

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

W
WuHaobo 已提交
19
import os
littletomatodonkey's avatar
littletomatodonkey 已提交
20 21 22 23 24
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 已提交
25 26
import argparse

L
littletomatodonkey 已提交
27
import paddle
W
WuHaobo 已提交
28 29 30 31 32 33
import paddle.fluid as fluid

import program

from ppcls.data import Reader
from ppcls.utils.config import get_config
W
WuHaobo 已提交
34
from ppcls.utils.save_load import init_model
35
from ppcls.utils.check import enable_static_mode
W
WuHaobo 已提交
36 37 38 39 40 41 42 43 44 45 46

from paddle.fluid.incubate.fleet.collective import fleet
from paddle.fluid.incubate.fleet.base import role_maker


def parse_args():
    parser = argparse.ArgumentParser("PaddleClas eval script")
    parser.add_argument(
        '-c',
        '--config',
        type=str,
W
WuHaobo 已提交
47
        default='./configs/eval.yaml',
W
WuHaobo 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
        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):
    role = role_maker.PaddleCloudRoleMaker(is_collective=True)
    fleet.init(role)

    config = get_config(args.config, overrides=args.override, show=True)
W
WuHaobo 已提交
65 66
    gpu_id = int(os.environ.get('FLAGS_selected_gpus', 0))
    place = fluid.CUDAPlace(gpu_id)
W
WuHaobo 已提交
67 68 69 70 71 72 73 74 75 76

    startup_prog = fluid.Program()
    valid_prog = fluid.Program()
    valid_dataloader, valid_fetchs = program.build(
        config, valid_prog, startup_prog, is_train=False)
    valid_prog = valid_prog.clone(for_test=True)

    exe = fluid.Executor(place)
    exe.run(startup_prog)

W
WuHaobo 已提交
77
    init_model(config, valid_prog, exe)
W
WuHaobo 已提交
78 79 80

    valid_reader = Reader(config, 'valid')()
    valid_dataloader.set_sample_list_generator(valid_reader, place)
W
WuHaobo 已提交
81 82

    compiled_valid_prog = program.compile(config, valid_prog)
S
refine  
shippingwang 已提交
83
    program.run(valid_dataloader, exe, compiled_valid_prog, valid_fetchs, -1,
84
                'eval', config)
W
WuHaobo 已提交
85 86 87


if __name__ == '__main__':
88
    enable_static_mode()
W
WuHaobo 已提交
89 90
    args = parse_args()
    main(args)