TensorFlow Core: Low-Level TF API
Know the main concepts behind TensorFlow Core: low-level TF API and its main operations.
We'll cover the following...
The TF framework comprises:
Low-level APIs
High-level APIs
TF Core is the primary low-level API in TF. Developers use TF Core with Python or some other language to create ML and DL applications.
Here we discuss the main concepts and the components of TF Core.
Tensor
This is a multidimensional data array that has four attributes:
Rank: Number of dimensions of a tensor.
Shape: The combined size of a tensor, over entire dimensions.
Type: The datatype of a tensor.
Label: The name of a tensor. ...