diff --git a/python/paddle/v2/layer.py b/python/paddle/v2/layer.py index 0d8b59cfd29c9cf2f4a4cb44e122cb4d2cdc1578..2f55611aaa1d3ae22f5d7f184b38e622271881ea 100644 --- a/python/paddle/v2/layer.py +++ b/python/paddle/v2/layer.py @@ -225,7 +225,6 @@ class MemoryV2(WithExtraParent): real_size = size() else: real_size = size - print(real_size) args['size'] = real_size return conf_helps.memory(name=self.name, **args) @@ -471,7 +470,6 @@ def recurrent_group(step, input, name=None): static_inputs = filter(lambda x: isinstance(x, StaticInputV2), input) for static_input in static_inputs: mem_name = "__%s_memory__" % static_input.input.name - print memory mem = memory( name=mem_name, is_seq=static_input.is_seq,