1 Dive into TensorFlow系列-静态图运行原理( 三 )


四、总结作为Dive into TensorFlow系列第一讲,本文由浅入深、系统讲解了静态图及其运行原理,以及支撑这些功能的架构设计与部分源码解析 。回到文章开头提到的用户读懂全文能有什么收益?(尝试提几点)
?明白默认session能运行默认静态图的原理,及常见的错误排查与调试方法 。能根据场景需要灵活选择动/静态图计算模式 。?如果一个静态图由几个独立子图构建,我们建议对每个子图分别构建tf.Graph对象 。?了解3.1小节对后续深入掌握op的placement、graph partition、基于gRPC的send/recv算子对做进程间通信有方向性指引作用 。作者:李杰参考资料1.Graphs and Sessions: https://github.com/tensorflow/docs/blob/master/site/en/r1/guide/graphs.md
2.《机器学习系统:设计与实现》: https://openmlsys.github.io/chapter_computational_graph/index.html
3.前后端连接的桥梁Session: https://www.likecs.com/show-306440850.html
4.TensorFlow v1.15.5源码: https://github.com/tensorflow/tensorflow/tree/v1.15.5/tensorflow/core/graph
5.TensorFlow Architecture: https://github.com/tensorflow/docs/blob/master/site/en/r1/guide/extend/architecture.md
6.TensorFlow分布式环境Session: https://www.cnblogs.com/rossiXYZ/p/16065124.html
【1 Dive into TensorFlow系列-静态图运行原理】

推荐阅读