eval.py 4.7 KB
Newer Older
R
root 已提交
1 2 3
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
4 5
import os
import numpy as np
6 7
import time
import sys
8 9
import paddle
import paddle.fluid as fluid
10
import reader_cv2 as reader
11 12
import argparse
import functools
13
import models
R
ruri 已提交
14
from utils.learning_rate import cosine_decay
15
from utils.utility import add_arguments, print_arguments
16
import math
17 18 19 20

parser = argparse.ArgumentParser(description=__doc__)
add_arg = functools.partial(add_arguments, argparser=parser)
# yapf: disable
21 22 23 24 25 26
add_arg('batch_size',       int,  256,                 "Minibatch size.")
add_arg('use_gpu',          bool, True,                "Whether to use GPU or not.")
add_arg('class_dim',        int,  1000,                "Class number.")
add_arg('image_shape',      str,  "3,224,224",         "Input image size")
add_arg('with_mem_opt',     bool, True,                "Whether to use memory optimization or not.")
add_arg('pretrained_model', str,  None,                "Whether to use pretrained model.")
27
add_arg('model',            str,  "SE_ResNeXt50_32x4d", "Set the network to use.")
28
add_arg('resize_short_size', int, 256,                "Set resize short size")
29 30 31
# yapf: enable

def eval(args):
32 33 34 35 36 37 38
    # parameters from arguments
    class_dim = args.class_dim
    model_name = args.model
    pretrained_model = args.pretrained_model
    with_memory_optimization = args.with_mem_opt
    image_shape = [int(m) for m in args.image_shape.split(",")]

39
    model_list = [m for m in dir(models) if "__" not in m]
40 41 42
    assert model_name in model_list, "{} is not in lists: {}".format(args.model,
                                                                     model_list)

43 44 45
    image = fluid.layers.data(name='image', shape=image_shape, dtype='float32')
    label = fluid.layers.data(name='label', shape=[1], dtype='int64')

46 47 48
    # model definition
    model = models.__dict__[model_name]()

S
shippingwang 已提交
49
    if model_name == "GoogleNet":
50 51 52 53 54 55 56 57 58 59 60 61 62
        out0, out1, out2 = model.net(input=image, class_dim=class_dim)
        cost0 = fluid.layers.cross_entropy(input=out0, label=label)
        cost1 = fluid.layers.cross_entropy(input=out1, label=label)
        cost2 = fluid.layers.cross_entropy(input=out2, label=label)
        avg_cost0 = fluid.layers.mean(x=cost0)
        avg_cost1 = fluid.layers.mean(x=cost1)
        avg_cost2 = fluid.layers.mean(x=cost2)

        avg_cost = avg_cost0 + 0.3 * avg_cost1 + 0.3 * avg_cost2
        acc_top1 = fluid.layers.accuracy(input=out0, label=label, k=1)
        acc_top5 = fluid.layers.accuracy(input=out0, label=label, k=5)
    else:
        out = model.net(input=image, class_dim=class_dim)
63 64
        cost, pred = fluid.layers.softmax_with_cross_entropy(
            out, label, return_softmax=True)
65
        avg_cost = fluid.layers.mean(x=cost)
66 67
        acc_top1 = fluid.layers.accuracy(input=pred, label=label, k=1)
        acc_top5 = fluid.layers.accuracy(input=pred, label=label, k=5)
68 69 70

    test_program = fluid.default_main_program().clone(for_test=True)

S
shippingwang 已提交
71
    fetch_list = [avg_cost.name, acc_top1.name, acc_top5.name]
72
    if with_memory_optimization:
S
shippingwang 已提交
73 74
        fluid.memory_optimize(
            fluid.default_main_program(), skip_opt_set=set(fetch_list))
75 76 77

    place = fluid.CUDAPlace(0) if args.use_gpu else fluid.CPUPlace()
    exe = fluid.Executor(place)
78
    exe.run(fluid.default_startup_program())
79 80


R
ruri 已提交
81
    fluid.io.load_persistables(exe, pretrained_model)
82

83
    val_reader = paddle.batch(reader.val(settings=args), batch_size=args.batch_size)
84 85 86
    feeder = fluid.DataFeeder(place=place, feed_list=[image, label])

    test_info = [[], [], []]
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
    cnt = 0
    for batch_id, data in enumerate(val_reader()):
        t1 = time.time()
        loss, acc1, acc5 = exe.run(test_program,
                                   fetch_list=fetch_list,
                                   feed=feeder.feed(data))
        t2 = time.time()
        period = t2 - t1
        loss = np.mean(loss)
        acc1 = np.mean(acc1)
        acc5 = np.mean(acc5)
        test_info[0].append(loss * len(data))
        test_info[1].append(acc1 * len(data))
        test_info[2].append(acc5 * len(data))
        cnt += len(data)
        if batch_id % 10 == 0:
            print("Testbatch {0},loss {1}, "
                  "acc1 {2},acc5 {3},time {4}".format(batch_id, \
105
                  "%.5f"%loss,"%.5f"%acc1, "%.5f"%acc5, \
106
                  "%2.2f sec" % period))
107 108
            sys.stdout.flush()

109 110 111
    test_loss = np.sum(test_info[0]) / cnt
    test_acc1 = np.sum(test_info[1]) / cnt
    test_acc5 = np.sum(test_info[2]) / cnt
112

113
    print("Test_loss {0}, test_acc1 {1}, test_acc5 {2}".format(
114
        "%.5f"%test_loss, "%.5f"%test_acc1, "%.5f"%test_acc5))
115 116 117
    sys.stdout.flush()


118
def main():
119 120 121
    args = parser.parse_args()
    print_arguments(args)
    eval(args)
122 123 124 125


if __name__ == '__main__':
    main()