From de2d82d6a9838b4ef192aaa2b1d57115d9250fa0 Mon Sep 17 00:00:00 2001 From: JiayiFeng Date: Tue, 3 Apr 2018 07:28:23 +0000 Subject: [PATCH] fix a bug --- python/paddle/fluid/framework.py | 3 +-- python/paddle/fluid/layers/io.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/python/paddle/fluid/framework.py b/python/paddle/fluid/framework.py index 2f943457f5..772ee6dab6 100644 --- a/python/paddle/fluid/framework.py +++ b/python/paddle/fluid/framework.py @@ -640,8 +640,7 @@ class Operator(object): """ return self.desc.block_attr(name) - @property - def attrs(self): + def all_attrs(self): """ Get the attribute dict Returns(dict): The Operator's attribute dict diff --git a/python/paddle/fluid/layers/io.py b/python/paddle/fluid/layers/io.py index fb5bb6bcbc..969398bda4 100644 --- a/python/paddle/fluid/layers/io.py +++ b/python/paddle/fluid/layers/io.py @@ -279,7 +279,7 @@ def _copy_reader_create_op_(block, op): type=op.type, inputs=new_input_map, outputs=new_output_map, - attrs=op.attrs) + attrs=op.all_attrs()) return new_op -- GitLab