Keras – Time Series Prediction using LSTM RNN
This chapter is about Keras - Time Series Prediction using LSTM RNN. In this chapter, let us write a simple Long Short Term Memory (LSTM) based RNN to do sequence…
This chapter is about Keras - Time Series Prediction using LSTM RNN. In this chapter, let us write a simple Long Short Term Memory (LSTM) based RNN to do sequence…
This topic is about ReactJS. React is a front-end library developed by Facebook. It is used for handling the view layer for web and mobile apps. ReactJS allows us to…
This topic is about Keras - Regression Prediction using MPL. let us write a simple MPL based ANN to do regression prediction. Till now, we have only done the classification…
This topic is about Keras - Convolution Neural Network. Let us modify the model from MPL to Convolution Neural Network (CNN) for our earlier digit identification problem. CNN can be represented as…
This chapter deals with the model evaluation and model prediction in Keras. Let us begin by understanding the model evaluation. Model Evaluation Evaluation is a process during development of the…
This chapter is about Keras Model Compilation. Previously, we studied the basics of how to create model using Sequential and Functional API. The compilation is the final step in creating…
This topic is about Keras Models.As learned earlier, Keras model represents the actual neural network model. Keras provides a two mode to create the model, simple and easy to use Sequential…
Keras allows to create our own customized layer. Once a new layer is created, it can be used in any model without any restriction. Let us learn how to create…
As we learned earlier, Keras modules contains pre-defined classes, functions and variables which are useful for deep learning algorithm. Let us learn the modules provided by Keras in this chapter.…
Keras provides a complete framework to create any type of neural networks. Keras is innovative as well as very easy to learn. It supports simple neural network to very large…