diff --git a/dssm/network_conf.py b/dssm/network_conf.py index d16c87bc936553156aa86a67f940e4afd50bad6e..8cd4b6f008dd97c8f95b91b4d45f33494d1fb158 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])