Book Image

Machine Learning Algorithms - Second Edition

Book Image

Machine Learning Algorithms - Second Edition

Overview of this book

Machine learning has gained tremendous popularity for its powerful and fast predictions with large datasets. However, the true forces behind its powerful output are the complex algorithms involving substantial statistical analysis that churn large datasets and generate substantial insight. This second edition of Machine Learning Algorithms walks you through prominent development outcomes that have taken place relating to machine learning algorithms, which constitute major contributions to the machine learning process and help you to strengthen and master statistical interpretation across the areas of supervised, semi-supervised, and reinforcement learning. Once the core concepts of an algorithm have been covered, you’ll explore real-world examples based on the most diffused libraries, such as scikit-learn, NLTK, TensorFlow, and Keras. You will discover new topics such as principal component analysis (PCA), independent component analysis (ICA), Bayesian regression, discriminant analysis, advanced clustering, and gaussian mixture. By the end of this book, you will have studied machine learning algorithms and be able to put them into production to make your machine learning applications more innovative.
Table of Contents (19 chapters)

Introducing Neural Networks

In this chapter, I'm going to briefly introduce deep learning with some examples based on Keras. This topic is quite complex and needs dedicated books; however, my goal is to allow the reader to understand some basic concepts that can be helpful before starting a complete course. In the first section, I'm presenting the structure of artificial neural networks and how they can be transformed in a complex computational graph with several different layers. In the second one, I'm going to introduce the basic concepts of Keras, and we'll see an example based on a very famous test dataset.

In particular, we are going to discuss the following:

  • Structure of an artificial neuron
  • Multi-layer Perceptrons (MLP)
  • The back propagation algorithm
  • How to build and train an MLP with Keras
  • How to interface Keras with scikit-learn
...