From 703ed8095e4b558a5fa6ba5b0ab8049d0638f0ab Mon Sep 17 00:00:00 2001 From: peterzhang2029 Date: Mon, 11 Dec 2017 20:59:19 +0800 Subject: [PATCH] refine notation --- dssm/network_conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dssm/network_conf.py b/dssm/network_conf.py index d16c87bc..8cd4b6f0 100644 --- a/dssm/network_conf.py +++ b/dssm/network_conf.py @@ -146,9 +146,9 @@ class DSSM(object): pool_bias_attr=ParamAttr(name=key + "_pool.b")) return conv - logger.info("create a sequence_conv_pool which context width is 3") + logger.info("create a sequence_conv_pool whose context width is 3.") conv_3 = create_conv(3, self.dnn_dims[1], "cnn") - logger.info("create a sequence_conv_pool which context width is 4") + logger.info("create a sequence_conv_pool whose context width is 4.") conv_4 = create_conv(4, self.dnn_dims[1], "cnn") return paddle.layer.concat(input=[conv_3, conv_4]) -- GitLab