In this article, we’ll look at how we can save a model that we have trained in Keras. First, we’ll create a very simple CNN model using Keras and train that model on the Fashion MNIST […]
Continue readingMore TagCategory: keras
Custom Callbacks in Keras
Keras comes with a long list of predefined callbacks that are ready to use. Keras callbacks are functions that are executed during the training process. According to Keras Documentation, A callback is a set of functions […]
Continue readingMore Tag6 Regularization Techniques for Deep Learning
One of the most common problems of training a deep neural network is that it overfits. Overfitting occurs when the network learns specific patterns in the training data and is unable to generalize well over new […]
Continue readingMore TagSimple Linear Regression using Keras
Regression is a statistical approach used for predicting real values like age, weight, salary, for example. In regression, we have a dependent variable which we want to predict using some independent variables. The goal of regression […]
Continue readingMore TagKERAS Callbacks
Keras comes with a long list of predefined callbacks that are ready to use. Keras callbacks are functions that are executed during the training process. According to Keras Documentation, A callback is a set of functions to be […]
Continue readingMore Tag