📚TensorFlow is an end-to-end open-source platform for machine learning and deep learning, developed by Google. It is one of the most popular deep learning frameworks.
💻The first lesson of the course focuses on installing TensorFlow on your machine. The official TensorFlow website provides detailed installation instructions for different operating systems.
📝Tensors are the central objects in TensorFlow and can represent 1D, 2D, or even higher-dimensional arrays. They are similar to numpy ndarrays and can be used for various operations.
📊You can create tensors using the tf.constant() function and specify their shape and data type. Tensors are immutable, meaning their contents cannot be updated once created.
🔬TensorFlow allows you to build computational graphs and compute backpropagation. This graph structure enables efficient computation and gradient calculations for deep learning models.