train.py 4.5 KB
Newer Older
L
liaogang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2016 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

W
Wang,Jeff 已提交
15
from __future__ import print_function
L
liaogang 已提交
16

W
Wang,Jeff 已提交
17 18 19 20
import paddle
import paddle.fluid as fluid
import numpy
import sys
L
liaogang 已提交
21

L
liaogang 已提交
22 23
from vgg import vgg_bn_drop
from resnet import resnet_cifar10
L
liaogang 已提交
24 25


W
Wang,Jeff 已提交
26
def inference_network():
W
Wang,Jeff 已提交
27
    # The image is 32 * 32 with RGB representation.
W
Wang,Jeff 已提交
28 29
    data_shape = [3, 32, 32]
    images = fluid.layers.data(name='pixel', shape=data_shape, dtype='float32')
W
Wang,Jeff 已提交
30

W
Wang,Jeff 已提交
31
    predict = resnet_cifar10(images, 32)
W
Wang,Jeff 已提交
32
    # predict = vgg_bn_drop(images) # un-comment to use vgg net
W
Wang,Jeff 已提交
33
    return predict
H
Helin Wang 已提交
34

L
liaogang 已提交
35

W
Wang,Jeff 已提交
36 37 38 39 40 41 42
def train_network():
    predict = inference_network()
    label = fluid.layers.data(name='label', shape=[1], dtype='int64')
    cost = fluid.layers.cross_entropy(input=predict, label=label)
    avg_cost = fluid.layers.mean(cost)
    accuracy = fluid.layers.accuracy(input=predict, label=label)
    return [avg_cost, accuracy]
L
liaogang 已提交
43 44


W
Wang,Jeff 已提交
45 46 47
def train(use_cuda, train_program, params_dirname):
    BATCH_SIZE = 128
    EPOCH_NUM = 2
L
liaogang 已提交
48

W
Wang,Jeff 已提交
49 50 51
    train_reader = paddle.batch(
        paddle.reader.shuffle(paddle.dataset.cifar.train10(), buf_size=50000),
        batch_size=BATCH_SIZE)
L
liaogang 已提交
52

W
Wang,Jeff 已提交
53 54
    test_reader = paddle.batch(
        paddle.dataset.cifar.test10(), batch_size=BATCH_SIZE)
L
liaogang 已提交
55 56

    def event_handler(event):
W
Wang,Jeff 已提交
57 58 59 60 61
        if isinstance(event, fluid.EndStepEvent):
            if event.step % 100 == 0:
                print("Pass %d, Batch %d, Cost %f, Acc %f" %
                      (event.step, event.epoch, event.metrics[0],
                       event.metrics[1]))
L
liaogang 已提交
62 63 64
            else:
                sys.stdout.write('.')
                sys.stdout.flush()
W
Wang,Jeff 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78

        if isinstance(event, fluid.EndEpochEvent):
            avg_cost, accuracy = trainer.test(
                reader=test_reader, feed_order=['pixel', 'label'])

            print('Loss {0:2.2}, Acc {1:2.2}'.format(avg_cost, accuracy))
            if params_dirname is not None:
                trainer.save_params(params_dirname)

    place = fluid.CUDAPlace(0) if use_cuda else fluid.CPUPlace()
    trainer = fluid.Trainer(
        train_func=train_program,
        optimizer=fluid.optimizer.Adam(learning_rate=0.001),
        place=place)
F
fengjiayi 已提交
79

L
liaogang 已提交
80
    trainer.train(
W
Wang,Jeff 已提交
81 82
        reader=train_reader,
        num_epochs=EPOCH_NUM,
L
liaogang 已提交
83
        event_handler=event_handler,
W
Wang,Jeff 已提交
84 85 86 87 88 89 90
        feed_order=['pixel', 'label'])


def infer(use_cuda, inference_program, params_dirname=None):
    place = fluid.CUDAPlace(0) if use_cuda else fluid.CPUPlace()
    inferencer = fluid.Inferencer(
        infer_func=inference_program, param_path=params_dirname, place=place)
L
liaogang 已提交
91

W
Wang,Jeff 已提交
92
    # Prepare testing data. 
93 94
    from PIL import Image
    import numpy as np
L
liaogang 已提交
95
    import os
96 97 98 99

    def load_image(file):
        im = Image.open(file)
        im = im.resize((32, 32), Image.ANTIALIAS)
W
Wang,Jeff 已提交
100

Q
qingqing01 已提交
101
        im = np.array(im).astype(np.float32)
Q
qingqing01 已提交
102 103 104
        # The storage order of the loaded image is W(widht),
        # H(height), C(channel). PaddlePaddle requires
        # the CHW order, so transpose them.
Q
qingqing01 已提交
105
        im = im.transpose((2, 0, 1))  # CHW
Q
qingqing01 已提交
106 107 108
        # In the training phase, the channel order of CIFAR
        # image is B(Blue), G(green), R(Red). But PIL open
        # image in RGB mode. It must swap the channel order.
Q
qingqing01 已提交
109
        im = im[(2, 1, 0), :, :]  # BGR
110
        im = im / 255.0
W
Wang,Jeff 已提交
111 112

        # Add one dimension to mimic the list format.
W
Wang,Jeff 已提交
113
        im = numpy.expand_dims(im, axis=0)
114 115
        return im

L
liaogang 已提交
116
    cur_dir = os.path.dirname(os.path.realpath(__file__))
W
Wang,Jeff 已提交
117
    img = load_image(cur_dir + '/image/dog.png')
W
Wang,Jeff 已提交
118 119

    # inference
W
Wang,Jeff 已提交
120 121 122 123 124 125 126 127 128
    results = inferencer.infer({'pixel': img})

    print("infer results: ", results)


def main(use_cuda):
    if use_cuda and not fluid.core.is_compiled_with_cuda():
        return
    save_path = "image_classification_resnet.inference.model"
129

W
Wang,Jeff 已提交
130 131 132 133
    train(
        use_cuda=use_cuda,
        train_program=train_network,
        params_dirname=save_path)
Q
qingqing01 已提交
134

W
Wang,Jeff 已提交
135 136 137 138
    infer(
        use_cuda=use_cuda,
        inference_program=inference_network,
        params_dirname=save_path)
139

L
liaogang 已提交
140 141

if __name__ == '__main__':
W
Wang,Jeff 已提交
142 143
    # For demo purpose, the training runs on CPU
    # Please change accordingly.
W
Wang,Jeff 已提交
144
    main(use_cuda=False)