Goto

Collaborating Authors

 keras tutorial


Keras Tutorial for Beginners

#artificialintelligence

In this tutorial, we will focus on Keras basics and learn neural network implementation using Keras. Keras is a widely used open-source deep-learning library for building neural network models. Keras offers a modular, easy-to-learn, easy-to-use, and faster prototype development framework. It is a higher-level wrapper of Tensorflow, CTNK, and Theano libraries. Keras is a high-level deep learning python library for developing neural network models.


Deep Learning with Python, TensorFlow, and Keras tutorial

#artificialintelligence

An updated deep learning introduction using Python, TensorFlow, and Keras. Everything you need to know about TensorFlow 2.0 https://morioh.com/p/2eb14ed72e5e/


Deep Q Learning is Simple with Keras Tutorial

#artificialintelligence

In this tutorial you'll code up a simple Deep Q Network in Keras to beat the Lunar Lander environment from the Open AI Gym. It's only 150 lines of code, and Keras makes it incredibly simple to do.


Keras Tutorial : Transfer Learning using pre-trained models

#artificialintelligence

In our previous tutorial, we learned how to use models which were trained for Image Classification on the ILSVRC data. In this tutorial, we will discuss how to use those models as a Feature Extractor and train a new model for a different classification task. Suppose you want to make a household robot which can cook food. The first step would be to identify different vegetables. We will try to build a model which identifies Tomato, Watermelon, and Pumpkin for this tutorial.


Keras Tutorial: The Ultimate Beginner's Guide to Deep Learning in Python

#artificialintelligence

In this step-by-step Keras tutorial, you'll learn how to build a convolutional neural network in Python! In fact, we'll be training a classifier for handwritten digits that boasts over 99% accuracy on the famous MNIST dataset. Before we begin, we should note that this guide is geared toward beginners who are interested in applied deep learning. Our goal is to introduce you to one of the most popular and powerful libraries for building neural networks in Python. That means we'll brush over much of the theory and math, but we'll also point you to great resources for learning those.


Code-free machine learning with Ludwig

#artificialintelligence

At the start of February 2019, Uber made their code-free machine learning toolbox, Ludwig, open-source. I know enough around TensorFlow to build the most basic of models using tutorials but really couldn't create anything from scratch. Let's dive in and run through a basic example. The dataset shows basic data to cars in the Auto MPG dataset. Our task is to predict the MPG from the features provided.


Keras tutorial - build a convolutional neural network in 11 lines - Adventures in Machine Learning

#artificialintelligence

In a previous tutorial, I demonstrated how to create a convolutional neural network (CNN) using TensorFlow to classify the MNIST handwritten digit dataset. TensorFlow is a brilliant tool, with lots of power and flexibility. However, for quick prototyping work it can be a bit verbose. Enter Keras and this Keras tutorial. Keras is a higher level library which operates over either TensorFlow or Theano, and is intended to stream-line the process of building deep learning networks.


Keras Tutorial : Using pre-trained ImageNet models

#artificialintelligence

Next, we will learn how to use pre-trained models trained on large datasets like ILSVRC, and also learn how to use them for a different task than it was trained on. ImageNet is a project which aims to provide a large image database for research purposes. It contains more than 14 million images which belong to more than 20,000 classes ( or synsets). They also provide bounding box annotations for around 1 million images, which can be used in Object Localization tasks. It should be noted that they only provide urls of images and you need to download those images.


Keras Tutorial: Deep Learning in Python

@machinelearnbot

Would you like to take a course on Keras and deep learning in Python? Consider taking DataCamp's Deep Learning in Python course! Also, don't miss our Keras cheat sheet, which shows you the six steps that you need to go through to build neural networks in Python with code examples! Before going deeper into Keras and how you can use it to get started with deep learning in Python, you should probably know a thing or two about neural networks. As you briefly read in the previous section, neural networks found their inspiration and biology, where the term "neural network" can also be used for neurons.


Keras Tutorial: The Ultimate Beginner's Guide to Deep Learning in Python

@machinelearnbot

In this step-by-step Keras tutorial, you'll learn how to build a convolutional neural network in Python! In fact, we'll be training a classifier for handwritten digits that boasts over 99% accuracy on the famous MNIST dataset. Before we begin, we should note that this guide is geared toward beginners who are interested in applied deep learning. Our goal is to introduce you to one of the most popular and powerful libraries for building neural networks in Python. That means we'll brush over much of the theory and math, but we'll also point you to great resources for learning those.