Files
openmlsys-zh/chapter_computational_graph/index.md
Jiarong Han 0c0bff1b83 new computational graph chapter (#419)
* new computational graph chapter

* Update main.yml

* Update main.yml

---------

Co-authored-by: Luo Mai <luo.mai.cs@gmail.com>
2023-02-16 19:03:17 +08:00

18 lines
902 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 计算图
上一章节展示了如何高效编写机器学习程序那么下一个问题就是机器学习系统如何高效地在硬件上执行这些程序呢这一核心问题又能被进一步拆解为如何对机器学习程序描述的模型调度执行如何使得模型调度执行更加高效如何自动计算更新模型所需的梯度解决这些问题的关键是计算图Computational Graph技术。为了讲解这一技术本章将详细讨论计算图的基本组成、自动生成和高效执行中所涉及的方法。
本章的学习目标包括:
- 掌握计算图的基本构成。
- 掌握计算图静态生成和动态生成方法。
- 掌握计算图的常用执行方法。
```toc
:maxdepth: 2
background_and_functionality
components_of_computational_graph
generation_of_computational_graph
schedule_of_computational_graph
summary
```