Keras

Keras Backend Configuration

Keras Backend Configuration

This chapter will help you to configure the backend implementation of Keras. It includes the installation of TensorFlow and Theano. Let us install these two libraries and configure them for the backend implementation:

To install TensorFlow, you will be required to use the following command:

pip install TensorFlow

After the successful installation of TensorFlow, you are required to do the following configurations in the keras.json file:

{ 
   "image_data_format": "channels_last", 
   "epsilon": 1e-07, "floatx": "float32", "backend": "tensorflow" 
}

After that, you can install Theano with the below command:

pip install theano

Next, the keras.json file will have the following configurations:

{ 

 

{ 
   "image_data_format": "channels_last", 
   "epsilon": 1e-07, 
   "floatx": "float32", 
   "backend": "theano" 
}

Now, you’re all done with installation and configurations. And you can start Keras with the help of the command given below:

>>>import keras a krs

Top course recommendations for you

    JQuery Tutorial
    1 hrs
    Beginner
    12.5K+ Learners
    4.42  (777)
    What is IoT?
    1 hrs
    Beginner
    35.2K+ Learners
    4.47  (3522)
    Mongodb Tutorial
    2 hrs
    Beginner
    26.1K+ Learners
    4.53  (2530)
    Android App with Python
    2 hrs
    Beginner
    34.2K+ Learners
    4.41  (955)
    JavaScript Projects
    2 hrs
    Intermediate
    43.7K+ Learners
    4.48  (2113)
    HTML Attributes and Tags
    2 hrs
    Beginner
    53.3K+ Learners
    4.52  (3292)
    HTML Tutorial
    6 hrs
    Intermediate
    70.3K+ Learners
    4.55  (4329)
    CSS Properties
    2 hrs
    Beginner
    26K+ Learners
    4.46  (1398)
    CSS Tutorial
    2 hrs
    Intermediate
    44.9K+ Learners
    4.51  (2893)