eval.py 5.4 KB
Newer Older
Q
qingqing01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# 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.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
K
Kaipeng Deng 已提交
18

M
Manuel Garcia 已提交
19 20 21
import os
import sys

Q
qingqing01 已提交
22 23
# add python path of PadleDetection to sys.path
parent_path = os.path.abspath(os.path.join(__file__, *(['..'] * 2)))
24
sys.path.insert(0, parent_path)
Q
qingqing01 已提交
25

G
Guanghua Yu 已提交
26 27 28 29
# ignore warning log
import warnings
warnings.filterwarnings('ignore')

K
Kaipeng Deng 已提交
30 31 32
import paddle

from ppdet.core.workspace import load_config, merge_config
H
houj04 已提交
33
from ppdet.utils.check import check_gpu, check_npu, check_xpu, check_version, check_config
W
wangxinxin08 已提交
34
from ppdet.utils.cli import ArgsParser, merge_args
K
Kaipeng Deng 已提交
35
from ppdet.engine import Trainer, init_parallel_env
S
shangliang Xu 已提交
36
from ppdet.metrics.coco_utils import json_eval_results
37
from ppdet.slim import build_slim_model
Q
qingqing01 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51

from ppdet.utils.logger import setup_logger
logger = setup_logger('eval')


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

    parser.add_argument(
W
wangxinxin08 已提交
52 53 54 55
        '--json_eval',
        action='store_true',
        default=False,
        help='Whether to re eval with already exists bbox.json or mask.json')
Q
qingqing01 已提交
56

57 58 59 60 61 62
    parser.add_argument(
        "--slim_config",
        default=None,
        type=str,
        help="Configuration file of slim method.")

W
wangxinxin08 已提交
63 64 65 66 67 68
    # TODO: bias should be unified
    parser.add_argument(
        "--bias",
        action="store_true",
        help="whether add bias or not while getting w and h")

69 70 71 72 73
    parser.add_argument(
        "--classwise",
        action="store_true",
        help="whether per-category AP and draw P-R Curve or not.")

74 75 76 77 78 79
    parser.add_argument(
        '--save_prediction_only',
        action='store_true',
        default=False,
        help='Whether to save the evaluation results only')

S
shangliang Xu 已提交
80 81 82 83 84 85
    parser.add_argument(
        "--amp",
        action='store_true',
        default=False,
        help="Enable auto mixed precision eval.")

86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
    # for smalldet slice_infer
    parser.add_argument(
        "--slice_infer",
        action='store_true',
        help="Whether to slice the image and merge the inference results for small object detection."
    )
    parser.add_argument(
        '--slice_size',
        nargs='+',
        type=int,
        default=[640, 640],
        help="Height of the sliced image.")
    parser.add_argument(
        "--overlap_ratio",
        nargs='+',
        type=float,
        default=[0.25, 0.25],
        help="Overlap height ratio of the sliced image.")
    parser.add_argument(
        "--combine_method",
        type=str,
        default='nms',
        help="Combine method of the sliced images' detection results, choose in ['nms', 'nmm', 'concat']."
    )
    parser.add_argument(
        "--match_threshold",
        type=float,
        default=0.6,
        help="Combine method matching threshold.")
    parser.add_argument(
        "--match_metric",
        type=str,
F
Feng Ni 已提交
118
        default='ios',
119
        help="Combine method matching metric, choose in ['iou', 'ios'].")
Q
qingqing01 已提交
120 121 122 123
    args = parser.parse_args()
    return args


K
Kaipeng Deng 已提交
124
def run(FLAGS, cfg):
S
shangliang Xu 已提交
125 126 127 128 129 130 131 132 133 134 135
    if FLAGS.json_eval:
        logger.info(
            "In json_eval mode, PaddleDetection will evaluate json files in "
            "output_eval directly. And proposal.json, bbox.json and mask.json "
            "will be detected by default.")
        json_eval_results(
            cfg.metric,
            json_directory=FLAGS.output_eval,
            dataset=cfg['EvalDataset'])
        return

K
Kaipeng Deng 已提交
136 137 138
    # init parallel environment if nranks > 1
    init_parallel_env()

139
    # build trainer
K
Kaipeng Deng 已提交
140 141 142
    trainer = Trainer(cfg, mode='eval')

    # load weights
K
Kaipeng Deng 已提交
143
    trainer.load_weights(cfg.weights)
K
Kaipeng Deng 已提交
144 145

    # training
146 147 148 149 150 151 152 153 154
    if FLAGS.slice_infer:
        trainer.evaluate_slice(
            slice_size=FLAGS.slice_size,
            overlap_ratio=FLAGS.overlap_ratio,
            combine_method=FLAGS.combine_method,
            match_threshold=FLAGS.match_threshold,
            match_metric=FLAGS.match_metric)
    else:
        trainer.evaluate()
Q
qingqing01 已提交
155 156 157 158 159


def main():
    FLAGS = parse_args()
    cfg = load_config(FLAGS.config)
W
wangxinxin08 已提交
160
    merge_args(cfg, FLAGS)
Q
qingqing01 已提交
161
    merge_config(FLAGS.opt)
162

163 164 165 166
    # disable npu in config by default
    if 'use_npu' not in cfg:
        cfg.use_npu = False

H
houj04 已提交
167 168 169 170
    # disable xpu in config by default
    if 'use_xpu' not in cfg:
        cfg.use_xpu = False

171 172 173 174
    if cfg.use_gpu:
        place = paddle.set_device('gpu')
    elif cfg.use_npu:
        place = paddle.set_device('npu')
H
houj04 已提交
175 176
    elif cfg.use_xpu:
        place = paddle.set_device('xpu')
177 178
    else:
        place = paddle.set_device('cpu')
179

180
    if FLAGS.slim_config:
181 182
        cfg = build_slim_model(cfg, FLAGS.slim_config, mode='eval')

Q
qingqing01 已提交
183 184
    check_config(cfg)
    check_gpu(cfg.use_gpu)
185
    check_npu(cfg.use_npu)
H
houj04 已提交
186
    check_xpu(cfg.use_xpu)
Q
qingqing01 已提交
187 188
    check_version()

K
Kaipeng Deng 已提交
189
    run(FLAGS, cfg)
Q
qingqing01 已提交
190 191 192 193


if __name__ == '__main__':
    main()