eval.py 5.9 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

C
chenxujun 已提交
22
# add python path of PaddleDetection to sys.path
Q
qingqing01 已提交
23
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
import paddle

32
from ppdet.core.workspace import create, load_config, merge_config
33
from ppdet.utils.check import check_gpu, check_npu, check_xpu, check_mlu, check_version, check_config
W
wangxinxin08 已提交
34
from ppdet.utils.cli import ArgsParser, merge_args
35
from ppdet.engine import Trainer, Trainer_ARSL, 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
    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,
133
            dataset=create('EvalDataset')())
S
shangliang Xu 已提交
134 135
        return

K
Kaipeng Deng 已提交
136 137
    # init parallel environment if nranks > 1
    init_parallel_env()
138 139 140 141 142 143 144 145 146 147 148
    ssod_method = cfg.get('ssod_method', None)
    if ssod_method == 'ARSL':
        # build ARSL_trainer
        trainer = Trainer_ARSL(cfg, mode='eval')
        # load ARSL_weights
        trainer.load_weights(cfg.weights, ARSL_eval=True)
    else:
        # build trainer
        trainer = Trainer(cfg, mode='eval')
        #load weights
        trainer.load_weights(cfg.weights)
K
Kaipeng Deng 已提交
149 150

    # training
151 152 153 154 155 156 157 158 159
    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 已提交
160 161 162 163 164


def main():
    FLAGS = parse_args()
    cfg = load_config(FLAGS.config)
W
wangxinxin08 已提交
165
    merge_args(cfg, FLAGS)
Q
qingqing01 已提交
166
    merge_config(FLAGS.opt)
167

168 169 170 171
    # disable npu in config by default
    if 'use_npu' not in cfg:
        cfg.use_npu = False

H
houj04 已提交
172 173 174 175
    # disable xpu in config by default
    if 'use_xpu' not in cfg:
        cfg.use_xpu = False

176 177 178
    if 'use_gpu' not in cfg:
        cfg.use_gpu = False

179 180 181 182
    # disable mlu in config by default
    if 'use_mlu' not in cfg:
        cfg.use_mlu = False

183 184 185 186
    if cfg.use_gpu:
        place = paddle.set_device('gpu')
    elif cfg.use_npu:
        place = paddle.set_device('npu')
H
houj04 已提交
187 188
    elif cfg.use_xpu:
        place = paddle.set_device('xpu')
189 190
    elif cfg.use_mlu:
        place = paddle.set_device('mlu')
191 192
    else:
        place = paddle.set_device('cpu')
193

194
    if FLAGS.slim_config:
195 196
        cfg = build_slim_model(cfg, FLAGS.slim_config, mode='eval')

Q
qingqing01 已提交
197 198
    check_config(cfg)
    check_gpu(cfg.use_gpu)
199
    check_npu(cfg.use_npu)
H
houj04 已提交
200
    check_xpu(cfg.use_xpu)
201
    check_mlu(cfg.use_mlu)
W
wangguanzhong 已提交
202
    check_version()
Q
qingqing01 已提交
203

K
Kaipeng Deng 已提交
204
    run(FLAGS, cfg)
Q
qingqing01 已提交
205 206 207 208


if __name__ == '__main__':
    main()