Learning TensorFlow Note-101

Intro

Introducing the what is the TensorFlow and some related conceptions of TensorFlow.node

What is the TensorFlow

TensorFlow™ is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) communicated between them. The flexible architecture allows you to deploy computation to one or more CPUs or GPUs in a desktop, server, or mobile device with a single API.TensorFlow was originally developed by researchers and engineers working on the Google Brain Team within Google's Machine Intelligence research organization for the purposes of conducting machine learning and deep neural networks research, but the system is general enough to be applicable in a wide variety of other domains as well.session

Quoted from tensorflow.orgapp

What is Tensor

340px-Components_stress_tensor.svg.png

In mathematics, tensors are geometric objects that describe linear relations between geometric vectors, scalars, and other tensors. Elementary examples of such relations include the dot product(數量積), the cross product(向量積), and linear maps(線性映射).dom

Quoted form en.wikipedia.orgide

How does it work

TensorFlow uses a dataflow graph to represent your computation in terms of the dependencies between individual operations. This leads to a low-level programming model in which you first define the dataflow graph, then create a TensorFlow session to run parts of the graph across a set of local and remote devices.svg

Quoted from tensorflow.orgflex

What is Dataflow Graph

Dataflow is a common programming model for parallel computing. In a dataflow graph, the nodes represent units of computation, and the edges represent the data consumed or produced by a computation.ui

Quoted from tensorflow.orgspa

相關文章
相關標籤/搜索