What is TensorFlow?
- TensorFlow is an open source library
- Used for numerical computation
- It was introduced by Google Brain Team
- Primarily used for machine learning and deep neural network research
- Nodes in TensorFlow represent operations, example addition, multiplication
- Tensors flow through nodes
- Leverages CPUs and/or GPUs
- Version 1.2 was recently released
- It is a data-flow-graph based system
- Scale-able across computer clusters
- Provides ecosystem for graph visualization, serving production models, etc.
What is a Tensor?
A tensor is an n-dimensional matrix.
Examples:
- Rank 0 Tensor: 1
- Rank 1 Tensor: [1,2]
- Rank 2 Tensor: [[1,2],[3,4]]
How to install TensorFlow?
- Got to https://www.tensorflow.org/install/ to install TensorFlow
Comments
Post a Comment