train.py 9.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2018 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.

M
minqiyang 已提交
15
from __future__ import print_function
16 17
import argparse
import ast
M
minqiyang 已提交
18
import numpy as np
19 20
from PIL import Image
import os
M
minqiyang 已提交
21 22
import paddle
import paddle.fluid as fluid
23
from paddle.fluid.optimizer import AdamOptimizer
S
songyouwei 已提交
24
from paddle.fluid.dygraph.nn import Conv2D, Pool2D, Linear
M
minqiyang 已提交
25 26 27
from paddle.fluid.dygraph.base import to_variable


28 29 30 31 32 33
def parse_args():
    parser = argparse.ArgumentParser("Training for Mnist.")
    parser.add_argument(
        "--use_data_parallel",
        type=ast.literal_eval,
        default=False,
C
chengduo 已提交
34 35
        help="The flag indicating whether to use data parallel mode to train the model."
    )
D
Divano 已提交
36 37
    parser.add_argument("-e", "--epoch", default=5, type=int, help="set epoch")
    parser.add_argument("--ce", action="store_true", help="run ce")
38 39 40 41 42 43
    parser.add_argument(
        '--use_gpu',
        type=ast.literal_eval,
        default=True,
        help='default use gpu.')

44 45 46 47
    args = parser.parse_args()
    return args


M
minqiyang 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
class SimpleImgConvPool(fluid.dygraph.Layer):
    def __init__(self,
                 num_channels,
                 num_filters,
                 filter_size,
                 pool_size,
                 pool_stride,
                 pool_padding=0,
                 pool_type='max',
                 global_pooling=False,
                 conv_stride=1,
                 conv_padding=0,
                 conv_dilation=1,
                 conv_groups=1,
                 act=None,
                 use_cudnn=False,
                 param_attr=None,
                 bias_attr=None):
S
songyouwei 已提交
66
        super(SimpleImgConvPool, self).__init__()
M
minqiyang 已提交
67 68

        self._conv2d = Conv2D(
S
songyouwei 已提交
69
            num_channels=num_channels,
M
minqiyang 已提交
70 71 72 73 74 75 76 77
            num_filters=num_filters,
            filter_size=filter_size,
            stride=conv_stride,
            padding=conv_padding,
            dilation=conv_dilation,
            groups=conv_groups,
            param_attr=None,
            bias_attr=None,
D
Divano 已提交
78
            act=act,
M
minqiyang 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
            use_cudnn=use_cudnn)

        self._pool2d = Pool2D(
            pool_size=pool_size,
            pool_type=pool_type,
            pool_stride=pool_stride,
            pool_padding=pool_padding,
            global_pooling=global_pooling,
            use_cudnn=use_cudnn)

    def forward(self, inputs):
        x = self._conv2d(inputs)
        x = self._pool2d(x)
        return x


class MNIST(fluid.dygraph.Layer):
S
songyouwei 已提交
96 97
    def __init__(self):
        super(MNIST, self).__init__()
M
minqiyang 已提交
98 99

        self._simple_img_conv_pool_1 = SimpleImgConvPool(
S
songyouwei 已提交
100
            1, 20, 5, 2, 2, act="relu")
M
minqiyang 已提交
101 102

        self._simple_img_conv_pool_2 = SimpleImgConvPool(
S
songyouwei 已提交
103
            20, 50, 5, 2, 2, act="relu")
M
minqiyang 已提交
104

S
songyouwei 已提交
105
        self.pool_2_shape = 50 * 4 * 4
M
minqiyang 已提交
106
        SIZE = 10
S
songyouwei 已提交
107
        scale = (2.0 / (self.pool_2_shape**2 * SIZE))**0.5
108 109 110 111 112 113 114
        self._fc = Linear(
            self.pool_2_shape,
            10,
            param_attr=fluid.param_attr.ParamAttr(
                initializer=fluid.initializer.NormalInitializer(
                    loc=0.0, scale=scale)),
            act="softmax")
M
minqiyang 已提交
115

116
    def forward(self, inputs, label=None):
M
minqiyang 已提交
117 118
        x = self._simple_img_conv_pool_1(inputs)
        x = self._simple_img_conv_pool_2(x)
S
songyouwei 已提交
119
        x = fluid.layers.reshape(x, shape=[-1, self.pool_2_shape])
M
minqiyang 已提交
120
        x = self._fc(x)
121 122 123 124 125 126 127
        if label is not None:
            acc = fluid.layers.accuracy(input=x, label=label)
            return x, acc
        else:
            return x


128 129 130 131 132 133 134 135 136 137
def reader_decorator(reader):
    def __reader__():
        for item in reader():
            img = np.array(item[0]).astype('float32').reshape(1, 28, 28)
            label = np.array(item[1]).astype('int64').reshape(1)
            yield img, label

    return __reader__


138
def test_mnist(reader, model, batch_size):
139 140 141
    acc_set = []
    avg_loss_set = []
    for batch_id, data in enumerate(reader()):
142
        img, label = data
143 144 145 146 147 148 149 150 151 152 153 154
        label.stop_gradient = True
        prediction, acc = model(img, label)
        loss = fluid.layers.cross_entropy(input=prediction, label=label)
        avg_loss = fluid.layers.mean(loss)
        acc_set.append(float(acc.numpy()))
        avg_loss_set.append(float(avg_loss.numpy()))

        # get test acc and loss
    acc_val_mean = np.array(acc_set).mean()
    avg_loss_val_mean = np.array(avg_loss_set).mean()

    return avg_loss_val_mean, acc_val_mean
