提交 7bc5e3c1 编写于 作者: B baiyfbupt

typo fix

上级 0f9c3ceb
...@@ -78,7 +78,7 @@ print("="*50+"teacher_model_vars"+"="*50) ...@@ -78,7 +78,7 @@ print("="*50+"teacher_model_vars"+"="*50)
print(teacher_vars) print(teacher_vars)
``` ```
### 4. 合并特征图(merge) ### 4. 合并Program(merge)
PaddlePaddle使用Program来描述计算图,为了同时计算student和teacher两个Program,这里需要将其两者合并(merge)为一个Program。 PaddlePaddle使用Program来描述计算图,为了同时计算student和teacher两个Program,这里需要将其两者合并(merge)为一个Program。
...@@ -104,4 +104,4 @@ with fluid.program_guard(student_program, student_startup): ...@@ -104,4 +104,4 @@ with fluid.program_guard(student_program, student_startup):
exe.run(student_startup) exe.run(student_startup)
``` ```
至此,我们就得到了用于蒸馏训练的student_program,后面就可以使用一个普通program一样对其开始训练和评估 至此,我们就得到了用于蒸馏训练的student_program,后面就可以使用一个普通program一样对其开始训练和评估
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册