eval.py 4.0 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.")

Q
qingqing01 已提交
86 87 88 89
    args = parser.parse_args()
    return args


K
Kaipeng Deng 已提交
90
def run(FLAGS, cfg):
S
shangliang Xu 已提交
91 92 93 94 95 96 97 98 99 100 101
    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 已提交
102 103 104
    # init parallel environment if nranks > 1
    init_parallel_env()

105
    # build trainer
K
Kaipeng Deng 已提交
106 107 108
    trainer = Trainer(cfg, mode='eval')

    # load weights
K
Kaipeng Deng 已提交
109
    trainer.load_weights(cfg.weights)
K
Kaipeng Deng 已提交
110 111 112

    # training
    trainer.evaluate()
Q
qingqing01 已提交
113 114 115 116 117


def main():
    FLAGS = parse_args()
    cfg = load_config(FLAGS.config)
W
wangxinxin08 已提交
118
    merge_args(cfg, FLAGS)
Q
qingqing01 已提交
119
    merge_config(FLAGS.opt)
120

121 122 123 124
    # disable npu in config by default
    if 'use_npu' not in cfg:
        cfg.use_npu = False

H
houj04 已提交
125 126 127 128
    # disable xpu in config by default
    if 'use_xpu' not in cfg:
        cfg.use_xpu = False

129 130 131 132
    if cfg.use_gpu:
        place = paddle.set_device('gpu')
    elif cfg.use_npu:
        place = paddle.set_device('npu')
H
houj04 已提交
133 134
    elif cfg.use_xpu:
        place = paddle.set_device('xpu')
135 136
    else:
        place = paddle.set_device('cpu')
137

138
    if FLAGS.slim_config:
139 140
        cfg = build_slim_model(cfg, FLAGS.slim_config, mode='eval')

Q
qingqing01 已提交
141 142
    check_config(cfg)
    check_gpu(cfg.use_gpu)
143
    check_npu(cfg.use_npu)
H
houj04 已提交
144
    check_xpu(cfg.use_xpu)
Q
qingqing01 已提交
145 146
    check_version()

K
Kaipeng Deng 已提交
147
    run(FLAGS, cfg)
Q
qingqing01 已提交
148 149 150 151


if __name__ == '__main__':
    main()