Skip to content

Commit 703ed80

Browse files
refine notation
1 parent 9042351 commit 703ed80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dssm/network_conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ def create_conv(context_len, hidden_size, prefix):
146146
pool_bias_attr=ParamAttr(name=key + "_pool.b"))
147147
return conv
148148

149-
logger.info("create a sequence_conv_pool which context width is 3")
149+
logger.info("create a sequence_conv_pool whose context width is 3.")
150150
conv_3 = create_conv(3, self.dnn_dims[1], "cnn")
151-
logger.info("create a sequence_conv_pool which context width is 4")
151+
logger.info("create a sequence_conv_pool whose context width is 4.")
152152
conv_4 = create_conv(4, self.dnn_dims[1], "cnn")
153153

154154
return paddle.layer.concat(input=[conv_3, conv_4])

0 commit comments

Comments
 (0)