eval.py 4.5 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
    dataset = cfg.EvalDataset
K
Kaipeng Deng 已提交
72 73 74 75 76
    eval_loader = create('EvalReader')(dataset, cfg['worker_num'], place)

    extra_key = ['im_shape', 'scale_factor', 'im_id']
    if cfg.metric == 'VOC':
        extra_key += ['gt_bbox', 'gt_class', 'difficult']
F
FDInSky 已提交
77 78 79

    # Run Eval
    outs_res = []
W
wangguanzhong 已提交
80 81
    start_time = time.time()
    sample_num = 0
G
Guanghua Yu 已提交
82
    for iter_id, data in enumerate(eval_loader):
W
wangxinxin08 已提交
83
        # forward
F
FDInSky 已提交
84
        model.eval()
K
Kaipeng Deng 已提交
85 86 87
        outs = model(data, mode='infer')
        for key in extra_key:
            outs[key] = data[key]
W
wangguanzhong 已提交
88 89 90 91 92 93
        for key, value in outs.items():
            outs[key] = value.numpy()

        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
K
Kaipeng Deng 已提交
94 95
            outs['mask'] = mask_post_process(
                outs, outs['im_shape'], outs['scale_factor'], mask_resolution)
W
wangguanzhong 已提交
96

F
FDInSky 已提交
97
        outs_res.append(outs)
W
wangxinxin08 已提交
98
        # log
K
Kaipeng Deng 已提交
99
        sample_num += outs['im_id'].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
    # TODO: support other metric
G
Guanghua Yu 已提交
114
    with_background = cfg.with_background
W
wangguanzhong 已提交
115
    use_default_label = dataset.use_default_label
K
Kaipeng Deng 已提交
116 117 118 119 120 121 122 123 124 125 126 127
    if cfg.metric == 'COCO':
        from ppdet.utils.coco_eval import get_category_info
        clsid2catid, catid2name = get_category_info(
            dataset.get_anno(), with_background, use_default_label)

        infer_res = get_infer_results(outs_res, eval_type, clsid2catid)

    elif cfg.metric == 'VOC':
        from ppdet.utils.voc_eval import get_category_info
        clsid2catid, catid2name = get_category_info(
            dataset.get_label_list(), with_background, use_default_label)
        infer_res = outs_res
W
wangguanzhong 已提交
128

K
Kaipeng Deng 已提交
129
    eval_results(infer_res, cfg.metric, dataset)
F
FDInSky 已提交
130 131 132 133 134 135 136 137 138 139 140


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 已提交
141 142 143
    place = 'gpu:{}'.format(ParallelEnv().dev_id) if cfg.use_gpu else 'cpu'
    place = paddle.set_device(place)
    run(FLAGS, cfg, place)
F
FDInSky 已提交
144 145 146 147


if __name__ == '__main__':
    main()