M
minqiyang 已提交
155 156


157
def inference_mnist():
158 159 160 161 162 163 164
    if not args.use_gpu:
        place = fluid.CPUPlace()
    elif not args.use_data_parallel:
        place = fluid.CUDAPlace(0)
    else:
        place = fluid.CUDAPlace(fluid.dygraph.parallel.Env().dev_id)

C
chengduo 已提交
165
    with fluid.dygraph.guard(place):
S
songyouwei 已提交
166
        mnist_infer = MNIST()
167
        # load checkpoint
168 169
        model_dict, _ = fluid.load_dygraph("save_temp")
        mnist_infer.set_dict(model_dict)
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
        print("checkpoint loaded")

        # start evaluate mode
        mnist_infer.eval()

        def load_image(file):
            im = Image.open(file).convert('L')
            im = im.resize((28, 28), Image.ANTIALIAS)
            im = np.array(im).reshape(1, 1, 28, 28).astype(np.float32)
            im = im / 255.0 * 2.0 - 1.0
            return im

        cur_dir = os.path.dirname(os.path.realpath(__file__))
        tensor_img = load_image(cur_dir + '/image/infer_3.png')

        results = mnist_infer(to_variable(tensor_img))
        lab = np.argsort(results.numpy())
        print("Inference result of image/infer_3.png is: %d" % lab[0][-1])


def train_mnist(args):
D
Divano 已提交
191
    epoch_num = args.epoch
192
    BATCH_SIZE = 64
M
minqiyang 已提交
193

194 195 196 197 198 199 200
    if not args.use_gpu:
        place = fluid.CPUPlace()
    elif not args.use_data_parallel:
        place = fluid.CUDAPlace(0)
    else:
        place = fluid.CUDAPlace(fluid.dygraph.parallel.Env().dev_id)

201
    with fluid.dygraph.guard(place):
D
Divano 已提交
202 203 204 205 206 207 208
        if args.ce:
            print("ce mode")
            seed = 33
            np.random.seed(seed)
            fluid.default_startup_program().random_seed = seed
            fluid.default_main_program().random_seed = seed

209 210
        if args.use_data_parallel:
            strategy = fluid.dygraph.parallel.prepare_context()
S
songyouwei 已提交
211
        mnist = MNIST()
212 213
        adam = AdamOptimizer(
            learning_rate=0.001, parameter_list=mnist.parameters())
214 215 216
        if args.use_data_parallel:
            mnist = fluid.dygraph.parallel.DataParallel(mnist, strategy)

217
        train_reader = paddle.batch(
218 219 220
            reader_decorator(paddle.dataset.mnist.train()),
            batch_size=BATCH_SIZE,
            drop_last=True)
221
        if args.use_data_parallel:
222 223
            train_reader = fluid.contrib.reader.distributed_batch_reader(
                train_reader)
224

225
        test_reader = paddle.batch(
226 227 228 229 230 231 232 233 234
            reader_decorator(paddle.dataset.mnist.test()),
            batch_size=BATCH_SIZE,
            drop_last=True)

        train_loader = fluid.io.DataLoader.from_generator(capacity=10)
        train_loader.set_sample_list_generator(train_reader, places=place)

        test_loader = fluid.io.DataLoader.from_generator(capacity=10)
        test_loader.set_sample_list_generator(test_reader, places=place)
235

M
minqiyang 已提交
236
        for epoch in range(epoch_num):
237 238
            for batch_id, data in enumerate(train_loader()):
                img, label = data
M
minqiyang 已提交
239 240
                label.stop_gradient = True

241 242
                cost, acc = mnist(img, label)

M
minqiyang 已提交
243 244
                loss = fluid.layers.cross_entropy(cost, label)
                avg_loss = fluid.layers.mean(loss)
245 246 247 248 249 250 251 252

                if args.use_data_parallel:
                    avg_loss = mnist.scale_loss(avg_loss)
                    avg_loss.backward()
                    mnist.apply_collective_grads()
                else:
                    avg_loss.backward()

253 254
                adam.minimize(avg_loss)
                # save checkpoint
M
minqiyang 已提交
255
                mnist.clear_gradients()
256
                if batch_id % 100 == 0:
257 258
                    print("Loss at epoch {} step {}: {:}".format(
                        epoch, batch_id, avg_loss.numpy()))
259 260

            mnist.eval()
261
            test_cost, test_acc = test_mnist(test_loader, mnist, BATCH_SIZE)
262
            mnist.train()
D
Divano 已提交
263 264 265
            if args.ce:
                print("kpis\ttest_acc\t%s" % test_acc)
                print("kpis\ttest_cost\t%s" % test_cost)
266 267
            print("Loss at epoch {} , Test avg_loss is: {}, acc is: {}".format(
                epoch, test_cost, test_acc))
M
minqiyang 已提交
268

C
chengduo 已提交
269 270 271 272
        save_parameters = (not args.use_data_parallel) or (
            args.use_data_parallel and
            fluid.dygraph.parallel.Env().local_rank == 0)
        if save_parameters:
273
            fluid.save_dygraph(mnist.state_dict(), "save_temp")
274

C
chengduo 已提交
275
            print("checkpoint saved")
276

H
hong 已提交
277
            inference_mnist()
M
minqiyang 已提交
278 279 280


if __name__ == '__main__':
281 282
    args = parse_args()
    train_mnist(args)