未验证 提交 64b599a4 编写于 作者: X Xiaoyao Xi 提交者: GitHub

Update customization_cn.md

上级 c76454e7
......@@ -124,9 +124,11 @@ class Head(object):
                print('WARNING: irregular output results. visualize failed.')
                self._results_buffer.append(rt_outputs)
        return None
    def reset(self):
        """清空该任务头的缓冲区(在训练或推理过程中积累的处理结果)"""
        self._results_buffer = []
    def get_results(self):
        """返回当前任务头积累的处理结果。"""
        return copy.deepcopy(self._results_buffer)
......@@ -272,6 +274,7 @@ reader的接口类(Interface)位于`paddlepalm/reader/base_reader.py`。
# limitations under the License.
from copy import copy
class Reader(object):
    """interface of data reader."""
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册