From 7bc5e3c1229517e60dbe490458d52300352c30a5 Mon Sep 17 00:00:00 2001 From: baiyfbupt Date: Mon, 30 Dec 2019 15:58:15 +0800 Subject: [PATCH] typo fix --- docs/docs/tutorials/distillation_demo.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/tutorials/distillation_demo.md b/docs/docs/tutorials/distillation_demo.md index 6fd93a10..617c588d 100644 --- a/docs/docs/tutorials/distillation_demo.md +++ b/docs/docs/tutorials/distillation_demo.md @@ -78,7 +78,7 @@ print("="*50+"teacher_model_vars"+"="*50) print(teacher_vars) ``` -### 4. 合并特征图(merge) +### 4. 合并Program(merge) PaddlePaddle使用Program来描述计算图,为了同时计算student和teacher两个Program,这里需要将其两者合并(merge)为一个Program。 @@ -104,4 +104,4 @@ with fluid.program_guard(student_program, student_startup): exe.run(student_startup) ``` -至此,我们就得到了用于蒸馏训练的student_program,后面就可以使用一个普通program一样对其开始训练和评估 \ No newline at end of file +至此,我们就得到了用于蒸馏训练的student_program,后面就可以使用一个普通program一样对其开始训练和评估 -- GitLab