light_mnist.py 2.2 KB
Newer Older
Z
zhuoyuan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
from paddle.trainer_config_helpers import *

is_predict = get_config_arg("is_predict", bool, False)

####################Data Configuration ##################

if not is_predict:
    data_dir = './data/'
    define_py_data_sources2(
        train_list=data_dir + 'train.list',
        test_list=data_dir + 'test.list',
        module='mnist_provider',
        obj='process')

######################Algorithm Configuration #############
# settings(
#    batch_size=128,
#    learning_rate=0.1 / 128.0,
#    learning_method=MomentumOptimizer(0.9),
#    regularization=L2Regularization(0.0005 * 128))
Z
zhuoyuan 已提交
21
settings(batch_size=50, learning_rate=0.001, learning_method=AdamOptimizer())
Z
zhuoyuan 已提交
22 23 24 25 26 27 28 29 30 31

#######################Network Configuration #############

data_size = 1 * 28 * 28
label_size = 10
img = data_layer(name='pixel', size=data_size)

# small_vgg is predined in trainer_config_helpers.network
# predict = small_vgg(input_image=img, num_channels=1, num_classes=label_size)

Z
zhuoyuan 已提交
32

Z
zhuoyuan 已提交
33 34
# light cnn
def light_cnn(input_image, num_channels, num_classes):
Z
zhuoyuan 已提交
35 36 37 38 39 40
    def __light__(ipt,
                  num_filter=128,
                  times=1,
                  conv_filter_size=3,
                  dropouts=0,
                  num_channels_=None):
Z
zhuoyuan 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
        return img_conv_group(
            input=ipt,
            num_channels=num_channels_,
            pool_size=2,
            pool_stride=2,
            conv_padding=0,
            conv_num_filter=[num_filter] * times,
            conv_filter_size=conv_filter_size,
            conv_act=ReluActivation(),
            conv_with_batchnorm=True,
            conv_batchnorm_drop_rate=dropouts,
            pool_type=MaxPooling())

    tmp = __light__(input_image, num_filter=128, num_channels_=num_channels)
    tmp = __light__(tmp, num_filter=128)
    tmp = __light__(tmp, num_filter=128)
    tmp = __light__(tmp, num_filter=128, conv_filter_size=1)

Z
zhuoyuan 已提交
59
    tmp = fc_layer(input=tmp, size=num_classes, act=SoftmaxActivation())
Z
zhuoyuan 已提交
60 61
    return tmp

Z
zhuoyuan 已提交
62

Z
zhuoyuan 已提交
63 64 65 66 67 68 69 70
predict = light_cnn(input_image=img, num_channels=1, num_classes=label_size)

if not is_predict:
    lbl = data_layer(name="label", size=label_size)
    inputs(img, lbl)
    outputs(classification_cost(input=predict, label=lbl))
else:
    outputs(predict)