OSDI论文:TensorFlow: A system for large-scale machine learning
=学习TensorFlow=
*Python学习
[[Python编程]]
[[Python_TensorFlow_Basics]]
* TensorFlow应用
[[TensorFlow-JavaScript]]
[[TensorFlow-Serving]]
=深入TensorFlow=
TensorFlow使用Eigen进行计算时,首先要将其Tensor类的对象转换成Eigen支持的Tensor对象.
像矩阵乘、二元操作、一元操作等都是通过调用Eigen实现的.
#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
tensorflow/core/framework/tensor.h
tensorflow/core/framework/tensor_types.h
https://github.com/PX4/eigen/blob/master/unsupported/Eigen/CXX11/src/Tensor/README.md
参见:
https://www.cnblogs.com/deepllz/p/9001054.html
https://blog.csdn.net/hjimce/article/details/71710893