TensorFlow


TensorFlow is an open source Python artificial intelligence library that simplifies the process for machine learning model creation. It allows developers to create large-scale neural networks with many layers.

TensorFlow and Keras work hand-in-hand when implementing different kinds of models, such as the Sequential model, which has only one input tensor and one output tensor.

Install the TensorFlow library onto your version of Python from command line using the following command:

                
                    
                        
                        pip install tensorflow
                    
                
            

To import the TensorFlow library into your scripts, use the following code to have access to it as a reference:

                
                    
                
            

Source: TensorFlow Core - Quickstart for Beginners