TensorFlow for Python
TensorFlow is one of the most important machine learning and open source libraries maintained by Google. The TensorFlow API is available in many languages, including Python, JavaScript, Java, and C. As TensorFlow supports supervised learning, we will use TensorFlow for building a graph model, and then use this model for prediction.
TensorFlow works with tensors. Some examples for tensors are:
- Scalar values such as a floating point number.
- A vector of arbitrary length.
- A regular matrix, containing p times q values, where p and q are finite integers.
- A p x q x r generalized matrix-like structure, where p, q, r are finite integers. Imagine this construct as a rectangular object in three dimensional space with sides p, q, and r. The numbers in this data structure can be visualized in three dimensions.
- Observing the above four data structures, more complex, n-dimensional data structures can also be valid examples for tensors.
We...