eval.py 3.4 KB
Newer Older
F
FDInSky 已提交
1 2 3
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
4 5 6 7 8 9
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 已提交
10 11 12 13 14 15
import time
# ignore numba warning
import warnings
warnings.filterwarnings('ignore')
import random
import numpy as np
W
wangxinxin08 已提交
16 17
import paddle
from paddle.distributed import ParallelEnv
F
FDInSky 已提交
18 19 20
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 已提交
21
from ppdet.utils.eval_utils import get_infer_results, eval_results
F
FDInSky 已提交
22
from ppdet.data.reader import create_reader
23
from ppdet.utils.checkpoint import load_dygraph_ckpt, save_dygraph_ckpt
W
wangguanzhong 已提交
24 25 26 27
import logging
FORMAT = '%(asctime)s-%(levelname)s: %(message)s'
logging.basicConfig(level=logging.INFO, format=FORMAT)
logger = logging.getLogger(__name__)
F
FDInSky 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51


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


def run(FLAGS, cfg):

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

W
wangxinxin08 已提交
54
    # Init Model
55
    model = load_dygraph_ckpt(model, ckpt=cfg.weights)
F
FDInSky 已提交
56

W
wangxinxin08 已提交
57
    # Data Reader
F
FDInSky 已提交
58 59 60 61
    if FLAGS.use_gpu:
        devices_num = 1
    else:
        devices_num = int(os.environ.get('CPU_NUM', 1))
K
Kaipeng Deng 已提交
62 63
    eval_reader = create_reader(
        cfg.EvalDataset, cfg.EvalReader, devices_num=devices_num)
F
FDInSky 已提交
64 65 66

    # Run Eval
    outs_res = []
W
wangguanzhong 已提交
67 68
    start_time = time.time()
    sample_num = 0
F
FDInSky 已提交
69
    for iter_id, data in enumerate(eval_reader()):
W
wangxinxin08 已提交
70
        # forward
F
FDInSky 已提交
71
        model.eval()
72
        outs = model(data, cfg['EvalReader']['inputs_def']['fields'], 'infer')
F
FDInSky 已提交
73 74
        outs_res.append(outs)

W
wangxinxin08 已提交
75
        # log
W
wangguanzhong 已提交
76 77 78
        sample_num += len(data)
        if iter_id % 100 == 0:
            logger.info("Eval iter: {}".format(iter_id))
F
FDInSky 已提交
79

W
wangguanzhong 已提交
80 81 82
    cost_time = time.time() - start_time
    logger.info('Total sample number: {}, averge FPS: {}'.format(
        sample_num, sample_num / cost_time))
W
wangguanzhong 已提交
83 84 85 86

    eval_type = ['bbox']
    if getattr(cfg, 'MaskHead', None):
        eval_type.append('mask')
W
wangxinxin08 已提交
87
    # Metric
W
wangguanzhong 已提交
88 89 90 91 92 93 94 95 96 97 98
    # TODO: support other metric
    dataset = cfg.EvalReader['dataset']
    from ppdet.utils.coco_eval import get_category_info
    anno_file = dataset.get_anno()
    with_background = dataset.with_background
    use_default_label = dataset.use_default_label
    clsid2catid, catid2name = get_category_info(anno_file, with_background,
                                                use_default_label)

    infer_res = get_infer_results(outs_res, eval_type, clsid2catid)
    eval_results(infer_res, cfg.metric, anno_file)
F
FDInSky 已提交
99 100 101 102 103 104 105 106 107 108 109


def main():
    FLAGS = parse_args()

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

W
wangxinxin08 已提交
110 111 112 113
    place = paddle.CUDAPlace(ParallelEnv()
                             .dev_id) if cfg.use_gpu else paddle.CPUPlace()
    paddle.disable_static(place)
    run(FLAGS, cfg)
F
FDInSky 已提交
114 115 116 117


if __name__ == '__main__':
    main()