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
    12K+ Learners
    4.42  (676)
    What is IoT?
    1 hrs
    Beginner
    32.4K+ Learners
    4.46  (2506)
    Mongodb Tutorial
    2 hrs
    Beginner
    23.6K+ Learners
    4.55  (1608)
    Android App with Python
    2 hrs
    Beginner
    32.9K+ Learners
    4.42  (839)
    JavaScript Projects
    2 hrs
    Intermediate
    40.6K+ Learners
    4.51  (1579)
    HTML Attributes and Tags
    2 hrs
    Beginner
    51K+ Learners
    4.56  (2895)
    HTML Tutorial
    6 hrs
    Intermediate
    63.5K+ Learners
    4.54  (3370)
    CSS Properties
    2 hrs
    Beginner
    24.5K+ Learners
    4.47  (1149)
    CSS Tutorial
    2 hrs
    Intermediate
    42K+ Learners
    4.53  (2195)