eval.py 2.9 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 21 22
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
from ppdet.utils.eval_utils import coco_eval_results
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 62 63 64 65
    if FLAGS.use_gpu:
        devices_num = 1
    else:
        devices_num = int(os.environ.get('CPU_NUM', 1))
    eval_reader = create_reader(cfg.EvalReader, devices_num=devices_num)

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

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

W
wangguanzhong 已提交
79 80 81
    cost_time = time.time() - start_time
    logger.info('Total sample number: {}, averge FPS: {}'.format(
        sample_num, sample_num / cost_time))
W
wangxinxin08 已提交
82
    # Metric
F
FDInSky 已提交
83 84
    coco_eval_results(
        outs_res,
W
wangguanzhong 已提交
85
        include_mask=True if getattr(cfg, 'MaskHead', None) else False,
F
FDInSky 已提交
86 87 88 89 90 91 92 93 94 95 96 97
        dataset=cfg['EvalReader']['dataset'])


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 已提交
98 99 100 101
    place = paddle.CUDAPlace(ParallelEnv()
                             .dev_id) if cfg.use_gpu else paddle.CPUPlace()
    paddle.disable_static(place)
    run(FLAGS, cfg)
F
FDInSky 已提交
102 103 104 105


if __name__ == '__main__':
    main()