test_maxout.py 1.5 KB
Newer Older
D
dzhwinter 已提交
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.
D
dzhwinter 已提交
2
#
D
dzhwinter 已提交
3 4 5
# 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
D
dzhwinter 已提交
6
#
D
dzhwinter 已提交
7
#     http://www.apache.org/licenses/LICENSE-2.0
D
dzhwinter 已提交
8
#
D
dzhwinter 已提交
9 10 11 12 13 14
# 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.

15 16
from paddle.trainer_config_helpers import *

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

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

Q
qijun 已提交
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
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 已提交
38
    num_channels=8,
Q
qijun 已提交
39 40 41 42 43
    num_filters=128,
    padding=1,
    act=LinearActivation(),
    bias_attr=True)

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

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

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

outputs(fc)