eval.py 3.1 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
22
from ppdet.utils.checkpoint import load_dygraph_ckpt, save_dygraph_ckpt
W
wangguanzhong 已提交
23 24 25 26
import logging
FORMAT = '%(asctime)s-%(levelname)s: %(message)s'
logging.basicConfig(level=logging.INFO, format=FORMAT)
logger = logging.getLogger(__name__)
F
FDInSky 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46


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 已提交
47
def run(FLAGS, cfg, place):
F
FDInSky 已提交
48 49 50

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

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

W
wangxinxin08 已提交
56
    # Data Reader
G
Guanghua Yu 已提交
57 58
    dataset = cfg.EvalDataset
    eval_loader, _ = create('EvalReader')(dataset, cfg['worker_num'], place)
F
FDInSky 已提交
59 60 61

    # Run Eval
    outs_res = []
W
wangguanzhong 已提交
62 63
    start_time = time.time()
    sample_num = 0
G
Guanghua Yu 已提交
64
    for iter_id, data in enumerate(eval_loader):
W
wangxinxin08 已提交
65
        # forward
F
FDInSky 已提交
66
        model.eval()
67
        outs = model(data, cfg['EvalReader']['inputs_def']['fields'], 'infer')
F
FDInSky 已提交
68 69
        outs_res.append(outs)

W
wangxinxin08 已提交
70
        # log
W
wangguanzhong 已提交
71 72 73
        sample_num += len(data)
        if iter_id % 100 == 0:
            logger.info("Eval iter: {}".format(iter_id))
F
FDInSky 已提交
74

W
wangguanzhong 已提交
75 76 77
    cost_time = time.time() - start_time
    logger.info('Total sample number: {}, averge FPS: {}'.format(
        sample_num, sample_num / cost_time))
W
wangguanzhong 已提交
78 79 80 81

    eval_type = ['bbox']
    if getattr(cfg, 'MaskHead', None):
        eval_type.append('mask')
W
wangxinxin08 已提交
82
    # Metric
W
wangguanzhong 已提交
83 84 85
    # TODO: support other metric
    from ppdet.utils.coco_eval import get_category_info
    anno_file = dataset.get_anno()
G
Guanghua Yu 已提交
86
    with_background = cfg.with_background
W
wangguanzhong 已提交
87 88 89 90 91 92
    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 已提交
93 94 95 96 97 98 99 100 101 102 103


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 已提交
104 105 106
    place = 'gpu:{}'.format(ParallelEnv().dev_id) if cfg.use_gpu else 'cpu'
    place = paddle.set_device(place)
    run(FLAGS, cfg, place)
F
FDInSky 已提交
107 108 109 110


if __name__ == '__main__':
    main()