eval.py 4.4 KB
Newer Older
W
wangguanzhong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# 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.

F
FDInSky 已提交
15 16 17
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
18 19 20 21 22 23
import os, sys
# add python path of PadleDetection to sys.path
parent_path = os.path.abspath(os.path.join(__file__, *(['..'] * 2)))
if parent_path not in sys.path:
    sys.path.append(parent_path)

F
FDInSky 已提交
24 25 26 27 28 29
import time
# ignore numba warning
import warnings
warnings.filterwarnings('ignore')
import random
import numpy as np
W
wangxinxin08 已提交
30 31
import paddle
from paddle.distributed import ParallelEnv
F
FDInSky 已提交
32 33 34
from ppdet.core.workspace import load_config, merge_config, create
from ppdet.utils.check import check_gpu, check_version, check_config
from ppdet.utils.cli import ArgsParser
W
wangguanzhong 已提交
35
from ppdet.utils.eval_utils import get_infer_results, eval_results
W
wangguanzhong 已提交
36
from ppdet.utils.checkpoint import load_weight
W
wangguanzhong 已提交
37 38 39 40
import logging
FORMAT = '%(asctime)s-%(levelname)s: %(message)s'
logging.basicConfig(level=logging.INFO, format=FORMAT)
logger = logging.getLogger(__name__)
F
FDInSky 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60


def parse_args():
    parser = ArgsParser()
    parser.add_argument(
        "--output_eval",
        default=None,
        type=str,
        help="Evaluation directory, default is current directory.")

    parser.add_argument(
        '--json_eval', action='store_true', default=False, help='')

    parser.add_argument(
        '--use_gpu', action='store_true', default=False, help='')

    args = parser.parse_args()
    return args


G
Guanghua Yu 已提交
61
def run(FLAGS, cfg, place):
F
FDInSky 已提交
62 63 64

    # Model
    main_arch = cfg.architecture
65
    model = create(cfg.architecture)
F
FDInSky 已提交
66

W
wangxinxin08 已提交
67
    # Init Model
W
wangguanzhong 已提交
68
    load_weight(model, cfg.weights)
F
FDInSky 已提交
69

W
wangxinxin08 已提交
70
    # Data Reader
G
Guanghua Yu 已提交
71 72
    dataset = cfg.EvalDataset
    eval_loader, _ = create('EvalReader')(dataset, cfg['worker_num'], place)
F
FDInSky 已提交
73 74 75

    # Run Eval
    outs_res = []
W
wangguanzhong 已提交
76 77
    start_time = time.time()
    sample_num = 0
78
    im_info = []
G
Guanghua Yu 已提交
79
    for iter_id, data in enumerate(eval_loader):
W
wangxinxin08 已提交
80
        # forward
81
        fields = cfg['EvalReader']['inputs_def']['fields']
F
FDInSky 已提交
82
        model.eval()
83
        outs = model(data=data, input_def=fields, mode='infer')
W
wangguanzhong 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96
        for key, value in outs.items():
            outs[key] = value.numpy()
        im_shape = data[fields.index('im_shape')].numpy()
        scale_factor = data[fields.index('scale_factor')].numpy()
        im_id = data[fields.index('im_id')].numpy()
        im_info.append([im_shape, scale_factor, im_id])

        if 'mask' in outs and 'bbox' in outs:
            mask_resolution = model.mask_post_process.mask_resolution
            from ppdet.py_op.post_process import mask_post_process
            outs['mask'] = mask_post_process(outs, im_shape, scale_factor,
                                             mask_resolution)

F
FDInSky 已提交
97
        outs_res.append(outs)
W
wangxinxin08 已提交
98
        # log
W
wangguanzhong 已提交
99
        sample_num += im_shape.shape[0]
W
wangguanzhong 已提交
100 101
        if iter_id % 100 == 0:
            logger.info("Eval iter: {}".format(iter_id))
F
FDInSky 已提交
102

W
wangguanzhong 已提交
103 104 105
    cost_time = time.time() - start_time
    logger.info('Total sample number: {}, averge FPS: {}'.format(
        sample_num, sample_num / cost_time))
W
wangguanzhong 已提交
106

W
wangguanzhong 已提交
107 108 109 110
    eval_type = []
    if 'bbox' in outs:
        eval_type.append('bbox')
    if 'mask' in outs:
W
wangguanzhong 已提交
111
        eval_type.append('mask')
W
wangxinxin08 已提交
112
    # Metric
W
wangguanzhong 已提交
113 114 115
    # TODO: support other metric
    from ppdet.utils.coco_eval import get_category_info
    anno_file = dataset.get_anno()
G
Guanghua Yu 已提交
116
    with_background = cfg.with_background
W
wangguanzhong 已提交
117 118 119 120
    use_default_label = dataset.use_default_label
    clsid2catid, catid2name = get_category_info(anno_file, with_background,
                                                use_default_label)

W
wangguanzhong 已提交
121
    infer_res = get_infer_results(outs_res, eval_type, clsid2catid, im_info)
W
wangguanzhong 已提交
122
    eval_results(infer_res, cfg.metric, anno_file)
F
FDInSky 已提交
123 124 125 126 127 128 129 130 131 132 133


def main():
    FLAGS = parse_args()

    cfg = load_config(FLAGS.config)
    merge_config(FLAGS.opt)
    check_config(cfg)
    check_gpu(cfg.use_gpu)
    check_version()

G
Guanghua Yu 已提交
134 135 136
    place = 'gpu:{}'.format(ParallelEnv().dev_id) if cfg.use_gpu else 'cpu'
    place = paddle.set_device(place)
    run(FLAGS, cfg, place)
F
FDInSky 已提交
137 138 139 140


if __name__ == '__main__':
    main()