Book Image

Deep Learning with Microsoft Cognitive Toolkit Quick Start Guide

By : Willem Meints
Book Image

Deep Learning with Microsoft Cognitive Toolkit Quick Start Guide

By: Willem Meints

Overview of this book

Cognitive Toolkit is a very popular and recently open sourced deep learning toolkit by Microsoft. Cognitive Toolkit is used to train fast and effective deep learning models. This book will be a quick introduction to using Cognitive Toolkit and will teach you how to train and validate different types of neural networks, such as convolutional and recurrent neural networks. This book will help you understand the basics of deep learning. You will learn how to use Microsoft Cognitive Toolkit to build deep learning models and discover what makes this framework unique so that you know when to use it. This book will be a quick, no-nonsense introduction to the library and will teach you how to train different types of neural networks, such as convolutional neural networks, recurrent neural networks, autoencoders, and more, using Cognitive Toolkit. Then we will look at two scenarios in which deep learning can be used to enhance human capabilities. The book will also demonstrate how to evaluate your models' performance to ensure it trains and runs smoothly and gives you the most accurate results. Finally, you will get a short overview of how Cognitive Toolkit fits in to a DevOps environment
Table of Contents (9 chapters)

Summary

In this chapter, we've looked at how to use recurrent neural networks to make predictions based on time series data. Recurrent neural networks are useful in scenarios where you have to deal with financial data, IoT data, or any other information that is collected over time.

One important building block for recurrent neural networks is the Fold and the Recurrence layer types, which you can combine with any of the recurrent layer types, such as RNNStep, GRU, or LSTM, to build a recurrent layer set. Depending on whether you want to predict a sequence or single value, you can use the Recurrence or Fold layer types to wrap the recurrent layers.

When you're training a recurrent neural network, you can make use of the sequence data stored in the CTF file format to make it easier to train the model. But, you can just as easily use sequences stored as numpy arrays,...