tensorflow

python语言版本的TensorFlow模块:
1、client客户端模块,TensorFlow对外API的定义和实现
2、debug 调试模块
3、estimator 训练评测模块
4、framework 整体框架,tensor计算过程中的通用组件
5、kernel_tests 内核测试模块
6、layers 神经网络模型图层模块
7、lib 常用核心程序库,底层采用C语言编写
8、ops 常用操作运算函数库,对kernel下的op进行注册和对外声明
9、platform 平台管理模块,如设备内存分配
10、saved_model 模型保存模块
11、summary 摘要,日志log数据模块
12、tools 辅助工具函数库
13、training 模型训练函数库
14、user_ops 用户自定义运算操作模块,用户可编写自己的op并添加到该目录。
15、util 辅助工具程序,一些公用的调用方法。

你可能感兴趣的:(tensorflow)