test_maxout.py 1.5 KB
Newer Older
D
dzhwinter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#  Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.
#
#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.
14 15
from paddle.trainer_config_helpers import *

Q
qijun 已提交
16
settings(batch_size=1000, learning_rate=1e-5)
17

L
Luo Tao 已提交
18
data = data_layer(name='data', size=2304, height=48, width=48)
19

Q
qijun 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
conv = img_conv_layer(
    input=data,
    filter_size=3,
    num_channels=1,
    num_filters=16,
    padding=1,
    act=LinearActivation(),
    bias_attr=True)

maxout = maxout_layer(input=conv, num_channels=16, groups=2)

pool = img_pool_layer(
    input=maxout, num_channels=8, pool_size=2, stride=2, pool_type=MaxPooling())

conv2 = img_conv_layer(
    input=pool,
    filter_size=3,
L
Luo Tao 已提交
37
    num_channels=8,
Q
qijun 已提交
38 39 40 41 42
    num_filters=128,
    padding=1,
    act=LinearActivation(),
    bias_attr=True)

L
Luo Tao 已提交
43
maxout2 = maxout_layer(input=conv2, num_channels=128, groups=4)
Q
qijun 已提交
44 45

block = block_expand_layer(
L
Luo Tao 已提交
46 47 48 49 50 51
    input=maxout2,
    num_channels=32,
    stride_x=1,
    stride_y=1,
    block_x=1,
    block_y=6)
52 53

fc = fc_layer(input=block, size=384, bias_attr=False)
54 55

outputs(fc)