-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor changes on deconv implementation and add protostr test for deco…
…nv layer
- Loading branch information
wangyang59
committed
Nov 9, 2016
1 parent
4491209
commit af7a50c
Showing
7 changed files
with
43 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
python/paddle/trainer_config_helpers/tests/configs/img_trans_layers.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from paddle.trainer_config_helpers import * | ||
|
||
settings( | ||
learning_rate=1e-3, | ||
batch_size=1000 | ||
) | ||
|
||
img = data_layer(name='image', size=227*227) | ||
|
||
# the parse_conv in config_parse.py is not strictly accurate when filter_size | ||
# is not square. So here set square filter_size. | ||
img_conv = img_conv_layer(input=img, num_channels=1, num_filters=64, | ||
filter_size=(32, 32), padding=(1, 1), stride=(1, 1), | ||
act=LinearActivation(), trans=True) | ||
img_bn = batch_norm_layer(input=img_conv, act=ReluActivation()) | ||
|
||
img_norm = img_cmrnorm_layer(input=img_bn, size=32) | ||
|
||
img_pool = img_pool_layer(input=img_conv, pool_size=32, pool_type=MaxPooling()) | ||
|
||
|
||
outputs(img_pool, img_norm) |