Your First Deep Learning Project in Python with Keras Step-By-Step
Tweet Tweet Share Share Last Updated on June 20, 2022 Keras is a powerful and easy-to-use free open source Python library for developing and evaluating deep learning models. It is part of the...
View ArticleHow to Save and Load Your Keras Deep Learning Model
Tweet Tweet Share Share Last Updated on June 20, 2022 Keras is a simple and powerful Python library for deep learning. Given that deep learning models can take hours, days and even weeks to train, it...
View ArticleHow To Build Multi-Layer Perceptron Neural Network Models with Keras
Tweet Tweet Share Share Last Updated on June 23, 2022 The Keras Python library for deep learning focuses on the creation of models as a sequence of layers. In this post you will discover the simple...
View ArticleOverview of Some Deep Learning Libraries
Tweet Tweet Share Share Last Updated on June 26, 2022 Machine learning is a broad topic. Deep learning, in particular, is a way of using neural networks for machine learning. Neural network is...
View ArticleUsing autograd in TensorFlow to Solve a Regression Problem
Tweet Tweet Share Share We usually use TensorFlow to build a neural network. However, TensorFlow is not limited to this. Behind the scene, TensorFlow is a tensor library with automatic differentiation...
View ArticleEvaluate the Performance Of Deep Learning Models in Keras
Tweet Tweet Share Share Last Updated on June 29, 2022 Keras is an easy to use and powerful Python library for deep learning. There are a lot of decisions to make when designing and configuring your...
View ArticleThree Ways to Build Machine Learning Models in Keras
Tweet Tweet Share Share If you’ve looked at Keras models on Github, you’ve probably noticed that there are some different ways to create models in Keras. There’s the Sequential model which allows you...
View ArticleHow to Grid Search Hyperparameters for Deep Learning Models in Python With Keras
Tweet Tweet Share Share Last Updated on July 3, 2022 Hyperparameter optimization is a big part of deep learning. The reason is that neural networks are notoriously difficult to configure and there are...
View ArticleHow to Check-Point Deep Learning Models in Keras
Tweet Tweet Share Share Last Updated on July 3, 2022 Deep learning models can take hours, days or even weeks to train. If the run is stopped unexpectedly, you can lose a lot of work. In this post you...
View ArticleUsing Activation Functions in Neural Networks
Tweet Tweet Share Share Last Updated on July 6, 2022 Activation functions play an integral role in neural networks by introducing non-linearity. This nonlinearity allows neural networks to develop...
View ArticleDropout Regularization in Deep Learning Models With Keras
Tweet Tweet Share Share Last Updated on July 12, 2022 A simple and powerful regularization technique for neural networks and deep learning models is dropout. In this post you will discover the dropout...
View ArticleBinary Classification Tutorial with the Keras Deep Learning Library
Tweet Tweet Share Share Last Updated on July 7, 2022 Keras is a Python library for deep learning that wraps the efficient numerical libraries TensorFlow and Theano. Keras allows you to quickly and...
View ArticleUsing Learning Rate Schedules for Deep Learning Models in Python with Keras
Tweet Tweet Share Share Last Updated on July 12, 2022 Training a neural network or large deep learning model is a difficult optimization task. The classical algorithm to train neural networks is...
View ArticleA Gentle Introduction to tensorflow.data API
Tweet Tweet Share Share Last Updated on July 12, 2022 When we build and train a Keras deep learning model, the training data can be provided in several different ways. Presenting the data as a NumPy...
View ArticleUnderstanding the Design of a Convolutional Neural Network
Tweet Tweet Share Share Last Updated on July 13, 2022 Convolutional neural networks have been found successful in computer vision applications. Various network architectures are proposed and they are...
View ArticleHigh-Fidelity Synthetic Data for Data Engineers and Data Scientists Alike
Tweet Tweet Share Share Last Updated on July 15, 2022 Sponsored Post If you’re a data engineer or data scientist, you know how hard it is to generate and maintain realistic data at scale. And to...
View ArticleLoss Functions in TensorFlow
Tweet Tweet Share Share Last Updated on July 15, 2022 Loss metric is very important for neural networks. As all machine learning model is a optimization problem or another, the loss is the objective...
View ArticleImage Augmentation for Deep Learning with Keras
Tweet Tweet Share Share Last Updated on July 19, 2022 Data preparation is required when working with neural network and deep learning models. Increasingly data augmentation is also required on more...
View ArticleImage Augmentation with Keras Preprocessing Layers and tf.image
Tweet Tweet Share Share Last Updated on July 20, 2022 When we work on a machine learning problem related to images, not only we need to collect some images as training data, but also need to employ...
View ArticleTepper Wants to Nerd Out On Data With You
Tweet Tweet Share Share Last Updated on July 28, 2022 Sponsored Post There are many practical reasons why you should choose an online Masters in Business Analytics from the Tepper School of Business...
View Article